From 06d3311423744835b1ab6105001d48ee0cf5e093 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 24 May 2024 10:53:57 -0600 Subject: [PATCH 01/41] thermal_zone_get_occupancy_schedule moved from Standard class to OpenStudioStandards::ThermalZone module --- .../advanced_import_gbxml/resources/os_lib_adv_import.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb b/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb index 8d81b3d..c55aeef 100644 --- a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb +++ b/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb @@ -272,7 +272,7 @@ def self.make_thermal_zone_thermostats(model, setpoints_thermal_zones_hash) # thermostat thermal_zones_array.each do |thermal_zone| - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) make_thermostat(thermal_zone, htg_sch, setpoint: htg_setpoint_degC, subtype: 'Heating', people_schedule: people_schedule) end @@ -307,7 +307,7 @@ def self.make_thermal_zone_thermostats(model, setpoints_thermal_zones_hash) # thermostat thermal_zones_array.each do |thermal_zone| - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) make_thermostat(thermal_zone, clg_sch, setpoint: clg_setpoint_degC, subtype: 'Cooling', people_schedule: people_schedule) end @@ -396,7 +396,7 @@ def self.make_thermal_zone_humidistats(model, setpoints_thermal_zones_hash) # humidistat thermal_zones_array.each do |thermal_zone| - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) make_humidstat(thermal_zone, setpoint_schedule, setpoint: setpoint, subtype: 'Humidifying', people_schedule: people_schedule) end @@ -431,7 +431,7 @@ def self.make_thermal_zone_humidistats(model, setpoints_thermal_zones_hash) # humidistat thermal_zones_array.each do |thermal_zone| - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) make_humidstat(thermal_zone, setpoint_schedule, setpoint: setpoint, subtype: 'Humidifying', people_schedule: people_schedule) end From 50f9370be77b69b9b141cbe5c66ab4428bfa172d Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 24 May 2024 11:49:41 -0600 Subject: [PATCH 02/41] update openstudio_results to remove extension gem and use SDK method --- measures/openstudio_results/measure.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/measures/openstudio_results/measure.rb b/measures/openstudio_results/measure.rb index 0963f16..990283f 100644 --- a/measures/openstudio_results/measure.rb +++ b/measures/openstudio_results/measure.rb @@ -37,9 +37,9 @@ require 'json' # load OpenStudio measure libraries from openstudio-extension gem -require 'openstudio-extension' -require 'openstudio/extension/core/os_lib_schedules' -require 'openstudio/extension/core/os_lib_helper_methods' +# require 'openstudio-extension' +# require 'openstudio/extension/core/os_lib_schedules' +# require 'openstudio/extension/core/os_lib_helper_methods' # load local resources require "#{File.dirname(__FILE__)}/resources/os_lib_reporting" @@ -243,7 +243,7 @@ def run(runner, user_arguments) web_asset_path = setup[:web_asset_path] # assign the user inputs to variables - args = OsLib_HelperMethods.createRunVariables(runner, model, user_arguments, arguments) + args = runner.getArgumentValues(arguments(model), user_arguments) unless args return false end From 4d9fd7d5754e5ad245fb7a8e8c2431b2e0200521 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 24 May 2024 11:51:48 -0600 Subject: [PATCH 03/41] remove lines --- measures/openstudio_results/measure.rb | 5 ----- 1 file changed, 5 deletions(-) diff --git a/measures/openstudio_results/measure.rb b/measures/openstudio_results/measure.rb index 990283f..cb3e4a8 100644 --- a/measures/openstudio_results/measure.rb +++ b/measures/openstudio_results/measure.rb @@ -36,11 +36,6 @@ require 'erb' require 'json' -# load OpenStudio measure libraries from openstudio-extension gem -# require 'openstudio-extension' -# require 'openstudio/extension/core/os_lib_schedules' -# require 'openstudio/extension/core/os_lib_helper_methods' - # load local resources require "#{File.dirname(__FILE__)}/resources/os_lib_reporting" require_relative 'resources/Siz.Model' From fd0dacfd818a7136bf7abf4b51041ae9d861e30f Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Thu, 6 Jun 2024 13:00:03 -0600 Subject: [PATCH 04/41] Revert "Revert "add gbxml postprocess measure"" --- measures/gbxml_postprocess/README.md | 26 +++++++ measures/gbxml_postprocess/README.md.erb | 42 +++++++++++ measures/gbxml_postprocess/measure.rb | 64 +++++++++++++++++ measures/gbxml_postprocess/measure.xml | 72 +++++++++++++++++++ .../tests/gbxml_postprocess_test.rb | 49 +++++++++++++ 5 files changed, 253 insertions(+) create mode 100644 measures/gbxml_postprocess/README.md create mode 100644 measures/gbxml_postprocess/README.md.erb create mode 100644 measures/gbxml_postprocess/measure.rb create mode 100644 measures/gbxml_postprocess/measure.xml create mode 100644 measures/gbxml_postprocess/tests/gbxml_postprocess_test.rb diff --git a/measures/gbxml_postprocess/README.md b/measures/gbxml_postprocess/README.md new file mode 100644 index 0000000..eddef6f --- /dev/null +++ b/measures/gbxml_postprocess/README.md @@ -0,0 +1,26 @@ + + +###### (Automatically generated documentation) + +# gbXML Postprocess + +## Description + + +## Modeler Description + + +## Measure Type +ModelMeasure + +## Taxonomy + + +## Arguments + + + + +This measure does not have any user arguments + + diff --git a/measures/gbxml_postprocess/README.md.erb b/measures/gbxml_postprocess/README.md.erb new file mode 100644 index 0000000..4deb9ae --- /dev/null +++ b/measures/gbxml_postprocess/README.md.erb @@ -0,0 +1,42 @@ +<%#= README.md.erb is used to auto-generate README.md. %> +<%#= To manually maintain README.md throw away README.md.erb and manually edit README.md %> +###### (Automatically generated documentation) + +# <%= name %> + +## Description +<%= description %> + +## Modeler Description +<%= modelerDescription %> + +## Measure Type +<%= measureType %> + +## Taxonomy +<%= taxonomy %> + +## Arguments + +<% arguments.each do |argument| %> +### <%= argument[:display_name] %> +<%= argument[:description] %> +**Name:** <%= argument[:name] %>, +**Type:** <%= argument[:type] %>, +**Units:** <%= argument[:units] %>, +**Required:** <%= argument[:required] %>, +**Model Dependent:** <%= argument[:model_dependent] %> +<% end %> + +<% if arguments.size == 0 %> +<%= "This measure does not have any user arguments" %> +<% end %> + +<% if outputs.size > 0 %> +## Outputs +<% output_names = [] %> +<% outputs.each do |output| %> +<% output_names << output[:display_name] %> +<% end %> +<%= output_names.join(", ") %> +<% end %> \ No newline at end of file diff --git a/measures/gbxml_postprocess/measure.rb b/measures/gbxml_postprocess/measure.rb new file mode 100644 index 0000000..63695be --- /dev/null +++ b/measures/gbxml_postprocess/measure.rb @@ -0,0 +1,64 @@ +# insert your copyright here + +# see the URL below for information on how to write OpenStudio measures +# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ + +# start the measure +class GbxmlPostprocess < OpenStudio::Measure::ModelMeasure + # human readable name + def name + # Measure name should be the title case of the class name. + return 'gbXML Postprocess' + end + + # human readable description + def description + return '' + end + + # human readable description of modeling approach + def modeler_description + return '' + end + + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Measure::OSArgumentVector.new + + + + return args + end + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # use the built-in error checking + if !runner.validateUserArguments(arguments(model), user_arguments) + return false + end + + # Set airwall to single pane simple glazing + window_simple = OpenStudio::Model::SimpleGlazing.new(model, 3.7642, 0.78) + window_simple.setVisibleTransmittance(0.9) + window_construction = OpenStudio::Model::Construction.new(model) + window_construction.insertLayer(0, window_simple) + model.getSubSurfaces.each do |sub_surface| + if sub_surface.isAirWall + sub_surface.setConstruction(window_construction) + end + end + + # set output objects + model.getOutputSQLite.setUnitConversionforTabularData('None') + model.getOutputTableSummaryReports.setString(1, 'AllSummaryAndSizingPeriod') + model.getOutputControlTableStyle.setColumnSeparator('XMLandHTML') + model.getOutputControlTableStyle.setUnitConversion('InchPound') if runner.unitsPreference == 'IP' + + return true + end +end + +# register the measure to be used by the application +GbxmlPostprocess.new.registerWithApplication diff --git a/measures/gbxml_postprocess/measure.xml b/measures/gbxml_postprocess/measure.xml new file mode 100644 index 0000000..bcb0168 --- /dev/null +++ b/measures/gbxml_postprocess/measure.xml @@ -0,0 +1,72 @@ + + + 3.0 + gbxml_postprocess + 305ff045-bf96-46b7-afdc-586779961252 + 7d855e06-0c14-4a5c-aec6-c6f1be9dc75d + 20230818T193253Z + FC9586A7 + GbxmlPostprocess + gbXML Postprocess + + + + + + + Whole Building.Whole Building Schedules + + + + Measure Type + ModelMeasure + string + + + Intended Software Tool + Apply Measure Now + string + + + Intended Software Tool + OpenStudio Application + string + + + Intended Software Tool + Parametric Analysis Tool + string + + + + + README.md + md + readme + 433D5B02 + + + README.md.erb + erb + readmeerb + 703C9964 + + + + OpenStudio + 3.5.0 + 3.5.0 + + measure.rb + rb + script + 9969B6E4 + + + gbxml_postprocess_test.rb + rb + test + 7411FD25 + + + diff --git a/measures/gbxml_postprocess/tests/gbxml_postprocess_test.rb b/measures/gbxml_postprocess/tests/gbxml_postprocess_test.rb new file mode 100644 index 0000000..78fd69f --- /dev/null +++ b/measures/gbxml_postprocess/tests/gbxml_postprocess_test.rb @@ -0,0 +1,49 @@ +# insert your copyright here + +require 'fileutils' +require 'minitest/autorun' +require 'openstudio' +require 'openstudio/measure/ShowRunnerOutput' +require_relative '../measure.rb' + +class GbxmlPostprocessTest < Minitest::Test + + def setup + + # make new model + @model = OpenStudio::Model::Model.new + + # add objects + @model.getOutputSQLite + @model.getOutputTableSummaryReports + @model.getOutputControlTableStyle + + # create an instance of the measure + @measure = GbxmlPostprocess.new + + # create runner with empty OSW + @runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + + return @model, @measure, @runner + + end + + # def teardown + # end + + def test_run + + # run measure + arguments_map = OpenStudio::Measure.convertOSArgumentVectorToMap(@measure.arguments(@model)) + @measure.run(@model, @runner, arguments_map) + + # tests + # TODO test subsurface airwall construction + assert_equal(@model.getOutputSQLite.unitConversionforTabularData, 'None') + assert_equal(@model.getOutputTableSummaryReports.getString(1).to_s, 'AllSummaryAndSizingPeriod') + assert_equal(@model.getOutputControlTableStyle.columnSeparator, 'XMLandHTML') + assert_equal(@model.getOutputControlTableStyle.unitConversion, 'InchPound') + + end + +end From 7f3dbd0a5a6a834edf7c71a7947dc8c36c47462d Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Thu, 6 Jun 2024 13:02:06 -0600 Subject: [PATCH 05/41] Revert "Revert "remove add_xml_output_control_style and gbxml_to_openstudio_cleanup" --- .../add_xml_output_control_style/LICENSE.md | 1 - .../add_xml_output_control_style/README.md | 26 - .../README.md.erb | 42 - .../add_xml_output_control_style/measure.rb | 51 - .../add_xml_output_control_style/measure.xml | 73 - .../add_xml_output_control_style_test.rb | 100 - .../gbxml_to_openstudio_cleanup/LICENSE.md | 1 - .../gbxml_to_openstudio_cleanup/README.md | 26 - .../gbxml_to_openstudio_cleanup/README.md.erb | 42 - .../gbxml_to_openstudio_cleanup/docs/.gitkeep | 0 .../gbxml_to_openstudio_cleanup/measure.rb | 52 - .../gbxml_to_openstudio_cleanup/measure.xml | 90 - .../tests/example_model.osm | 8077 ----------------- .../tests/gbxml_to_openstudio_cleanup_test.rb | 124 - .../Annual Building Energy Simulation.osw | 8 +- workflows/HVAC Systems Loads and Sizing.osw | 8 +- workflows/RegressionTesting.osw | 11 +- 17 files changed, 6 insertions(+), 8726 deletions(-) delete mode 100644 measures/add_xml_output_control_style/LICENSE.md delete mode 100644 measures/add_xml_output_control_style/README.md delete mode 100644 measures/add_xml_output_control_style/README.md.erb delete mode 100644 measures/add_xml_output_control_style/measure.rb delete mode 100644 measures/add_xml_output_control_style/measure.xml delete mode 100644 measures/add_xml_output_control_style/tests/add_xml_output_control_style_test.rb delete mode 100644 measures/gbxml_to_openstudio_cleanup/LICENSE.md delete mode 100644 measures/gbxml_to_openstudio_cleanup/README.md delete mode 100644 measures/gbxml_to_openstudio_cleanup/README.md.erb delete mode 100644 measures/gbxml_to_openstudio_cleanup/docs/.gitkeep delete mode 100644 measures/gbxml_to_openstudio_cleanup/measure.rb delete mode 100644 measures/gbxml_to_openstudio_cleanup/measure.xml delete mode 100644 measures/gbxml_to_openstudio_cleanup/tests/example_model.osm delete mode 100644 measures/gbxml_to_openstudio_cleanup/tests/gbxml_to_openstudio_cleanup_test.rb diff --git a/measures/add_xml_output_control_style/LICENSE.md b/measures/add_xml_output_control_style/LICENSE.md deleted file mode 100644 index d6a0c69..0000000 --- a/measures/add_xml_output_control_style/LICENSE.md +++ /dev/null @@ -1 +0,0 @@ -Insert your license here \ No newline at end of file diff --git a/measures/add_xml_output_control_style/README.md b/measures/add_xml_output_control_style/README.md deleted file mode 100644 index 027b48d..0000000 --- a/measures/add_xml_output_control_style/README.md +++ /dev/null @@ -1,26 +0,0 @@ - - -###### (Automatically generated documentation) - -# Add XML Output Control Style - -## Description -Add OutputControl:Table:Style to output an XML output - -## Modeler Description - - -## Measure Type -EnergyPlusMeasure - -## Taxonomy - - -## Arguments - - - - -This measure does not have any user arguments - - diff --git a/measures/add_xml_output_control_style/README.md.erb b/measures/add_xml_output_control_style/README.md.erb deleted file mode 100644 index 4deb9ae..0000000 --- a/measures/add_xml_output_control_style/README.md.erb +++ /dev/null @@ -1,42 +0,0 @@ -<%#= README.md.erb is used to auto-generate README.md. %> -<%#= To manually maintain README.md throw away README.md.erb and manually edit README.md %> -###### (Automatically generated documentation) - -# <%= name %> - -## Description -<%= description %> - -## Modeler Description -<%= modelerDescription %> - -## Measure Type -<%= measureType %> - -## Taxonomy -<%= taxonomy %> - -## Arguments - -<% arguments.each do |argument| %> -### <%= argument[:display_name] %> -<%= argument[:description] %> -**Name:** <%= argument[:name] %>, -**Type:** <%= argument[:type] %>, -**Units:** <%= argument[:units] %>, -**Required:** <%= argument[:required] %>, -**Model Dependent:** <%= argument[:model_dependent] %> -<% end %> - -<% if arguments.size == 0 %> -<%= "This measure does not have any user arguments" %> -<% end %> - -<% if outputs.size > 0 %> -## Outputs -<% output_names = [] %> -<% outputs.each do |output| %> -<% output_names << output[:display_name] %> -<% end %> -<%= output_names.join(", ") %> -<% end %> \ No newline at end of file diff --git a/measures/add_xml_output_control_style/measure.rb b/measures/add_xml_output_control_style/measure.rb deleted file mode 100644 index aeb85d6..0000000 --- a/measures/add_xml_output_control_style/measure.rb +++ /dev/null @@ -1,51 +0,0 @@ -# insert your copyright here - -# see the URL below for information on how to write OpenStudio measures -# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ -require 'openstudio' -# start the measure -class AddXMLOutputControlStyle < OpenStudio::Measure::EnergyPlusMeasure - # human readable name - def name - # Measure name should be the title case of the class name. - return 'Add XML Output Control Style' - end - - # human readable description - def description - return 'Add OutputControl:Table:Style to output an XML output' - end - - # human readable description of modeling approach - def modeler_description - return '' - end - - # define the arguments that the user will input - def arguments(workspace) - args = OpenStudio::Measure::OSArgumentVector.new - - return args - end - - # define what happens when the measure is run - # # @type [OpenStudio::Workspace] workspace - def run(workspace, runner, user_arguments) - super(workspace, runner, user_arguments) - - # use the built-in error checking - if !runner.validateUserArguments(arguments(workspace), user_arguments) - return false - end - - workspace.getObjectsByType('Output:SQLite'.to_IddObjectType)[0].setString(1, 'None') # Unit Conversion for Tabular Data - workspace.getObjectsByType('Output:Table:SummaryReports'.to_IddObjectType)[0].setString(0, 'AllSummaryAndSizingPeriod') # Report 1 Name - workspace.getObjectsByType('OutputControl:Table:Style'.to_IddObjectType)[0].setString(0, 'XMLandHTML') # Column Separator - workspace.getObjectsByType('OutputControl:Table:Style'.to_IddObjectType)[0].setString(1, 'InchPound') if runner.unitsPreference == 'IP' # Unit Conversion - - return true - end -end - -# register the measure to be used by the application -AddXMLOutputControlStyle.new.registerWithApplication diff --git a/measures/add_xml_output_control_style/measure.xml b/measures/add_xml_output_control_style/measure.xml deleted file mode 100644 index 22344ea..0000000 --- a/measures/add_xml_output_control_style/measure.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - 3.0 - add_xml_output_control_style - 5669b7f3-8d3f-4298-9477-0db9e8d6ce92 - 7ffce04f-e24f-435c-9710-cb97785a4625 - 20220420T060332Z - 84EE5CB0 - AddXMLOutputControlStyle - Add XML Output Control Style - Add OutputControl:Table:Style to output an XML output - - - - - - Reporting.QAQC - - - - Measure Type - EnergyPlusMeasure - string - - - Intended Software Tool - OpenStudio Application - string - - - Intended Software Tool - Parametric Analysis Tool - string - - - - - LICENSE.md - md - license - CD7F5672 - - - README.md.erb - erb - readmeerb - 703C9964 - - - add_xml_output_control_style_test.rb - rb - test - 4A995305 - - - README.md - md - readme - A95364C2 - - - - OpenStudio - 2.6.0 - 2.6.0 - - measure.rb - rb - script - AF20D14C - - - diff --git a/measures/add_xml_output_control_style/tests/add_xml_output_control_style_test.rb b/measures/add_xml_output_control_style/tests/add_xml_output_control_style_test.rb deleted file mode 100644 index cf4f9e2..0000000 --- a/measures/add_xml_output_control_style/tests/add_xml_output_control_style_test.rb +++ /dev/null @@ -1,100 +0,0 @@ -# insert your copyright here - -require 'openstudio' -require 'openstudio/measure/ShowRunnerOutput' -require 'minitest/autorun' -require_relative '../measure.rb' -require 'fileutils' - -class AddXMLOutputControlStyleTest < Minitest::Test - # def setup - # end - - # def teardown - - def test_number_of_arguments_and_argument_names - # create an instance of the measure - measure = AddXMLOutputControlStyle.new - - # make an empty workspace - workspace = OpenStudio::Workspace.new('Draft'.to_StrictnessLevel, 'EnergyPlus'.to_IddFileType) - - # get arguments and test that they are what we are expecting - arguments = measure.arguments(workspace) - assert_equal(1, arguments.size) - assert_equal('zone_name', arguments[0].name) - end - - def test_bad_argument_values - # create an instance of the measure - measure = AddXMLOutputControlStyle.new - - # create runner with empty OSW - osw = OpenStudio::WorkflowJSON.new - runner = OpenStudio::Measure::OSRunner.new(osw) - - # make an empty workspace - workspace = OpenStudio::Workspace.new('Draft'.to_StrictnessLevel, 'EnergyPlus'.to_IddFileType) - - # check that there are no thermal zones - assert_equal(0, workspace.getObjectsByType('Zone'.to_IddObjectType).size) - - # get arguments - arguments = measure.arguments(workspace) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # set argument values to bad value - zone_name = arguments[0].clone - assert(zone_name.setValue('')) - argument_map['zone_name'] = zone_name - - # run the measure - measure.run(workspace, runner, argument_map) - result = runner.result - assert_equal('Fail', result.value.valueName) - - # check that there are still no thermal zones - assert_equal(0, workspace.getObjectsByType('Zone'.to_IddObjectType).size) - end - - def test_good_argument_values - # create an instance of the measure - measure = AddXMLOutputControlStyle.new - - # create runner with empty OSW - osw = OpenStudio::WorkflowJSON.new - runner = OpenStudio::Measure::OSRunner.new(osw) - - # make an empty workspace - workspace = OpenStudio::Workspace.new('Draft'.to_StrictnessLevel, 'EnergyPlus'.to_IddFileType) - - # check that there are no thermal zones - assert_equal(0, workspace.getObjectsByType('Zone'.to_IddObjectType).size) - - # get arguments - arguments = measure.arguments(workspace) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # set argument values to good values - zone_name = arguments[0].clone - assert(zone_name.setValue('New Zone')) - argument_map['zone_name'] = zone_name - - # run the measure - measure.run(workspace, runner, argument_map) - result = runner.result - assert_equal('Success', result.value.valueName) - - # check that there is now 1 thermal zones - assert_equal(1, workspace.getObjectsByType('Zone'.to_IddObjectType).size) - - # check that zone is properly named - zone = workspace.getObjectsByType('Zone'.to_IddObjectType)[0] - assert(!zone.getString(0).empty?) - assert_equal('New Zone', zone.getString(0).get) - - # save the workspace to output directory - output_file_path = OpenStudio::Path.new(File.dirname(__FILE__) + '/output/test_output.idf') - workspace.save(output_file_path, true) - end -end diff --git a/measures/gbxml_to_openstudio_cleanup/LICENSE.md b/measures/gbxml_to_openstudio_cleanup/LICENSE.md deleted file mode 100644 index d6a0c69..0000000 --- a/measures/gbxml_to_openstudio_cleanup/LICENSE.md +++ /dev/null @@ -1 +0,0 @@ -Insert your license here \ No newline at end of file diff --git a/measures/gbxml_to_openstudio_cleanup/README.md b/measures/gbxml_to_openstudio_cleanup/README.md deleted file mode 100644 index f7a30ee..0000000 --- a/measures/gbxml_to_openstudio_cleanup/README.md +++ /dev/null @@ -1,26 +0,0 @@ - - -###### (Automatically generated documentation) - -# gbxml_to_openstudio_cleanup - -## Description - - -## Modeler Description - - -## Measure Type -ModelMeasure - -## Taxonomy - - -## Arguments - - - - -This measure does not have any user arguments - - diff --git a/measures/gbxml_to_openstudio_cleanup/README.md.erb b/measures/gbxml_to_openstudio_cleanup/README.md.erb deleted file mode 100644 index 4deb9ae..0000000 --- a/measures/gbxml_to_openstudio_cleanup/README.md.erb +++ /dev/null @@ -1,42 +0,0 @@ -<%#= README.md.erb is used to auto-generate README.md. %> -<%#= To manually maintain README.md throw away README.md.erb and manually edit README.md %> -###### (Automatically generated documentation) - -# <%= name %> - -## Description -<%= description %> - -## Modeler Description -<%= modelerDescription %> - -## Measure Type -<%= measureType %> - -## Taxonomy -<%= taxonomy %> - -## Arguments - -<% arguments.each do |argument| %> -### <%= argument[:display_name] %> -<%= argument[:description] %> -**Name:** <%= argument[:name] %>, -**Type:** <%= argument[:type] %>, -**Units:** <%= argument[:units] %>, -**Required:** <%= argument[:required] %>, -**Model Dependent:** <%= argument[:model_dependent] %> -<% end %> - -<% if arguments.size == 0 %> -<%= "This measure does not have any user arguments" %> -<% end %> - -<% if outputs.size > 0 %> -## Outputs -<% output_names = [] %> -<% outputs.each do |output| %> -<% output_names << output[:display_name] %> -<% end %> -<%= output_names.join(", ") %> -<% end %> \ No newline at end of file diff --git a/measures/gbxml_to_openstudio_cleanup/docs/.gitkeep b/measures/gbxml_to_openstudio_cleanup/docs/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/measures/gbxml_to_openstudio_cleanup/measure.rb b/measures/gbxml_to_openstudio_cleanup/measure.rb deleted file mode 100644 index 9a8f04c..0000000 --- a/measures/gbxml_to_openstudio_cleanup/measure.rb +++ /dev/null @@ -1,52 +0,0 @@ -# insert your copyright here - -# see the URL below for information on how to write OpenStudio measures -# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ - -# start the measure -class GbxmlToOpenstudioCleanup < OpenStudio::Measure::ModelMeasure - # human readable name - def name - # Measure name should be the title case of the class name. - return 'gbxml_to_openstudio_cleanup' - end - - # human readable description - def description - return '' - end - - # human readable description of modeling approach - def modeler_description - return '' - end - - # define the arguments that the user will input - def arguments(model) - args = OpenStudio::Measure::OSArgumentVector.new - - return args - end - - # define what happens when the measure is run - def run(model, runner, user_arguments) - super(model, runner, user_arguments) - - # Set airwall to single pane simple glazing - window_simple = OpenStudio::Model::SimpleGlazing.new(model, 3.7642, 0.78) - window_simple.setVisibleTransmittance(0.9) - window_construction = OpenStudio::Model::Construction.new(model) - window_construction.insertLayer(0, window_simple) - - model.getSubSurfaces.each do |sub_surface| - if sub_surface.isAirWall - sub_surface.setConstruction(window_construction) - end - end - - return true - end -end - -# register the measure to be used by the application -GbxmlToOpenstudioCleanup.new.registerWithApplication diff --git a/measures/gbxml_to_openstudio_cleanup/measure.xml b/measures/gbxml_to_openstudio_cleanup/measure.xml deleted file mode 100644 index 7dd210d..0000000 --- a/measures/gbxml_to_openstudio_cleanup/measure.xml +++ /dev/null @@ -1,90 +0,0 @@ - - - 3.0 - gbxml_to_openstudio_cleanup - 260c9c42-c7cf-414c-8d61-60f464c15683 - edfd7e11-7f99-4f6a-8fa8-78fe70b4222f - 20220420T154900Z - D8922A73 - GbxmlToOpenstudioCleanup - gbxml_to_openstudio_cleanup - - - - - - - Whole Building.Space Types - - - - Measure Type - ModelMeasure - string - - - Intended Software Tool - Apply Measure Now - string - - - Intended Software Tool - OpenStudio Application - string - - - Intended Software Tool - Parametric Analysis Tool - string - - - - - LICENSE.md - md - license - CD7F5672 - - - README.md.erb - erb - readmeerb - 703C9964 - - - gbxml_to_openstudio_cleanup_test.rb - rb - test - 257643E3 - - - example_model.osm - osm - test - 53D14E69 - - - - OpenStudio - 2.6.0 - 2.6.0 - - measure.rb - rb - script - 281DB4A6 - - - .gitkeep - gitkeep - doc - 00000000 - - - README.md - md - readme - 73A3262D - - - diff --git a/measures/gbxml_to_openstudio_cleanup/tests/example_model.osm b/measures/gbxml_to_openstudio_cleanup/tests/example_model.osm deleted file mode 100644 index 0bd6b18..0000000 --- a/measures/gbxml_to_openstudio_cleanup/tests/example_model.osm +++ /dev/null @@ -1,8077 +0,0 @@ - -OS:Version, - {f19c731b-418b-4769-bbe8-2634b34ddb76}, !- Handle - 1.13.0; !- Version Identifier - -OS:SpaceType, - {d83c9d8c-b4ea-4352-92bc-43a5e8551039}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3, !- Name - , !- Default Construction Set Name - {3f64b7db-745b-40b0-bb02-6ec871a396ef}, !- Default Schedule Set Name - {d1e86687-6885-4070-81da-3a576f17ff5c}, !- Group Rendering Name - {67f2822d-9200-410d-bad4-ca1adb4cbb77}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - BreakRoom; !- Standards Space Type - -OS:Rendering:Color, - {d1e86687-6885-4070-81da-3a576f17ff5c}, !- Handle - Rendering Color 1, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {3f64b7db-745b-40b0-bb02-6ec871a396ef}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {2be0344f-10c3-4095-86fd-81db27963ad5}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 11.6250232500465, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {8d653251-85b6-4f77-81d6-0d1ce4ea7ee7}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Lights, !- Name - {2be0344f-10c3-4095-86fd-81db27963ad5}, !- Lights Definition Name - {d83c9d8c-b4ea-4352-92bc-43a5e8551039}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, ! Handle - Office Bldg Light, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {f4b4f1e1-6a43-44bd-a8f2-a74c513199be}, ! Default Day Schedule Name - {c390a85c-d5e7-4c2d-8853-58583d31d4e3}, ! Summer Design Day Schedule Name - {dd4723de-ece6-49f1-b48c-4ca52d8c8360}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Handle - Fraction, ! Name - 0, ! Lower Limit Value - 1, ! Upper Limit Value - CONTINUOUS; ! Numeric Type - -OS:Schedule:Day, - {f4b4f1e1-6a43-44bd-a8f2-a74c513199be}, ! Handle - Office Bldg Light Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 5, !- Hour 1 - 0, !- Minute 1 - 0.05, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.1, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.3, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.7, !- Value Until Time 5 - 20, !- Hour 6 - 0, !- Minute 6 - 0.5, !- Value Until Time 6 - 22, !- Hour 7 - 0, !- Minute 7 - 0.3, !- Value Until Time 7 - 23, !- Hour 8 - 0, !- Minute 8 - 0.1, !- Value Until Time 8 - 24, !- Hour 9 - 0, !- Minute 9 - 0.05; !- Value Until Time 9 - -OS:Schedule:Day, - {c390a85c-d5e7-4c2d-8853-58583d31d4e3}, ! Handle - Office Bldg Light Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Day, - {dd4723de-ece6-49f1-b48c-4ca52d8c8360}, ! Handle - Office Bldg Light Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {101bb6fc-d0fc-4dd5-b953-30be7362193e}, ! Handle - Office Bldg Light Rule 1, ! Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, ! Schedule Ruleset Name - 0, ! Rule Order - {cab9d70e-56fd-4a11-b93a-30526ba080c7}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {cab9d70e-56fd-4a11-b93a-30526ba080c7}, ! Handle - Office Bldg Light Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.050000000000000003; ! Value Until Time 1 - -OS:Schedule:Rule, - {e5799452-8d36-4739-a94b-184f22c15de0}, ! Handle - Office Bldg Light Rule 2, ! Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, ! Schedule Ruleset Name - 1, ! Rule Order - {fd34a36a-f6bf-4a3e-b174-248c7bf8388a}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {fd34a36a-f6bf-4a3e-b174-248c7bf8388a}, ! Handle - Office Bldg Light Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.050000000000000003, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.10000000000000001, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.14999999999999999, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.050000000000000003; ! Value Until Time 5 - -OS:DesignSpecification:OutdoorAir, - {67f2822d-9200-410d-bad4-ca1adb4cbb77}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {c42e1fab-f69a-49d5-a2c9-f14f1259af26}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {33239cd1-ad9a-4eea-84a8-7128e0617789}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 People, !- Name - {c42e1fab-f69a-49d5-a2c9-f14f1259af26}, !- People Definition Name - {d83c9d8c-b4ea-4352-92bc-43a5e8551039}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {be0538a4-3720-422e-85be-2e617795d558}, ! Handle - Office Misc Occ, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {a76a9245-12f3-412e-b0b5-34665289bf21}, ! Default Day Schedule Name - {a40809b5-8df2-4f21-a9ee-da939f1e5f66}, ! Summer Design Day Schedule Name - {3393a682-e262-4bec-b7cf-fd6eec115ebc}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {a76a9245-12f3-412e-b0b5-34665289bf21}, ! Handle - Office Bldg Occ Default Schedule 1, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.100000001490116, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.200000002980232, !- Value Until Time 3 - 20, !- Hour 4 - 0, !- Minute 4 - 0.400000005960464, !- Value Until Time 4 - 22, !- Hour 5 - 0, !- Minute 5 - 0.100000001490116, !- Value Until Time 5 - 24, !- Hour 6 - 0, !- Minute 6 - 0.0500000007450581; !- Value Until Time 6 - -OS:Schedule:Day, - {a40809b5-8df2-4f21-a9ee-da939f1e5f66}, ! Handle - Office Bldg Occ Summer Design Day 1, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 1, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 0.050000000000000003; ! Value Until Time 3 - -OS:Schedule:Day, - {3393a682-e262-4bec-b7cf-fd6eec115ebc}, ! Handle - Office Bldg Occ Winter Design Day 1, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {3ca2483c-714c-4d0d-8b7c-5f4a9c2b67c5}, ! Handle - Office Misc Occ Rule 1, ! Name - {be0538a4-3720-422e-85be-2e617795d558}, ! Schedule Ruleset Name - 0, ! Rule Order - {f56ad6ba-e3fe-4664-91d5-6e3a524b6815}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {f56ad6ba-e3fe-4664-91d5-6e3a524b6815}, ! Handle - Office Bldg Occ Rule 1 Day Schedule 1, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {05c99778-2bec-4bcf-b23a-afcb3628f061}, ! Handle - Office Misc Occ Rule 2, ! Name - {be0538a4-3720-422e-85be-2e617795d558}, ! Schedule Ruleset Name - 1, ! Rule Order - {50794c08-f7a3-4592-ab7e-021599b65e8f}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {50794c08-f7a3-4592-ab7e-021599b65e8f}, ! Handle - Office Bldg Occ Rule 2 Day Schedule 1, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 8, !- Hour 2 - 0, !- Minute 2 - 0.100000001490116, !- Value Until Time 2 - 14, !- Hour 3 - 0, !- Minute 3 - 0.25, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.100000001490116, !- Value Until Time 4 - 24, !- Hour 5 - 0, !- Minute 5 - 0; !- Value Until Time 5 - -OS:Schedule:Ruleset, - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, ! Handle - Office Activity, ! Name - {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name - {3327af75-d065-4569-8f41-90aaaadb46d9}, ! Default Day Schedule Name - {82481ab0-fa29-4f90-b6c0-269200534d1a}, ! Summer Design Day Schedule Name - {ce7a9c35-95ca-4940-ae5d-8bb25d884027}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {65bf6a03-1758-4903-8383-db583a09d8f8}, !- Handle - ActivityLevel, !- Name - 0, !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - ActivityLevel; !- Unit Type - -OS:Schedule:Day, - {3327af75-d065-4569-8f41-90aaaadb46d9}, ! Handle - Office Activity Default Schedule, ! Name - {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 132; !- Value Until Time 1 - -OS:Schedule:Day, - {82481ab0-fa29-4f90-b6c0-269200534d1a}, ! Handle - Office Activity Summer Design Day, ! Name - {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 132; !- Value Until Time 1 - -OS:Schedule:Day, - {ce7a9c35-95ca-4940-ae5d-8bb25d884027}, ! Handle - Office Activity Winter Design Day, ! Name - {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 132; !- Value Until Time 1 - -OS:SpaceInfiltration:DesignFlowRate, - {d11f3814-047f-4553-8741-be6dbd4a756d}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Infiltration, !- Name - {d83c9d8c-b4ea-4352-92bc-43a5e8551039}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:Schedule:Ruleset, - {5071fc8f-2a43-420e-b853-89de3fd548e0}, ! Handle - Office Infil Quarter On, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {2fb80237-329a-4845-a30d-3df8432f42db}, ! Default Day Schedule Name - {5d5af512-8749-48a6-8cab-1e94e2186c8a}, ! Summer Design Day Schedule Name - {2ad01453-6707-4358-a39d-e8f66d6a2d27}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {2fb80237-329a-4845-a30d-3df8432f42db}, ! Handle - Office Infil Quarter On Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 1, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 0.25, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 1; !- Value Until Time 3 - -OS:Schedule:Day, - {5d5af512-8749-48a6-8cab-1e94e2186c8a}, ! Handle - Office Infil Quarter On Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Day, - {2ad01453-6707-4358-a39d-e8f66d6a2d27}, ! Handle - Office Infil Quarter On Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Rule, - {4574f359-1b04-4a98-ab13-df5e80f66af0}, ! Handle - Office Infil Quarter On Rule 1, ! Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, ! Schedule Ruleset Name - 0, ! Rule Order - {3790040e-9ea2-4dc8-aa07-8c3be9362217}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {3790040e-9ea2-4dc8-aa07-8c3be9362217}, ! Handle - Office Infil Quarter On Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Rule, - {dffe30c1-3c56-49c5-a8f7-647f7d37a109}, ! Handle - Office Infil Quarter On Rule 2, ! Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, ! Schedule Ruleset Name - 1, ! Rule Order - {f8525cc5-5d39-46fb-83d8-d6d96f5d4e03}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {f8525cc5-5d39-46fb-83d8-d6d96f5d4e03}, ! Handle - Office Infil Quarter On Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:ElectricEquipment:Definition, - {67250caf-92b5-4b98-bf98-90620f2922e7}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 48.0070404585254, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {077ed202-9856-487a-81f9-2b33f6ef021d}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment, !- Name - {67250caf-92b5-4b98-bf98-90620f2922e7}, !- Electric Equipment Definition Name - {d83c9d8c-b4ea-4352-92bc-43a5e8551039}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {d4102340-9627-4371-b8f6-a3790caa5373}, ! Handle - Office Bldg Equip, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {977dd248-68d1-44ba-89cd-75118b7f5432}, ! Default Day Schedule Name - {c29d5462-6e30-488d-a879-41ed4219dda7}, ! Summer Design Day Schedule Name - {d3bffa7b-808a-4d48-99c4-616283b390aa}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {977dd248-68d1-44ba-89cd-75118b7f5432}, ! Handle - Office Bldg Equip Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0.4, !- Value Until Time 1 - 12, !- Hour 2 - 0, !- Minute 2 - 0.9, !- Value Until Time 2 - 13, !- Hour 3 - 0, !- Minute 3 - 0.8, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.8, !- Value Until Time 5 - 20, !- Hour 6 - 0, !- Minute 6 - 0.6, !- Value Until Time 6 - 22, !- Hour 7 - 0, !- Minute 7 - 0.5, !- Value Until Time 7 - 24, !- Hour 8 - 0, !- Minute 8 - 0.4; !- Value Until Time 8 - -OS:Schedule:Day, - {c29d5462-6e30-488d-a879-41ed4219dda7}, ! Handle - Office Bldg Equip Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Day, - {d3bffa7b-808a-4d48-99c4-616283b390aa}, ! Handle - Office Bldg Equip Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {bce5d209-6925-4d7c-8dc5-3f357b764d6c}, ! Handle - Office Bldg Equip Rule 1, ! Name - {d4102340-9627-4371-b8f6-a3790caa5373}, ! Schedule Ruleset Name - 0, ! Rule Order - {c875931d-86d6-4764-8e77-22d1cb7198ce}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {c875931d-86d6-4764-8e77-22d1cb7198ce}, ! Handle - Office Bldg Equip Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {1949d113-007e-43de-9be2-ba191485735a}, ! Handle - Office Bldg Equip Rule 2, ! Name - {d4102340-9627-4371-b8f6-a3790caa5373}, ! Schedule Ruleset Name - 1, ! Rule Order - {c7512454-4834-46fa-a2d6-7cc7e929e54c}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {c7512454-4834-46fa-a2d6-7cc7e929e54c}, ! Handle - Office Bldg Equip Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.40000000000000002, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.34999999999999998, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.29999999999999999; ! Value Until Time 5 - -OS:ThermostatSetpoint:DualSetpoint, - {57716514-0d5c-4f76-8108-73a8ef55c74a}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:Schedule:Ruleset, - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, ! Handle - Medium Office HtgSetp, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - {9b279567-fd7d-4e61-887c-70dc28a870a8}, ! Default Day Schedule Name - {12714e17-5b17-4314-81e6-d4b74d680da0}, ! Summer Design Day Schedule Name - {f9920323-552d-4d1f-bda1-6b0c461a87ca}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {12c61fd1-4fe2-4b95-9432-26b57b327856}, !- Handle - Temperature 36, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {9b279567-fd7d-4e61-887c-70dc28a870a8}, ! Handle - Medium Office HtgSetp Default Schedule, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 15.6, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 21, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 15.6; !- Value Until Time 3 - -OS:Schedule:Day, - {12714e17-5b17-4314-81e6-d4b74d680da0}, ! Handle - Medium Office HtgSetp Summer Design Day, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Day, - {f9920323-552d-4d1f-bda1-6b0c461a87ca}, ! Handle - Medium Office HtgSetp Winter Design Day, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 21; ! Value Until Time 1 - -OS:Schedule:Rule, - {868baa5f-da01-445a-994f-6c6787547ea5}, ! Handle - Medium Office HtgSetp Rule 1, ! Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, ! Schedule Ruleset Name - 0, ! Rule Order - {cac0b919-4885-4c58-9a65-b12cf242f6c9}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {cac0b919-4885-4c58-9a65-b12cf242f6c9}, ! Handle - Medium Office HtgSetp Rule 1 Day Schedule, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Rule, - {0641d0ff-4231-421a-9389-7b82524a19ba}, ! Handle - Medium Office HtgSetp Rule 2, ! Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, ! Schedule Ruleset Name - 1, ! Rule Order - {32df9b1b-e2bc-432f-a592-8f7e6e83b032}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {32df9b1b-e2bc-432f-a592-8f7e6e83b032}, ! Handle - Medium Office HtgSetp Rule 2 Day Schedule, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 15.6, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 21, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 15.6; ! Value Until Time 3 - -OS:Schedule:Ruleset, - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}, ! Handle - Medium Office ClgSetp, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - {5ab5938a-bfd8-4751-92be-cee36c4f1856}, ! Default Day Schedule Name - {240b0752-5119-4ee3-9c27-ad5cfe8f7244}, ! Summer Design Day Schedule Name - {7bbe1afc-37e4-452d-8136-77be3d751f5f}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, !- Handle - Temperature 37, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {5ab5938a-bfd8-4751-92be-cee36c4f1856}, ! Handle - Medium Office ClgSetp Default Schedule, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 26.7, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 24, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 26.7; !- Value Until Time 3 - -OS:Schedule:Day, - {240b0752-5119-4ee3-9c27-ad5cfe8f7244}, ! Handle - Medium Office ClgSetp Summer Design Day, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:Schedule:Day, - {7bbe1afc-37e4-452d-8136-77be3d751f5f}, ! Handle - Medium Office ClgSetp Winter Design Day, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {68812eb9-619d-47e2-bd4b-4e3b8987011c}, ! Handle - Medium Office ClgSetp Rule 1, ! Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}, ! Schedule Ruleset Name - 0, ! Rule Order - {78b34901-136a-4662-8a58-694b3d6974cc}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {78b34901-136a-4662-8a58-694b3d6974cc}, ! Handle - Medium Office ClgSetp Rule 1 Day Schedule, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {0b596ac5-df32-47fa-8cdd-b434dd223a94}, ! Handle - Medium Office ClgSetp Rule 2, ! Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}, ! Schedule Ruleset Name - 1, ! Rule Order - {be610421-800e-4a9c-9a30-e22099e6d5c7}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {be610421-800e-4a9c-9a30-e22099e6d5c7}, ! Handle - Medium Office ClgSetp Rule 2 Day Schedule, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:SpaceType, - {3c12e344-f3c2-46e8-94cc-aa11adda3228}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3, !- Name - , !- Default Construction Set Name - {9b9fb4b7-7437-423f-a42a-1e1800e6055c}, !- Default Schedule Set Name - {a57916a4-2d44-41b9-a1e1-917f01e6e980}, !- Group Rendering Name - {f46c6550-abd3-4dc9-b2fd-3521e6458afe}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - ClosedOffice; !- Standards Space Type - -OS:Rendering:Color, - {a57916a4-2d44-41b9-a1e1-917f01e6e980}, !- Handle - Rendering Color 2, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {9b9fb4b7-7437-423f-a42a-1e1800e6055c}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {06799bf2-e498-4941-a66b-f78cb208dc67}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {f1628569-1691-49f0-9348-f92fa25bb1b6}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Lights, !- Name - {06799bf2-e498-4941-a66b-f78cb208dc67}, !- Lights Definition Name - {3c12e344-f3c2-46e8-94cc-aa11adda3228}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {f46c6550-abd3-4dc9-b2fd-3521e6458afe}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {6e7c5923-7c0d-48b7-9a3f-216e3e766b71}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0511285744793712, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {5c410b4a-537a-47b7-b730-dc303931c19c}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 People, !- Name - {6e7c5923-7c0d-48b7-9a3f-216e3e766b71}, !- People Definition Name - {3c12e344-f3c2-46e8-94cc-aa11adda3228}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, ! Handle - Office Work Occ, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {8c6f6e65-d0d1-46da-8dc4-e578841c0855}, ! Default Day Schedule Name - {27e84094-894f-40a3-b576-abd36362f44e}, ! Summer Design Day Schedule Name - {a4028ad4-4ce3-47fe-bea5-e1572f850788}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {8c6f6e65-d0d1-46da-8dc4-e578841c0855}, ! Handle - Office Bldg Occ Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.100000001490116, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.200000002980232, !- Value Until Time 3 - 12, !- Hour 4 - 0, !- Minute 4 - 0.850000023841858, !- Value Until Time 4 - 13, !- Hour 5 - 0, !- Minute 5 - 0.5, !- Value Until Time 5 - 17, !- Hour 6 - 0, !- Minute 6 - 0.850000023841858, !- Value Until Time 6 - 18, !- Hour 7 - 0, !- Minute 7 - 0.699999988079071, !- Value Until Time 7 - 20, !- Hour 8 - 0, !- Minute 8 - 0.400000005960464, !- Value Until Time 8 - 22, !- Hour 9 - 0, !- Minute 9 - 0.100000001490116, !- Value Until Time 9 - 24, !- Hour 10 - 0, !- Minute 10 - 0.0500000007450581; !- Value Until Time 10 - -OS:Schedule:Day, - {27e84094-894f-40a3-b576-abd36362f44e}, ! Handle - Office Bldg Occ Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 1, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 0.050000000000000003; ! Value Until Time 3 - -OS:Schedule:Day, - {a4028ad4-4ce3-47fe-bea5-e1572f850788}, ! Handle - Office Bldg Occ Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {e25b5fd5-a9e4-4894-a08b-fc27dee95ca0}, ! Handle - Office Work Occ Rule 1, ! Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, ! Schedule Ruleset Name - 0, ! Rule Order - {e88a91fc-80e1-4d72-8871-1b61226fab13}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {e88a91fc-80e1-4d72-8871-1b61226fab13}, ! Handle - Office Bldg Occ Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {692294cd-2074-417d-bc31-c3d45f3473c8}, ! Handle - Office Work Occ Rule 2, ! Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, ! Schedule Ruleset Name - 1, ! Rule Order - {6b9e68ef-76e4-4389-ba51-34613aee0e9e}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {6b9e68ef-76e4-4389-ba51-34613aee0e9e}, ! Handle - Office Bldg Occ Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 8, !- Hour 2 - 0, !- Minute 2 - 0.100000001490116, !- Value Until Time 2 - 14, !- Hour 3 - 0, !- Minute 3 - 0.400000005960464, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.100000001490116, !- Value Until Time 4 - 24, !- Hour 5 - 0, !- Minute 5 - 0; !- Value Until Time 5 - -OS:SpaceInfiltration:DesignFlowRate, - {238b2c42-2ac7-458f-861b-9b2e338631c9}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Infiltration, !- Name - {3c12e344-f3c2-46e8-94cc-aa11adda3228}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {5e1004b6-95f1-43ca-b770-059ae9545327}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 6.88890266669422, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {bb93da29-6686-468f-b8e1-c0e981827eae}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Electric Equipment, !- Name - {5e1004b6-95f1-43ca-b770-059ae9545327}, !- Electric Equipment Definition Name - {3c12e344-f3c2-46e8-94cc-aa11adda3228}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {b27de14f-0cdf-4395-80f3-859d49e9b403}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {47604387-8748-48ff-835b-5f4e110a8059}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3, !- Name - , !- Default Construction Set Name - {e3b81960-34e9-43e9-802b-72dc932ec324}, !- Default Schedule Set Name - {ec05571d-f09e-46c5-830e-02e7c83716e2}, !- Group Rendering Name - {a1ac4f23-b7fd-439b-9144-9025bbf81b99}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Conference; !- Standards Space Type - -OS:Rendering:Color, - {ec05571d-f09e-46c5-830e-02e7c83716e2}, !- Handle - Rendering Color 3, !- Name - 230, !- Rendering Red Value - 196, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {e3b81960-34e9-43e9-802b-72dc932ec324}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {7c05f735-2072-4b8c-946d-b7cd8119ee11}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 12.5937751875504, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {277ed265-0401-47f6-8de3-56cb05b9fea5}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Lights, !- Name - {7c05f735-2072-4b8c-946d-b7cd8119ee11}, !- Lights Definition Name - {47604387-8748-48ff-835b-5f4e110a8059}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {a1ac4f23-b7fd-439b-9144-9025bbf81b99}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {1e057bcd-e909-4141-b7ac-844fc9c736b0}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {8e273f12-7404-4658-8039-d1b0d9e7d0e1}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 People, !- Name - {1e057bcd-e909-4141-b7ac-844fc9c736b0}, !- People Definition Name - {47604387-8748-48ff-835b-5f4e110a8059}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {de1ea70d-57dc-4928-a47f-57f514ec3603}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Infiltration, !- Name - {47604387-8748-48ff-835b-5f4e110a8059}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {24acb6cb-ad2a-44b2-b01a-335e7395daae}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 3.9826468541826, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {980641d4-cbda-4a28-868d-304978627e4f}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Electric Equipment, !- Name - {24acb6cb-ad2a-44b2-b01a-335e7395daae}, !- Electric Equipment Definition Name - {47604387-8748-48ff-835b-5f4e110a8059}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {9c5a236d-b8fa-4e61-a6d6-5ef82442b61b}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {911f473e-1c50-43ba-b507-1b4167677ea0}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3, !- Name - , !- Default Construction Set Name - {60152e25-975f-42e9-a93e-854a20be3577}, !- Default Schedule Set Name - {9637cafc-bc8f-40aa-8756-39cbbba37ac4}, !- Group Rendering Name - {43c2eb8f-ca41-472d-a661-37d29e1aa470}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Corridor; !- Standards Space Type - -OS:Rendering:Color, - {9637cafc-bc8f-40aa-8756-39cbbba37ac4}, !- Handle - Rendering Color 4, !- Name - 169, !- Rendering Red Value - 31, !- Rendering Green Value - 31; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {60152e25-975f-42e9-a93e-854a20be3577}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {61d53d0d-2d54-4a69-926d-aeb7fd47d282}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.84375968751938, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {97345961-c39c-4800-be47-fd365cf09579}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Lights, !- Name - {61d53d0d-2d54-4a69-926d-aeb7fd47d282}, !- Lights Definition Name - {911f473e-1c50-43ba-b507-1b4167677ea0}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {43c2eb8f-ca41-472d-a661-37d29e1aa470}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {15f0501f-443a-40f6-846f-5720de6f91e8}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {7f505a51-9e01-4f8c-ae6b-eb3a985187f9}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 People, !- Name - {15f0501f-443a-40f6-846f-5720de6f91e8}, !- People Definition Name - {911f473e-1c50-43ba-b507-1b4167677ea0}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {d288d3ec-bb21-459b-96e3-62f849faafec}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Infiltration, !- Name - {911f473e-1c50-43ba-b507-1b4167677ea0}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {3e9e4b9d-78ea-42f5-87ca-c1ec4f4990f2}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 1.72222566667356, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {f21b9dab-a69e-476b-96be-93f1f5fee1c6}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Electric Equipment, !- Name - {3e9e4b9d-78ea-42f5-87ca-c1ec4f4990f2}, !- Electric Equipment Definition Name - {911f473e-1c50-43ba-b507-1b4167677ea0}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {52549264-a360-4f7a-971d-ec4f2499546a}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {c35a045e-a8b7-4634-a314-0f2c9fd21361}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3, !- Name - , !- Default Construction Set Name - {7034f523-a923-4bff-bcec-e836877b0d3b}, !- Default Schedule Set Name - {8a8c0cb1-8336-469c-bca4-e17997f803bb}, !- Group Rendering Name - {69d02fbd-3b65-4514-8330-355612e92de3}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Elec/MechRoom; !- Standards Space Type - -OS:Rendering:Color, - {8a8c0cb1-8336-469c-bca4-e17997f803bb}, !- Handle - Rendering Color 5, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {7034f523-a923-4bff-bcec-e836877b0d3b}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {db4f58dd-4414-4c10-8481-b5fdd7610a22}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 14.5312790625581, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {8de70c6d-3c20-4a5a-95f3-70ab2a37759d}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Lights, !- Name - {db4f58dd-4414-4c10-8481-b5fdd7610a22}, !- Lights Definition Name - {c35a045e-a8b7-4634-a314-0f2c9fd21361}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {69d02fbd-3b65-4514-8330-355612e92de3}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:SpaceInfiltration:DesignFlowRate, - {6e96cbfa-7560-4e78-aa8c-239431fd271e}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Infiltration, !- Name - {c35a045e-a8b7-4634-a314-0f2c9fd21361}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {bfdd4c3c-95fa-4c2d-8597-8431da48afda}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 2.90625581251162, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {b17982ba-d5dd-42bf-8d61-12b8c10eee84}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Electric Equipment, !- Name - {bfdd4c3c-95fa-4c2d-8597-8431da48afda}, !- Electric Equipment Definition Name - {c35a045e-a8b7-4634-a314-0f2c9fd21361}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {f8635cc8-deee-4e85-815b-ff7f42668c83}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {b904fa71-fec8-4e29-89a1-d0386138c5a6}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3, !- Name - , !- Default Construction Set Name - {ba84ee14-7d89-4e59-8d59-625209be8ce9}, !- Default Schedule Set Name - {20b4e546-0bb5-45c4-b8f0-ba4246a49c01}, !- Group Rendering Name - {2f4b0680-26b1-4103-9f70-412db3ebdfbe}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - IT_Room; !- Standards Space Type - -OS:Rendering:Color, - {20b4e546-0bb5-45c4-b8f0-ba4246a49c01}, !- Handle - Rendering Color 6, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {ba84ee14-7d89-4e59-8d59-625209be8ce9}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {a6747de8-6448-4e86-abde-d12da5652867}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {1c9042b5-d85b-4aa1-b403-f1f57ffa5e80}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Lights, !- Name - {a6747de8-6448-4e86-abde-d12da5652867}, !- Lights Definition Name - {b904fa71-fec8-4e29-89a1-d0386138c5a6}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {2f4b0680-26b1-4103-9f70-412db3ebdfbe}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {ad090db3-4049-4090-9b2d-581dd03ae523}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {0e08e98a-89ff-440c-98ff-477b7c3fbca4}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 People, !- Name - {ad090db3-4049-4090-9b2d-581dd03ae523}, !- People Definition Name - {b904fa71-fec8-4e29-89a1-d0386138c5a6}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {f3738484-ddae-4171-9149-4056023e0061}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Infiltration, !- Name - {b904fa71-fec8-4e29-89a1-d0386138c5a6}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {2d5fe187-829f-4492-a2a6-f83bc2f40cec}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 16.7917002500672, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {d754310d-f9d1-4b56-8a61-4d2a167b0f57}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Electric Equipment, !- Name - {2d5fe187-829f-4492-a2a6-f83bc2f40cec}, !- Electric Equipment Definition Name - {b904fa71-fec8-4e29-89a1-d0386138c5a6}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {7669758f-56e6-4440-9266-ef142961841f}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {1afa8972-0451-45b3-8dda-3a3a776e008b}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3, !- Name - , !- Default Construction Set Name - {e0c21456-bd44-4237-8936-486557ac00f6}, !- Default Schedule Set Name - {0e5a132c-e7c3-4583-ad5a-cf0bf0fe2d03}, !- Group Rendering Name - {f648ca0a-523e-4cd1-9141-0b84b7a81954}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Lobby; !- Standards Space Type - -OS:Rendering:Color, - {0e5a132c-e7c3-4583-ad5a-cf0bf0fe2d03}, !- Handle - Rendering Color 7, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {e0c21456-bd44-4237-8936-486557ac00f6}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {aa532c04-012a-4860-ab4d-2c03c2c7fa04}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 12.5937751875504, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {28cb410d-135d-49f1-b23c-6218793a6744}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Lights, !- Name - {aa532c04-012a-4860-ab4d-2c03c2c7fa04}, !- Lights Definition Name - {1afa8972-0451-45b3-8dda-3a3a776e008b}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {f648ca0a-523e-4cd1-9141-0b84b7a81954}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {91f1c38f-68a1-4305-b70a-a3e1fbc3f83a}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {c9c2acc5-e4d4-49b4-9a7e-94cae06ac406}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 People, !- Name - {91f1c38f-68a1-4305-b70a-a3e1fbc3f83a}, !- People Definition Name - {1afa8972-0451-45b3-8dda-3a3a776e008b}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {61535505-edb5-4881-9380-6ceb9c94ccaa}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Infiltration, !- Name - {1afa8972-0451-45b3-8dda-3a3a776e008b}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {d64c15fd-a2f8-4262-81e5-ab028c6506a1}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 0.753473729169681, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {9bdcf653-9208-444f-abd4-40bc6d797f8a}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Electric Equipment, !- Name - {d64c15fd-a2f8-4262-81e5-ab028c6506a1}, !- Electric Equipment Definition Name - {1afa8972-0451-45b3-8dda-3a3a776e008b}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {f63de19d-9cf2-4162-bf2f-bdb7fddc1b7d}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {be8c0991-a26a-4dda-ae53-b3249804ebf9}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3, !- Name - , !- Default Construction Set Name - {036543da-4144-409d-981b-4ddf12ce677e}, !- Default Schedule Set Name - {e1b28003-ba15-4183-b5d9-585f72709eff}, !- Group Rendering Name - {f57d4115-03b8-4303-b205-42221bda4210}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - OpenOffice; !- Standards Space Type - -OS:Rendering:Color, - {e1b28003-ba15-4183-b5d9-585f72709eff}, !- Handle - Rendering Color 8, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {036543da-4144-409d-981b-4ddf12ce677e}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {6c9d9254-9bb8-426a-af9b-3677316cf238}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {1b233aa2-884a-4b12-bd88-76092f6d2267}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Lights, !- Name - {6c9d9254-9bb8-426a-af9b-3677316cf238}, !- Lights Definition Name - {be8c0991-a26a-4dda-ae53-b3249804ebf9}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {f57d4115-03b8-4303-b205-42221bda4210}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {0e75bef1-0c07-4d0b-822d-d2df7c6f1111}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.056510529687726, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {30d60591-72de-4494-afc4-000c9be76f8b}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 People, !- Name - {0e75bef1-0c07-4d0b-822d-d2df7c6f1111}, !- People Definition Name - {be8c0991-a26a-4dda-ae53-b3249804ebf9}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {ef0be415-7a7a-4be9-895a-fefe67ce5d3e}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Infiltration, !- Name - {be8c0991-a26a-4dda-ae53-b3249804ebf9}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {6b2d3c23-bd59-4857-b849-eaf6b4a64e2f}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.6423763958639, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {1e0e1e3c-6473-41c2-ace8-efda06663fe0}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Electric Equipment, !- Name - {6b2d3c23-bd59-4857-b849-eaf6b4a64e2f}, !- Electric Equipment Definition Name - {be8c0991-a26a-4dda-ae53-b3249804ebf9}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {b88ada7e-5b66-4c29-8b49-7f9040c59933}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:Building, - {f73b031c-bb31-4fa0-ad96-2e9846c4d752}, !- Handle - Building 1, !- Name - , !- Building Sector Type - , !- North Axis {deg} - , !- Nominal Floor to Floor Height {m} - {ad9972e4-489e-404e-841e-c9bbd72d0111}, !- Space Type Name - {58749418-1c83-496b-94e6-80aa0fd3ac39}, !- Default Construction Set Name - , !- Default Schedule Set Name - , !- Standards Number of Stories - , !- Standards Number of Above Ground Stories - , !- Standards Building Type - , !- Standards Number of Living Units - , !- Relocatable - ; !- Nominal Floor to Ceiling Height {m} - -OS:SpaceType, - {c0190c37-61e0-43b8-b980-313f616f75af}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3, !- Name - , !- Default Construction Set Name - {7b266719-acd7-491e-9cdb-d0f00a5dfec4}, !- Default Schedule Set Name - {061734ce-19f4-4c27-a203-4b67b00d47ac}, !- Group Rendering Name - {107e2dcf-081d-47d9-b8b0-921f5279392b}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - PrintRoom; !- Standards Space Type - -OS:Rendering:Color, - {061734ce-19f4-4c27-a203-4b67b00d47ac}, !- Handle - Rendering Color 9, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {7b266719-acd7-491e-9cdb-d0f00a5dfec4}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {7a23b936-59e3-4314-9b52-3944ebdea4dc}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {1979f9cd-f801-4f74-b848-c88f17dc5b44}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Lights, !- Name - {7a23b936-59e3-4314-9b52-3944ebdea4dc}, !- Lights Definition Name - {c0190c37-61e0-43b8-b980-313f616f75af}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {107e2dcf-081d-47d9-b8b0-921f5279392b}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {1e43b6dd-36da-4525-88ab-833e4310a5da}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {673d36c1-b361-47e7-9007-e4e91432cb81}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 People, !- Name - {1e43b6dd-36da-4525-88ab-833e4310a5da}, !- People Definition Name - {c0190c37-61e0-43b8-b980-313f616f75af}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {e520996e-cb4e-4946-ae4e-12637ab956f9}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Infiltration, !- Name - {c0190c37-61e0-43b8-b980-313f616f75af}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {174d96d7-8543-478a-a5f4-76314ad6b67f}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 30.0313100626201, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {13850150-ad18-438c-906d-18f8cabcbdf5}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Electric Equipment, !- Name - {174d96d7-8543-478a-a5f4-76314ad6b67f}, !- Electric Equipment Definition Name - {c0190c37-61e0-43b8-b980-313f616f75af}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {cb7fb571-b062-476f-8b81-9ee2aa7be729}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {a818abd3-e1c5-4d15-9f17-96bb76777e4b}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3, !- Name - , !- Default Construction Set Name - {2cb74439-6b94-4bdb-bc70-0ca10c0d3b2e}, !- Default Schedule Set Name - {e64f5cb7-2c3d-45a9-84a6-367125f15aff}, !- Group Rendering Name - {65cf1445-a2aa-42ad-9ff8-c4b30ec4e53d}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Restroom; !- Standards Space Type - -OS:Rendering:Color, - {e64f5cb7-2c3d-45a9-84a6-367125f15aff}, !- Handle - Rendering Color 10, !- Name - 169, !- Rendering Red Value - 169, !- Rendering Green Value - 31; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {2cb74439-6b94-4bdb-bc70-0ca10c0d3b2e}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {16c83f7f-a90c-43cd-99b3-fe5b6f146132}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 8.71876743753488, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {3120c45b-328a-43ca-b763-11e879fb3a84}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Lights, !- Name - {16c83f7f-a90c-43cd-99b3-fe5b6f146132}, !- Lights Definition Name - {a818abd3-e1c5-4d15-9f17-96bb76777e4b}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {65cf1445-a2aa-42ad-9ff8-c4b30ec4e53d}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.0048768, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {134d060a-3bfc-40bd-bda0-b77a4720c9c2}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {4bd834f4-5ae4-4146-8dbd-c600ee119692}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 People, !- Name - {134d060a-3bfc-40bd-bda0-b77a4720c9c2}, !- People Definition Name - {a818abd3-e1c5-4d15-9f17-96bb76777e4b}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {6d0ceae2-80c3-45c0-a634-2929c8a56678}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Infiltration, !- Name - {a818abd3-e1c5-4d15-9f17-96bb76777e4b}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {6330081f-04c2-429c-adff-1624fc497cd6}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 0.753473729169681, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {569209c0-ef8b-44f5-9f86-048af1de9fa7}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Electric Equipment, !- Name - {6330081f-04c2-429c-adff-1624fc497cd6}, !- Electric Equipment Definition Name - {a818abd3-e1c5-4d15-9f17-96bb76777e4b}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {36f7e68a-a20c-471b-b929-d4756cba022f}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {531dd228-de8a-4d34-9988-9ac8d77877a0}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3, !- Name - , !- Default Construction Set Name - {63837c20-3153-4ace-86c9-1d8bf8b43d7a}, !- Default Schedule Set Name - {d956b768-7de2-4589-97c3-e0178f40b773}, !- Group Rendering Name - {65e99483-2d7e-4ca8-9e0d-a7914f938f56}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Stair; !- Standards Space Type - -OS:Rendering:Color, - {d956b768-7de2-4589-97c3-e0178f40b773}, !- Handle - Rendering Color 11, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {63837c20-3153-4ace-86c9-1d8bf8b43d7a}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - , !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {b70563e1-7e2b-4c90-b280-61fcf401da4c}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {3637974c-a21a-4d9a-9a86-de0b34a41576}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Lights, !- Name - {b70563e1-7e2b-4c90-b280-61fcf401da4c}, !- Lights Definition Name - {531dd228-de8a-4d34-9988-9ac8d77877a0}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {65e99483-2d7e-4ca8-9e0d-a7914f938f56}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:SpaceInfiltration:DesignFlowRate, - {b55008d6-57ec-4a59-853d-dc295ea83be3}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Infiltration, !- Name - {531dd228-de8a-4d34-9988-9ac8d77877a0}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ThermostatSetpoint:DualSetpoint, - {8f2a6abe-ef82-4cf6-9a19-42526787c24e}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {355570b9-3696-4442-903b-449be8ccf16a}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3, !- Name - , !- Default Construction Set Name - {c81d9947-159d-4809-8a7f-ae3bb2fe95fa}, !- Default Schedule Set Name - {40564289-28c7-4fd8-b822-fe7139d1f5bf}, !- Group Rendering Name - {99330741-43bc-49e4-9991-d6cf4a0ba4aa}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Storage; !- Standards Space Type - -OS:Rendering:Color, - {40564289-28c7-4fd8-b822-fe7139d1f5bf}, !- Handle - Rendering Color 12, !- Name - 120, !- Rendering Red Value - 149, !- Rendering Green Value - 230; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {c81d9947-159d-4809-8a7f-ae3bb2fe95fa}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - , !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {373b8d0f-41c3-4c11-97ad-74ff4084e752}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 7.750015500031, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {99c236b6-e588-4c3f-ae8e-98f257807e7c}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Lights, !- Name - {373b8d0f-41c3-4c11-97ad-74ff4084e752}, !- Lights Definition Name - {355570b9-3696-4442-903b-449be8ccf16a}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {99330741-43bc-49e4-9991-d6cf4a0ba4aa}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:SpaceInfiltration:DesignFlowRate, - {76e2e858-0e95-49d7-a5bd-46ff2e7bf75b}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Infiltration, !- Name - {355570b9-3696-4442-903b-449be8ccf16a}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ThermostatSetpoint:DualSetpoint, - {f8e65471-7105-4908-ae0b-ec42ae5587b5}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {bcd867f1-c57c-4206-9b38-1c7e254a4143}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3, !- Name - , !- Default Construction Set Name - {c044c52f-9474-4ba2-9f45-7069de4c6b87}, !- Default Schedule Set Name - {cf88ad3d-58c9-452c-88c4-ac7ea371f930}, !- Group Rendering Name - {6dbe4189-6232-4d6e-9ac9-63d6e0ee9668}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Vending; !- Standards Space Type - -OS:Rendering:Color, - {cf88ad3d-58c9-452c-88c4-ac7ea371f930}, !- Handle - Rendering Color 13, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {c044c52f-9474-4ba2-9f45-7069de4c6b87}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {dba49d56-ae67-469f-bd99-1ea63a8e50b2}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.84375968751938, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {57f0532e-f17a-45d3-879e-193fae9dc176}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Lights, !- Name - {dba49d56-ae67-469f-bd99-1ea63a8e50b2}, !- Lights Definition Name - {bcd867f1-c57c-4206-9b38-1c7e254a4143}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {6dbe4189-6232-4d6e-9ac9-63d6e0ee9668}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {b2bafb87-d4df-471b-9770-b0d82b64b0df}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {d9509edb-bd80-4225-9ee6-523bf74d5bee}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 People, !- Name - {b2bafb87-d4df-471b-9770-b0d82b64b0df}, !- People Definition Name - {bcd867f1-c57c-4206-9b38-1c7e254a4143}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {426c18b5-7d3a-4579-b2a8-8e385458dd11}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Infiltration, !- Name - {bcd867f1-c57c-4206-9b38-1c7e254a4143}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {4c5550a6-4da3-4490-ac94-170d7b86c60a}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 41.4410551043324, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {cecff4bf-5467-4b34-a941-9654b489181d}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Electric Equipment, !- Name - {4c5550a6-4da3-4490-ac94-170d7b86c60a}, !- Electric Equipment Definition Name - {bcd867f1-c57c-4206-9b38-1c7e254a4143}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {de4444a1-34f5-4cf5-ac22-7469b7be466d}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {4a0f0aee-7d95-4341-825c-8f70d1309b6b}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3, !- Name - , !- Default Construction Set Name - {39feaf8a-6d16-4e68-9b8c-db2038aff03f}, !- Default Schedule Set Name - {6fc91438-7cba-42dc-a37d-48434d3c06ca}, !- Group Rendering Name - {b1c52cb5-3326-4b43-a12f-f30cb1ac3119}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Lg Office; !- Standards Space Type - -OS:Rendering:Color, - {6fc91438-7cba-42dc-a37d-48434d3c06ca}, !- Handle - Rendering Color 14, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {39feaf8a-6d16-4e68-9b8c-db2038aff03f}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {ee654552-7290-4128-a647-073eff68ebb6}, !- Number of People Schedule Name - {264acba7-523a-484e-8e51-ae85870ba167}, !- People Activity Level Schedule Name - {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, !- Lighting Schedule Name - {6197bef3-80c6-4043-b8a4-b9cd96652248}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {58b2159f-d857-497e-ae6a-2e8bd3520ef8}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 9.68751937503875, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {63218795-4f24-43ea-9e63-a6d83e1e86a3}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Lights, !- Name - {58b2159f-d857-497e-ae6a-2e8bd3520ef8}, !- Lights Definition Name - {4a0f0aee-7d95-4341-825c-8f70d1309b6b}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, ! Handle - Large Office Bldg Light, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {8beabbf7-6dca-4a90-862d-6bcb3322b518}, ! Default Day Schedule Name - {7c11b08d-b72b-496a-be17-e15d5503376c}, ! Summer Design Day Schedule Name - {7a49ad88-01c4-44be-b068-fb81639cb5a0}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, !- Handle - Fractional, !- Name - 0, !- Lower Limit Value - 1, !- Upper Limit Value - Continuous; !- Numeric Type - -OS:Schedule:Day, - {8beabbf7-6dca-4a90-862d-6bcb3322b518}, ! Handle - Large Office Bldg Light Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 5, !- Hour 1 - 0, !- Minute 1 - 0.05, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.1, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.3, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.7, !- Value Until Time 5 - 20, !- Hour 6 - 0, !- Minute 6 - 0.5, !- Value Until Time 6 - 22, !- Hour 7 - 0, !- Minute 7 - 0.3, !- Value Until Time 7 - 23, !- Hour 8 - 0, !- Minute 8 - 0.1, !- Value Until Time 8 - 24, !- Hour 9 - 0, !- Minute 9 - 0.05; !- Value Until Time 9 - -OS:Schedule:Day, - {7c11b08d-b72b-496a-be17-e15d5503376c}, ! Handle - Large Office Bldg Light Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Day, - {7a49ad88-01c4-44be-b068-fb81639cb5a0}, ! Handle - Large Office Bldg Light Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {5d2442a3-7cb6-411b-a86e-540208ced37c}, ! Handle - Large Office Bldg Light Rule 1, ! Name - {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, ! Schedule Ruleset Name - 0, ! Rule Order - {b3d180ee-23b9-40fa-8e2f-5a9ee8a0d777}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {b3d180ee-23b9-40fa-8e2f-5a9ee8a0d777}, ! Handle - Large Office Bldg Light Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.050000000000000003; ! Value Until Time 1 - -OS:Schedule:Rule, - {91e4e221-38d2-42cf-bbac-5d4e5f7fa888}, ! Handle - Large Office Bldg Light Rule 2, ! Name - {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, ! Schedule Ruleset Name - 1, ! Rule Order - {4ad2aa5c-62f4-4785-9ee9-2c7475032049}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {4ad2aa5c-62f4-4785-9ee9-2c7475032049}, ! Handle - Large Office Bldg Light Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.050000000000000003, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.10000000000000001, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.14999999999999999, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.050000000000000003; ! Value Until Time 5 - -OS:DesignSpecification:OutdoorAir, - {b1c52cb5-3326-4b43-a12f-f30cb1ac3119}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {2e56af89-445a-4423-b5f8-13463d65edc8}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {4615604a-bd1a-474d-91be-9f075c13bd9a}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 People, !- Name - {2e56af89-445a-4423-b5f8-13463d65edc8}, !- People Definition Name - {4a0f0aee-7d95-4341-825c-8f70d1309b6b}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {ee654552-7290-4128-a647-073eff68ebb6}, ! Handle - Large Office Bldg Occ, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {4a4adc75-c27b-4422-94cd-d8d22f2166ed}, ! Default Day Schedule Name - {cb8636f6-4882-43e8-ae4a-15479a71f2bb}, ! Summer Design Day Schedule Name - {580aadb6-816a-4308-bb19-fc0c3724acd2}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {4a4adc75-c27b-4422-94cd-d8d22f2166ed}, ! Handle - Large Office Bldg Occ Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.1, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.2, !- Value Until Time 3 - 12, !- Hour 4 - 0, !- Minute 4 - 0.95, !- Value Until Time 4 - 13, !- Hour 5 - 0, !- Minute 5 - 0.5, !- Value Until Time 5 - 17, !- Hour 6 - 0, !- Minute 6 - 0.95, !- Value Until Time 6 - 18, !- Hour 7 - 0, !- Minute 7 - 0.7, !- Value Until Time 7 - 20, !- Hour 8 - 0, !- Minute 8 - 0.4, !- Value Until Time 8 - 22, !- Hour 9 - 0, !- Minute 9 - 0.1, !- Value Until Time 9 - 24, !- Hour 10 - 0, !- Minute 10 - 0.05; !- Value Until Time 10 - -OS:Schedule:Day, - {cb8636f6-4882-43e8-ae4a-15479a71f2bb}, ! Handle - Large Office Bldg Occ Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 1, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 0.050000000000000003; ! Value Until Time 3 - -OS:Schedule:Day, - {580aadb6-816a-4308-bb19-fc0c3724acd2}, ! Handle - Large Office Bldg Occ Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {37f5d46d-389f-4543-b8e4-84f4c2e10716}, ! Handle - Large Office Bldg Occ Rule 1, ! Name - {ee654552-7290-4128-a647-073eff68ebb6}, ! Schedule Ruleset Name - 0, ! Rule Order - {122eaad1-5e72-4d01-a13d-d4a41ab5fe0b}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {122eaad1-5e72-4d01-a13d-d4a41ab5fe0b}, ! Handle - Large Office Bldg Occ Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {9ffe8f16-2513-43ec-8c59-17bafcf21414}, ! Handle - Large Office Bldg Occ Rule 2, ! Name - {ee654552-7290-4128-a647-073eff68ebb6}, ! Schedule Ruleset Name - 1, ! Rule Order - {cfce9f13-ba32-46c6-824f-a45f943e2d0c}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {cfce9f13-ba32-46c6-824f-a45f943e2d0c}, ! Handle - Large Office Bldg Occ Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.10000000000000001, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.10000000000000001, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0; ! Value Until Time 5 - -OS:Schedule:Ruleset, - {264acba7-523a-484e-8e51-ae85870ba167}, ! Handle - Large Office Activity, ! Name - {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name - {0a6d9e60-3fca-4618-b0de-820e8f6767da}, ! Default Day Schedule Name - {642af5d3-2b0f-4b01-95b7-7698f50934d0}, ! Summer Design Day Schedule Name - {5490c47e-82ae-4901-8434-0b12bb9436ba}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, !- Handle - ActivityLevel 5, !- Name - 0, !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - ActivityLevel; !- Unit Type - -OS:Schedule:Day, - {0a6d9e60-3fca-4618-b0de-820e8f6767da}, ! Handle - Large Office Activity Default Schedule, ! Name - {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 120; !- Value Until Time 1 - -OS:Schedule:Day, - {642af5d3-2b0f-4b01-95b7-7698f50934d0}, ! Handle - Large Office Activity Summer Design Day, ! Name - {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:Schedule:Day, - {5490c47e-82ae-4901-8434-0b12bb9436ba}, ! Handle - Large Office Activity Winter Design Day, ! Name - {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:SpaceInfiltration:DesignFlowRate, - {90014069-9853-4f75-becd-f17e7166df17}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Infiltration, !- Name - {4a0f0aee-7d95-4341-825c-8f70d1309b6b}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:Schedule:Ruleset, - {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, ! Handle - Large Office Infil Quarter On, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {bfe29145-2fb3-4f01-b73d-12fd1bf40b9a}, ! Default Day Schedule Name - {9a0c3c4d-8b77-40e3-8b42-8886655c3c85}, ! Summer Design Day Schedule Name - {694259ab-6cad-41eb-8340-268853e99403}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {bfe29145-2fb3-4f01-b73d-12fd1bf40b9a}, ! Handle - Large Office Infil Quarter On Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 1, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 0.25, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 1; !- Value Until Time 3 - -OS:Schedule:Day, - {9a0c3c4d-8b77-40e3-8b42-8886655c3c85}, ! Handle - Large Office Infil Quarter On Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Day, - {694259ab-6cad-41eb-8340-268853e99403}, ! Handle - Large Office Infil Quarter On Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Rule, - {6bcd70a7-2c48-43af-b1d9-a1d8959caf3f}, ! Handle - Large Office Infil Quarter On Rule 1, ! Name - {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, ! Schedule Ruleset Name - 0, ! Rule Order - {8bb9de2a-85df-481a-9982-4f45f1766e8f}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {8bb9de2a-85df-481a-9982-4f45f1766e8f}, ! Handle - Large Office Infil Quarter On Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Rule, - {342d2dd4-2b6e-46cd-a552-c5fd1e99b43f}, ! Handle - Large Office Infil Quarter On Rule 2, ! Name - {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, ! Schedule Ruleset Name - 1, ! Rule Order - {97d9dc0f-3a5d-411e-9d06-beb04225a941}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {97d9dc0f-3a5d-411e-9d06-beb04225a941}, ! Handle - Large Office Infil Quarter On Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:ElectricEquipment:Definition, - {148a4383-6613-4cb0-810d-92a639475c5c}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251412763851, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {896f52d4-b30e-46c3-b809-17a91eb06105}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Electric Equipment, !- Name - {148a4383-6613-4cb0-810d-92a639475c5c}, !- Electric Equipment Definition Name - {4a0f0aee-7d95-4341-825c-8f70d1309b6b}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {6197bef3-80c6-4043-b8a4-b9cd96652248}, ! Handle - Large Office Bldg Equip, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {ed62044d-4125-40d6-bde0-2da08536ab6d}, ! Default Day Schedule Name - {0f2b252a-8a0f-40ba-98fa-718bfa268645}, ! Summer Design Day Schedule Name - {0a7a35c9-9c2a-4545-bda6-215062948ca8}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {ed62044d-4125-40d6-bde0-2da08536ab6d}, ! Handle - Large Office Bldg Equip Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0.4, !- Value Until Time 1 - 12, !- Hour 2 - 0, !- Minute 2 - 0.9, !- Value Until Time 2 - 13, !- Hour 3 - 0, !- Minute 3 - 0.8, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.8, !- Value Until Time 5 - 20, !- Hour 6 - 0, !- Minute 6 - 0.6, !- Value Until Time 6 - 22, !- Hour 7 - 0, !- Minute 7 - 0.5, !- Value Until Time 7 - 24, !- Hour 8 - 0, !- Minute 8 - 0.4; !- Value Until Time 8 - -OS:Schedule:Day, - {0f2b252a-8a0f-40ba-98fa-718bfa268645}, ! Handle - Large Office Bldg Equip Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Day, - {0a7a35c9-9c2a-4545-bda6-215062948ca8}, ! Handle - Large Office Bldg Equip Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {15242b3b-46fd-486a-bb69-10058bd0409e}, ! Handle - Large Office Bldg Equip Rule 1, ! Name - {6197bef3-80c6-4043-b8a4-b9cd96652248}, ! Schedule Ruleset Name - 0, ! Rule Order - {4aec23a1-f64b-4f3b-a101-c2dd9519312d}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {4aec23a1-f64b-4f3b-a101-c2dd9519312d}, ! Handle - Large Office Bldg Equip Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {01ed547e-670b-40a5-85bb-225ebec0397e}, ! Handle - Large Office Bldg Equip Rule 2, ! Name - {6197bef3-80c6-4043-b8a4-b9cd96652248}, ! Schedule Ruleset Name - 1, ! Rule Order - {377d7cca-12eb-4a14-b460-434fb8eebbed}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {377d7cca-12eb-4a14-b460-434fb8eebbed}, ! Handle - Large Office Bldg Equip Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.40000000000000002, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.34999999999999998, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.29999999999999999; ! Value Until Time 5 - -OS:ThermostatSetpoint:DualSetpoint, - {2e5bfd45-be53-46a2-a1be-badb1d1f9ae8}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Thermostat, !- Name - {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, !- Heating Setpoint Temperature Schedule Name - {205b7ba7-36bf-4caa-b304-f7da82550d15}; !- Cooling Setpoint Temperature Schedule Name - -OS:Schedule:Ruleset, - {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, ! Handle - Large Office HtgSetp, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - {c03c043f-e445-4419-b05d-8448115b3bab}, ! Default Day Schedule Name - {a9f892cb-c9f4-4a21-b2b3-875ef1466bf3}, ! Summer Design Day Schedule Name - {77fb46ee-722d-4b5a-b718-ceafddc8aabf}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, !- Handle - Temperature 3, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {c03c043f-e445-4419-b05d-8448115b3bab}, ! Handle - Large Office HtgSetp Default Schedule, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 15.6, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 21, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 15.6; !- Value Until Time 3 - -OS:Schedule:Day, - {a9f892cb-c9f4-4a21-b2b3-875ef1466bf3}, ! Handle - Large Office HtgSetp Summer Design Day, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Day, - {77fb46ee-722d-4b5a-b718-ceafddc8aabf}, ! Handle - Large Office HtgSetp Winter Design Day, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 21; ! Value Until Time 1 - -OS:Schedule:Rule, - {4f682768-9ffb-4e7c-9e74-78813fdc32a0}, ! Handle - Large Office HtgSetp Rule 1, ! Name - {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, ! Schedule Ruleset Name - 0, ! Rule Order - {7545c1d3-7c27-431a-bcf9-cb0c76a60e37}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {7545c1d3-7c27-431a-bcf9-cb0c76a60e37}, ! Handle - Large Office HtgSetp Rule 1 Day Schedule, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Rule, - {f80fc661-2858-4988-ada5-e6c492332983}, ! Handle - Large Office HtgSetp Rule 2, ! Name - {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, ! Schedule Ruleset Name - 1, ! Rule Order - {3d9b97da-f484-4675-9996-0cfe5e0f120e}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {3d9b97da-f484-4675-9996-0cfe5e0f120e}, ! Handle - Large Office HtgSetp Rule 2 Day Schedule, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 15.6, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 21, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 15.6; ! Value Until Time 3 - -OS:Schedule:Ruleset, - {205b7ba7-36bf-4caa-b304-f7da82550d15}, ! Handle - Large Office ClgSetp, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - {bdb46914-0540-45a5-b513-ee6f82b41886}, ! Default Day Schedule Name - {4109675b-2e2f-446b-873f-f694dae16827}, ! Summer Design Day Schedule Name - {30c08a39-528f-426d-bc84-48cf54111147}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {088565a9-dd39-48f6-99d3-bfe5073149c2}, !- Handle - Temperature 5, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {bdb46914-0540-45a5-b513-ee6f82b41886}, ! Handle - Large Office ClgSetp Default Schedule, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 26.7, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 24, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 26.7; !- Value Until Time 3 - -OS:Schedule:Day, - {4109675b-2e2f-446b-873f-f694dae16827}, ! Handle - Large Office ClgSetp Summer Design Day, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:Schedule:Day, - {30c08a39-528f-426d-bc84-48cf54111147}, ! Handle - Large Office ClgSetp Winter Design Day, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {37df0d56-4bba-4227-8d69-9607a686014f}, ! Handle - Large Office ClgSetp Rule 1, ! Name - {205b7ba7-36bf-4caa-b304-f7da82550d15}, ! Schedule Ruleset Name - 0, ! Rule Order - {cd196b78-7b8b-429f-b96a-688c4ac8a99a}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {cd196b78-7b8b-429f-b96a-688c4ac8a99a}, ! Handle - Large Office ClgSetp Rule 1 Day Schedule, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {ccb2ba27-b2d6-4f5f-b02b-091c4def877f}, ! Handle - Large Office ClgSetp Rule 2, ! Name - {205b7ba7-36bf-4caa-b304-f7da82550d15}, ! Schedule Ruleset Name - 1, ! Rule Order - {279ad10c-a720-45f0-80eb-18bb3e37607b}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {279ad10c-a720-45f0-80eb-18bb3e37607b}, ! Handle - Large Office ClgSetp Rule 2 Day Schedule, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:SpaceType, - {f1a5c162-f322-4c79-ba15-e43020514289}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3, !- Name - , !- Default Construction Set Name - {f97da1fb-3578-4a67-9933-d2891cb549b6}, !- Default Schedule Set Name - {03e06c9d-a4bc-49de-952a-4329faa7fb71}, !- Group Rendering Name - {8f13e24f-0968-430b-82b1-c5e41da9fafa}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Md Office; !- Standards Space Type - -OS:Rendering:Color, - {03e06c9d-a4bc-49de-952a-4329faa7fb71}, !- Handle - Rendering Color 15, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {f97da1fb-3578-4a67-9933-d2891cb549b6}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {c46af6b1-d997-440b-a480-2b785127791c}, !- Number of People Schedule Name - {4401923f-7369-4704-af97-5f02eccc07c4}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {e7df833e-4db6-469d-ad96-14b52ff0ceef}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {813e77fb-5ac1-47f6-a5e0-d9a9cd3db4a9}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 9.68751937503875, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {a5f0d2c1-e014-479a-8f1b-3ebac3e265e4}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Lights, !- Name - {813e77fb-5ac1-47f6-a5e0-d9a9cd3db4a9}, !- Lights Definition Name - {f1a5c162-f322-4c79-ba15-e43020514289}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {8f13e24f-0968-430b-82b1-c5e41da9fafa}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {d2de25c6-7190-4247-bdb6-aa1580eb569f}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {58a62980-ba6f-4bad-9e5d-fdacc8096f52}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 People, !- Name - {d2de25c6-7190-4247-bdb6-aa1580eb569f}, !- People Definition Name - {f1a5c162-f322-4c79-ba15-e43020514289}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {c46af6b1-d997-440b-a480-2b785127791c}, ! Handle - Medium Office Bldg Occ, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {d9d54295-ecf9-49ea-9cd5-35741ee7140f}, ! Default Day Schedule Name - {2d82484a-7ded-4ae3-b82b-fe668b91bc37}, ! Summer Design Day Schedule Name - {4c00a96b-09d5-4658-89ef-d9ef0898a2d4}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {d9d54295-ecf9-49ea-9cd5-35741ee7140f}, ! Handle - Medium Office Bldg Occ Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.1, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.2, !- Value Until Time 3 - 12, !- Hour 4 - 0, !- Minute 4 - 0.95, !- Value Until Time 4 - 13, !- Hour 5 - 0, !- Minute 5 - 0.5, !- Value Until Time 5 - 17, !- Hour 6 - 0, !- Minute 6 - 0.95, !- Value Until Time 6 - 18, !- Hour 7 - 0, !- Minute 7 - 0.7, !- Value Until Time 7 - 20, !- Hour 8 - 0, !- Minute 8 - 0.4, !- Value Until Time 8 - 22, !- Hour 9 - 0, !- Minute 9 - 0.1, !- Value Until Time 9 - 24, !- Hour 10 - 0, !- Minute 10 - 0.05; !- Value Until Time 10 - -OS:Schedule:Day, - {2d82484a-7ded-4ae3-b82b-fe668b91bc37}, ! Handle - Medium Office Bldg Occ Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 1, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 0.050000000000000003; ! Value Until Time 3 - -OS:Schedule:Day, - {4c00a96b-09d5-4658-89ef-d9ef0898a2d4}, ! Handle - Medium Office Bldg Occ Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {7b4107cc-3c92-4323-a753-015efc68bcc2}, ! Handle - Medium Office Bldg Occ Rule 1, ! Name - {c46af6b1-d997-440b-a480-2b785127791c}, ! Schedule Ruleset Name - 0, ! Rule Order - {0ef53acd-53bb-4684-9657-b3c697aefcf1}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {0ef53acd-53bb-4684-9657-b3c697aefcf1}, ! Handle - Medium Office Bldg Occ Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {4d201951-02b0-433c-8e17-deb2b0409886}, ! Handle - Medium Office Bldg Occ Rule 2, ! Name - {c46af6b1-d997-440b-a480-2b785127791c}, ! Schedule Ruleset Name - 1, ! Rule Order - {cf6e8c44-7d5c-4f2c-9a53-1b2a7113c47c}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {cf6e8c44-7d5c-4f2c-9a53-1b2a7113c47c}, ! Handle - Medium Office Bldg Occ Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.10000000000000001, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.10000000000000001, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0; ! Value Until Time 5 - -OS:Schedule:Ruleset, - {4401923f-7369-4704-af97-5f02eccc07c4}, ! Handle - Medium Office Activity, ! Name - {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name - {bb81c5f0-bf9a-4988-98c4-eb4a990d7a88}, ! Default Day Schedule Name - {f3b095b2-bfff-494c-896b-85a436510b0b}, ! Summer Design Day Schedule Name - {d26b3326-27cf-44ae-b92e-698b3492b9c3}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {95269861-8fab-46f9-aa04-a6e9bad28f6a}, !- Handle - ActivityLevel 13, !- Name - 0, !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - ActivityLevel; !- Unit Type - -OS:Schedule:Day, - {bb81c5f0-bf9a-4988-98c4-eb4a990d7a88}, ! Handle - Medium Office Activity Default Schedule, ! Name - {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 120; !- Value Until Time 1 - -OS:Schedule:Day, - {f3b095b2-bfff-494c-896b-85a436510b0b}, ! Handle - Medium Office Activity Summer Design Day, ! Name - {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:Schedule:Day, - {d26b3326-27cf-44ae-b92e-698b3492b9c3}, ! Handle - Medium Office Activity Winter Design Day, ! Name - {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:SpaceInfiltration:DesignFlowRate, - {eeedf250-2cf8-460c-88a9-6a3cf6835b8d}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Infiltration, !- Name - {f1a5c162-f322-4c79-ba15-e43020514289}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:Schedule:Ruleset, - {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, ! Handle - Medium Office Infil Quarter On, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {d5c45924-8436-4010-89ab-1d4be1c9229b}, ! Default Day Schedule Name - {5cb8e672-ec1d-411a-ad66-83bef8bf8004}, ! Summer Design Day Schedule Name - {61bdc9d6-0f05-4ca1-a38c-fa71dcd32b8f}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {d5c45924-8436-4010-89ab-1d4be1c9229b}, ! Handle - Medium Office Infil Quarter On Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 1, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 0.25, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 1; !- Value Until Time 3 - -OS:Schedule:Day, - {5cb8e672-ec1d-411a-ad66-83bef8bf8004}, ! Handle - Medium Office Infil Quarter On Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Day, - {61bdc9d6-0f05-4ca1-a38c-fa71dcd32b8f}, ! Handle - Medium Office Infil Quarter On Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Rule, - {61abaf03-1521-4e72-a32f-0622572b46df}, ! Handle - Medium Office Infil Quarter On Rule 1, ! Name - {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, ! Schedule Ruleset Name - 0, ! Rule Order - {b837180a-0538-4830-8423-56d718ec2cf7}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {b837180a-0538-4830-8423-56d718ec2cf7}, ! Handle - Medium Office Infil Quarter On Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Rule, - {bf208a98-b7ef-4dbb-957d-53cf720abf70}, ! Handle - Medium Office Infil Quarter On Rule 2, ! Name - {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, ! Schedule Ruleset Name - 1, ! Rule Order - {7efacb04-6850-495e-afb7-9d56ea083b53}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {7efacb04-6850-495e-afb7-9d56ea083b53}, ! Handle - Medium Office Infil Quarter On Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:ElectricEquipment:Definition, - {08d105c1-a5c4-43eb-872f-8bd123ea9720}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {92bed684-e409-4e09-8f9b-036a79bdc3c6}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Electric Equipment, !- Name - {08d105c1-a5c4-43eb-872f-8bd123ea9720}, !- Electric Equipment Definition Name - {f1a5c162-f322-4c79-ba15-e43020514289}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {e7df833e-4db6-469d-ad96-14b52ff0ceef}, ! Handle - Medium Office Bldg Equip, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {6ea54946-7d6f-4908-b7bb-972893f935bf}, ! Default Day Schedule Name - {a70a63ce-a586-4a33-ac0e-5bff458a02ad}, ! Summer Design Day Schedule Name - {8d89ff2d-74de-4adc-a2b6-5ed38545666a}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {6ea54946-7d6f-4908-b7bb-972893f935bf}, ! Handle - Medium Office Bldg Equip Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0.4, !- Value Until Time 1 - 12, !- Hour 2 - 0, !- Minute 2 - 0.9, !- Value Until Time 2 - 13, !- Hour 3 - 0, !- Minute 3 - 0.8, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.8, !- Value Until Time 5 - 20, !- Hour 6 - 0, !- Minute 6 - 0.6, !- Value Until Time 6 - 22, !- Hour 7 - 0, !- Minute 7 - 0.5, !- Value Until Time 7 - 24, !- Hour 8 - 0, !- Minute 8 - 0.4; !- Value Until Time 8 - -OS:Schedule:Day, - {a70a63ce-a586-4a33-ac0e-5bff458a02ad}, ! Handle - Medium Office Bldg Equip Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Day, - {8d89ff2d-74de-4adc-a2b6-5ed38545666a}, ! Handle - Medium Office Bldg Equip Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {f0c7f526-21ef-4f5e-8c3d-b4e15c5fdad7}, ! Handle - Medium Office Bldg Equip Rule 1, ! Name - {e7df833e-4db6-469d-ad96-14b52ff0ceef}, ! Schedule Ruleset Name - 0, ! Rule Order - {f7fadf05-492e-4735-94c5-ffdf9f951db8}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {f7fadf05-492e-4735-94c5-ffdf9f951db8}, ! Handle - Medium Office Bldg Equip Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {4faf6bd3-ebb1-47fb-8f59-6dfe65f49500}, ! Handle - Medium Office Bldg Equip Rule 2, ! Name - {e7df833e-4db6-469d-ad96-14b52ff0ceef}, ! Schedule Ruleset Name - 1, ! Rule Order - {b8836416-9204-431d-857d-b99235588cc6}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {b8836416-9204-431d-857d-b99235588cc6}, ! Handle - Medium Office Bldg Equip Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.40000000000000002, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.34999999999999998, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.29999999999999999; ! Value Until Time 5 - -OS:ThermostatSetpoint:DualSetpoint, - {6c8f1b66-79b0-4494-bb62-0e6ab336934b}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {e1cc070f-9032-474a-a692-fe55745caa04}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3, !- Name - , !- Default Construction Set Name - {d32f1055-150c-4db0-85e7-cd8d80091a97}, !- Default Schedule Set Name - {acb4804a-6b98-49bc-8337-c128f3c2ea30}, !- Group Rendering Name - {6410e886-4201-485e-a1a7-5fa1c8b6bdf4}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Sm Office; !- Standards Space Type - -OS:Rendering:Color, - {acb4804a-6b98-49bc-8337-c128f3c2ea30}, !- Handle - Rendering Color 16, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {d32f1055-150c-4db0-85e7-cd8d80091a97}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {7db91015-b01f-42c8-b02c-a13d4ed39198}, !- Number of People Schedule Name - {67a55331-2096-4c9b-981a-b63f113d0dd9}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {a51b8fe3-0466-410b-a880-21be07500a52}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {cb7cb752-a33a-400e-97f3-836bf023796e}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {71df8542-c73a-4a75-96b3-2049ec201c3b}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 9.68751937503875, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {453c5932-0aee-459f-ac1d-0563be79832e}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Lights, !- Name - {71df8542-c73a-4a75-96b3-2049ec201c3b}, !- Lights Definition Name - {e1cc070f-9032-474a-a692-fe55745caa04}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {6410e886-4201-485e-a1a7-5fa1c8b6bdf4}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {7accfcbc-2a91-4f56-8250-c9c73d4bce14}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {d10bfc0d-d823-4de2-8ad6-a13acf3eb5e9}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 People, !- Name - {7accfcbc-2a91-4f56-8250-c9c73d4bce14}, !- People Definition Name - {e1cc070f-9032-474a-a692-fe55745caa04}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {7db91015-b01f-42c8-b02c-a13d4ed39198}, ! Handle - Small Office Bldg Occ, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {64ea2dea-f719-4e4c-a22e-42f9227b7d02}, ! Default Day Schedule Name - {e2d1be96-983f-479c-9168-bb31f678aa45}, ! Summer Design Day Schedule Name - {e3787dc6-53c0-4b7e-928b-6123952b9fc2}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {64ea2dea-f719-4e4c-a22e-42f9227b7d02}, ! Handle - Small Office Bldg Occ Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.1, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.2, !- Value Until Time 3 - 12, !- Hour 4 - 0, !- Minute 4 - 0.95, !- Value Until Time 4 - 13, !- Hour 5 - 0, !- Minute 5 - 0.5, !- Value Until Time 5 - 17, !- Hour 6 - 0, !- Minute 6 - 0.95, !- Value Until Time 6 - 18, !- Hour 7 - 0, !- Minute 7 - 0.3, !- Value Until Time 7 - 20, !- Hour 8 - 0, !- Minute 8 - 0.1, !- Value Until Time 8 - 24, !- Hour 9 - 0, !- Minute 9 - 0.05; !- Value Until Time 9 - -OS:Schedule:Day, - {e2d1be96-983f-479c-9168-bb31f678aa45}, ! Handle - Small Office Bldg Occ Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 1, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 0.050000000000000003; ! Value Until Time 3 - -OS:Schedule:Day, - {e3787dc6-53c0-4b7e-928b-6123952b9fc2}, ! Handle - Small Office Bldg Occ Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {f5e8f265-336a-4040-bc3d-908d04e76726}, ! Handle - Small Office Bldg Occ Rule 1, ! Name - {7db91015-b01f-42c8-b02c-a13d4ed39198}, ! Schedule Ruleset Name - 0, ! Rule Order - {b1de6bcd-f86b-4e51-81b1-8ae3ed668c97}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {b1de6bcd-f86b-4e51-81b1-8ae3ed668c97}, ! Handle - Small Office Bldg Occ Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {1ac935c1-7df7-46c6-a2c5-b2a40bc3fc36}, ! Handle - Small Office Bldg Occ Rule 2, ! Name - {7db91015-b01f-42c8-b02c-a13d4ed39198}, ! Schedule Ruleset Name - 1, ! Rule Order - {d529f022-9fba-4103-af27-c2084aba44c4}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {d529f022-9fba-4103-af27-c2084aba44c4}, ! Handle - Small Office Bldg Occ Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.10000000000000001, ! Value Until Time 2 - 12, ! Hour 3 - 0, ! Minute 3 - 0.29999999999999999, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.10000000000000001, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0; ! Value Until Time 5 - -OS:Schedule:Ruleset, - {67a55331-2096-4c9b-981a-b63f113d0dd9}, ! Handle - Small Office Activity, ! Name - {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name - {12ff5327-86b6-42bd-9d53-941110babe19}, ! Default Day Schedule Name - {be5e67a8-5b36-4ac3-9813-2ebd31fec570}, ! Summer Design Day Schedule Name - {bae73b41-e18c-4183-82f3-dc5b3daf6b5a}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {ab8bd902-d0dc-41a0-936a-32afa4684057}, !- Handle - ActivityLevel 12, !- Name - 0, !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - ActivityLevel; !- Unit Type - -OS:Schedule:Day, - {12ff5327-86b6-42bd-9d53-941110babe19}, ! Handle - Small Office Activity Default Schedule, ! Name - {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 120; !- Value Until Time 1 - -OS:Schedule:Day, - {be5e67a8-5b36-4ac3-9813-2ebd31fec570}, ! Handle - Small Office Activity Summer Design Day, ! Name - {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:Schedule:Day, - {bae73b41-e18c-4183-82f3-dc5b3daf6b5a}, ! Handle - Small Office Activity Winter Design Day, ! Name - {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:SpaceInfiltration:DesignFlowRate, - {1e027a7c-c27f-4a3d-8cdf-0828601a4f05}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Infiltration, !- Name - {e1cc070f-9032-474a-a692-fe55745caa04}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:Schedule:Ruleset, - {cb7cb752-a33a-400e-97f3-836bf023796e}, ! Handle - Small Office Infil Quarter On, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {d279bd44-f26f-41f0-8003-e761ea50936f}, ! Default Day Schedule Name - {c9e55356-07d8-4e95-afd6-6122ba003888}, ! Summer Design Day Schedule Name - {50252ab7-6356-4d3c-9744-8fc09c4b9fdf}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {d279bd44-f26f-41f0-8003-e761ea50936f}, ! Handle - Small Office Infil Quarter On Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 1, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 0.25, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 1; !- Value Until Time 3 - -OS:Schedule:Day, - {c9e55356-07d8-4e95-afd6-6122ba003888}, ! Handle - Small Office Infil Quarter On Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Day, - {50252ab7-6356-4d3c-9744-8fc09c4b9fdf}, ! Handle - Small Office Infil Quarter On Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Rule, - {3e76f500-a8e5-4299-95bc-7ccf11473b72}, ! Handle - Small Office Infil Quarter On Rule 1, ! Name - {cb7cb752-a33a-400e-97f3-836bf023796e}, ! Schedule Ruleset Name - 0, ! Rule Order - {f6330e6d-8c0a-4094-9d12-908c60826bc6}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {f6330e6d-8c0a-4094-9d12-908c60826bc6}, ! Handle - Small Office Infil Quarter On Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Rule, - {6f8f3c1b-5f33-40ba-b7d5-604c0832baea}, ! Handle - Small Office Infil Quarter On Rule 2, ! Name - {cb7cb752-a33a-400e-97f3-836bf023796e}, ! Schedule Ruleset Name - 1, ! Rule Order - {2ea3f1d7-fe3f-4de0-a16d-449692029526}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {2ea3f1d7-fe3f-4de0-a16d-449692029526}, ! Handle - Small Office Infil Quarter On Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:ElectricEquipment:Definition, - {39f1a8d8-4466-4a00-8eb7-ffec43b67ef7}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {37b7d99c-9391-4952-b185-a511e62b7beb}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Electric Equipment, !- Name - {39f1a8d8-4466-4a00-8eb7-ffec43b67ef7}, !- Electric Equipment Definition Name - {e1cc070f-9032-474a-a692-fe55745caa04}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {a51b8fe3-0466-410b-a880-21be07500a52}, ! Handle - Small Office Bldg Equip, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {fc46d799-962b-42da-810e-397f7b1e88d7}, ! Default Day Schedule Name - {177d4d57-9a9d-40c4-9f25-385bc5794113}, ! Summer Design Day Schedule Name - {d16b57c0-830a-4c5a-b229-8bb90eafd907}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {fc46d799-962b-42da-810e-397f7b1e88d7}, ! Handle - Small Office Bldg Equip Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0.4, !- Value Until Time 1 - 12, !- Hour 2 - 0, !- Minute 2 - 0.9, !- Value Until Time 2 - 13, !- Hour 3 - 0, !- Minute 3 - 0.8, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.5, !- Value Until Time 5 - 24, !- Hour 6 - 0, !- Minute 6 - 0.4; !- Value Until Time 6 - -OS:Schedule:Day, - {177d4d57-9a9d-40c4-9f25-385bc5794113}, ! Handle - Small Office Bldg Equip Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Day, - {d16b57c0-830a-4c5a-b229-8bb90eafd907}, ! Handle - Small Office Bldg Equip Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {b33de88d-7022-4f25-b0bc-864df53b8778}, ! Handle - Small Office Bldg Equip Rule 1, ! Name - {a51b8fe3-0466-410b-a880-21be07500a52}, ! Schedule Ruleset Name - 0, ! Rule Order - {ba6246a8-76d6-4116-8b88-5393a3f4104e}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {ba6246a8-76d6-4116-8b88-5393a3f4104e}, ! Handle - Small Office Bldg Equip Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {d64a5d87-6660-4767-a721-b98c22ca221a}, ! Handle - Small Office Bldg Equip Rule 2, ! Name - {a51b8fe3-0466-410b-a880-21be07500a52}, ! Schedule Ruleset Name - 1, ! Rule Order - {b024c0a2-4dc6-48a1-b95e-6727cd4eda93}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {b024c0a2-4dc6-48a1-b95e-6727cd4eda93}, ! Handle - Small Office Bldg Equip Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.40000000000000002, ! Value Until Time 2 - 12, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.34999999999999998, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.29999999999999999; ! Value Until Time 5 - -OS:ThermostatSetpoint:DualSetpoint, - {0488857a-ac36-457e-bf08-09bfa412ba46}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Thermostat, !- Name - {a8fc5971-56bf-485f-a8b6-fc00357a220a}, !- Heating Setpoint Temperature Schedule Name - {8334d03b-d787-4c01-a860-2e97c980572e}; !- Cooling Setpoint Temperature Schedule Name - -OS:Schedule:Ruleset, - {a8fc5971-56bf-485f-a8b6-fc00357a220a}, ! Handle - Small Office HtgSetp, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - {3c698c69-ef20-4c49-99b7-b7aad45c31e8}, ! Default Day Schedule Name - {65e5c54a-b6f3-4826-8e5d-f77bf7a35635}, ! Summer Design Day Schedule Name - {f78827e4-d6c5-4edc-ad35-a64fdbeb2a7f}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, !- Handle - Temperature 11, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {3c698c69-ef20-4c49-99b7-b7aad45c31e8}, ! Handle - Small Office HtgSetp Default Schedule, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 15.6, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 21, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 15.6; !- Value Until Time 3 - -OS:Schedule:Day, - {65e5c54a-b6f3-4826-8e5d-f77bf7a35635}, ! Handle - Small Office HtgSetp Summer Design Day, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Day, - {f78827e4-d6c5-4edc-ad35-a64fdbeb2a7f}, ! Handle - Small Office HtgSetp Winter Design Day, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 21; ! Value Until Time 1 - -OS:Schedule:Rule, - {59307f1f-95bc-49ae-b50e-42836a04e0cc}, ! Handle - Small Office HtgSetp Rule 1, ! Name - {a8fc5971-56bf-485f-a8b6-fc00357a220a}, ! Schedule Ruleset Name - 0, ! Rule Order - {8d0c0dcb-4ca1-4665-8d1d-bfe46b893abe}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {8d0c0dcb-4ca1-4665-8d1d-bfe46b893abe}, ! Handle - Small Office HtgSetp Rule 1 Day Schedule, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Rule, - {9847a62b-fb76-4ab8-9344-f3f532928c11}, ! Handle - Small Office HtgSetp Rule 2, ! Name - {a8fc5971-56bf-485f-a8b6-fc00357a220a}, ! Schedule Ruleset Name - 1, ! Rule Order - {4824a431-a6af-44cb-9a95-88a95f2c6cec}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {4824a431-a6af-44cb-9a95-88a95f2c6cec}, ! Handle - Small Office HtgSetp Rule 2 Day Schedule, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 15.6, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 21, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 15.6; ! Value Until Time 3 - -OS:Schedule:Ruleset, - {8334d03b-d787-4c01-a860-2e97c980572e}, ! Handle - Small Office ClgSetp, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - {153c8010-6388-42f7-a3b9-45ffa21b21cf}, ! Default Day Schedule Name - {5fb8bca9-2863-48e1-aa3f-84e58ae39852}, ! Summer Design Day Schedule Name - {2103cebf-d42f-4cd2-b503-7600479676a2}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {c998de07-a854-476f-88ee-694f57ede232}, !- Handle - Temperature 4, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {153c8010-6388-42f7-a3b9-45ffa21b21cf}, ! Handle - Small Office ClgSetp Default Schedule, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 26.7, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 24, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 26.7; !- Value Until Time 3 - -OS:Schedule:Day, - {5fb8bca9-2863-48e1-aa3f-84e58ae39852}, ! Handle - Small Office ClgSetp Summer Design Day, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:Schedule:Day, - {2103cebf-d42f-4cd2-b503-7600479676a2}, ! Handle - Small Office ClgSetp Winter Design Day, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {40345165-334a-485e-87cf-103e70023132}, ! Handle - Small Office ClgSetp Rule 1, ! Name - {8334d03b-d787-4c01-a860-2e97c980572e}, ! Schedule Ruleset Name - 0, ! Rule Order - {d1455230-b62b-4375-80ca-cc36c3183857}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {d1455230-b62b-4375-80ca-cc36c3183857}, ! Handle - Small Office ClgSetp Rule 1 Day Schedule, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {0972da99-d044-41cb-8d26-0439235fb34a}, ! Handle - Small Office ClgSetp Rule 2, ! Name - {8334d03b-d787-4c01-a860-2e97c980572e}, ! Schedule Ruleset Name - 1, ! Rule Order - {81a56e50-b627-419b-920e-d3cef807b9f8}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {81a56e50-b627-419b-920e-d3cef807b9f8}, ! Handle - Small Office ClgSetp Rule 2 Day Schedule, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:SpaceType, - {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8, !- Name - , !- Default Construction Set Name - {0b0d7d0e-8e0c-4d73-bbd0-4d262ac73220}, !- Default Schedule Set Name - {99b31bfd-0d42-45f4-a0d8-d4817aca24ae}, !- Group Rendering Name - {f6d5ea3e-58cf-41e5-81fb-02117411a981}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - BreakRoom; !- Standards Space Type - -OS:Rendering:Color, - {99b31bfd-0d42-45f4-a0d8-d4817aca24ae}, !- Handle - Rendering Color 17, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {0b0d7d0e-8e0c-4d73-bbd0-4d262ac73220}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {9d2a2115-85c5-438b-b32c-a4a858d8161a}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 11.6250232500465, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {4a230733-41f5-4ca6-96e0-5e44748f7df4}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Lights, !- Name - {9d2a2115-85c5-438b-b32c-a4a858d8161a}, !- Lights Definition Name - {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {f6d5ea3e-58cf-41e5-81fb-02117411a981}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {23d096cd-2bb1-423d-b1c8-baf5526ef2a6}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {5a10a8e5-74eb-41b6-8300-8c614f3cd681}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 People, !- Name - {23d096cd-2bb1-423d-b1c8-baf5526ef2a6}, !- People Definition Name - {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {6eb84b2f-973d-476e-b524-53b69c751752}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Infiltration, !- Name - {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {5b57df41-243c-46ff-9790-d9497bd8edf0}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 48.0070404585254, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {e641d016-e7d6-4890-957c-3de2b21a699a}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Electric Equipment, !- Name - {5b57df41-243c-46ff-9790-d9497bd8edf0}, !- Electric Equipment Definition Name - {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {92dbe6d3-c9b9-43fc-90c3-a06b5ec93169}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {ac0a78a9-f73e-43b0-b8ae-e687babd2992}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8, !- Name - , !- Default Construction Set Name - {45d37156-65d2-4044-abc0-329c2491e0be}, !- Default Schedule Set Name - {6dc82c65-0965-48c5-9394-1f57bef18075}, !- Group Rendering Name - {2cbf38dd-78ec-43cf-9455-8dba2eee1857}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - ClosedOffice; !- Standards Space Type - -OS:Rendering:Color, - {6dc82c65-0965-48c5-9394-1f57bef18075}, !- Handle - Rendering Color 18, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {45d37156-65d2-4044-abc0-329c2491e0be}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {f855eb4f-a401-4c05-9693-85547aab5919}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {e6b87a14-1e18-49c7-85c2-84f072c938b2}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Lights, !- Name - {f855eb4f-a401-4c05-9693-85547aab5919}, !- Lights Definition Name - {ac0a78a9-f73e-43b0-b8ae-e687babd2992}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {2cbf38dd-78ec-43cf-9455-8dba2eee1857}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {2a7bd42c-841d-4013-b4e7-019f52823262}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0511285744793712, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {283ae026-2477-4529-bb38-02c7e6065076}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 People, !- Name - {2a7bd42c-841d-4013-b4e7-019f52823262}, !- People Definition Name - {ac0a78a9-f73e-43b0-b8ae-e687babd2992}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {b655059c-3ce9-4b49-a0db-160442a03540}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Infiltration, !- Name - {ac0a78a9-f73e-43b0-b8ae-e687babd2992}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {56de10a1-c355-43cc-8c70-789938bd1248}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 6.88890266669422, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {0f379c88-6f89-4030-bc79-090ef24b986e}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Electric Equipment, !- Name - {56de10a1-c355-43cc-8c70-789938bd1248}, !- Electric Equipment Definition Name - {ac0a78a9-f73e-43b0-b8ae-e687babd2992}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {6b3eff15-c2f8-4f87-9fe3-6f7c3004ea5f}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {b9bdae74-1b30-442c-a7ed-69d06b515457}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8, !- Name - , !- Default Construction Set Name - {e6c39dce-80ca-4ed4-a781-b5e18baff696}, !- Default Schedule Set Name - {202e2808-fe0a-49ec-8437-4c794472a9a0}, !- Group Rendering Name - {b8c9a3c5-53fb-4331-9614-87a518236f35}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Conference; !- Standards Space Type - -OS:Rendering:Color, - {202e2808-fe0a-49ec-8437-4c794472a9a0}, !- Handle - Rendering Color 19, !- Name - 230, !- Rendering Red Value - 196, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {e6c39dce-80ca-4ed4-a781-b5e18baff696}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {bcc996df-46dd-45ba-abe0-69433df53594}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 12.5937751875504, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {86c2e905-536c-4838-bf48-8aa4aebef755}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Lights, !- Name - {bcc996df-46dd-45ba-abe0-69433df53594}, !- Lights Definition Name - {b9bdae74-1b30-442c-a7ed-69d06b515457}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {b8c9a3c5-53fb-4331-9614-87a518236f35}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {f07defcd-cf7a-424b-a3f5-c1672133261e}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {884b2aa3-62fe-4d6a-b8ec-c19497fc7da8}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 People, !- Name - {f07defcd-cf7a-424b-a3f5-c1672133261e}, !- People Definition Name - {b9bdae74-1b30-442c-a7ed-69d06b515457}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {23919b1f-4940-4b68-b1a0-5e68c2d5b78d}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Infiltration, !- Name - {b9bdae74-1b30-442c-a7ed-69d06b515457}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {aca91e63-a266-464d-b600-e89b347c9d95}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 3.9826468541826, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {7ecb1b95-ffa4-4c84-b1e4-cf8c033ce8f7}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Electric Equipment, !- Name - {aca91e63-a266-464d-b600-e89b347c9d95}, !- Electric Equipment Definition Name - {b9bdae74-1b30-442c-a7ed-69d06b515457}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {541fa24b-ddf2-4edf-83d9-2bed06917add}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8, !- Name - , !- Default Construction Set Name - {666e2765-a8cc-4272-9029-54b416bb2610}, !- Default Schedule Set Name - {340eeae9-9587-4e04-b7fe-21214fa0042c}, !- Group Rendering Name - {fd69f378-0e94-4fdd-a231-f37cf315cc66}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Corridor; !- Standards Space Type - -OS:Rendering:Color, - {340eeae9-9587-4e04-b7fe-21214fa0042c}, !- Handle - Rendering Color 20, !- Name - 169, !- Rendering Red Value - 31, !- Rendering Green Value - 31; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {666e2765-a8cc-4272-9029-54b416bb2610}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {a6e7a355-270c-45fb-9c56-5f4a3452110c}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.84375968751938, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {fed0a7aa-9bc2-4d98-bc74-465b35a409d4}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Lights, !- Name - {a6e7a355-270c-45fb-9c56-5f4a3452110c}, !- Lights Definition Name - {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {fd69f378-0e94-4fdd-a231-f37cf315cc66}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {cb9b3da7-3eea-4d6e-9db1-01acf0825dcd}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {42ce457e-2d95-4fe6-9cda-f5042dea1c96}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 People, !- Name - {cb9b3da7-3eea-4d6e-9db1-01acf0825dcd}, !- People Definition Name - {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {ca37d410-b9c7-4e62-b5ca-b87627a332cc}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Infiltration, !- Name - {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {3c280509-8b4d-4af3-aac1-fa15404f8b6d}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 1.72222566667356, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {01d044ce-7e19-4288-a75a-77fc975d40d4}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Electric Equipment, !- Name - {3c280509-8b4d-4af3-aac1-fa15404f8b6d}, !- Electric Equipment Definition Name - {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {3bdf0199-3196-4d00-9272-a3b137675d31}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8, !- Name - , !- Default Construction Set Name - {4390b43b-ded0-461f-b061-f042bc13f91f}, !- Default Schedule Set Name - {09cc0a44-bde3-4ae8-97d5-6973b620eb23}, !- Group Rendering Name - {1fbee130-5b8b-41c4-b2e5-a35b678e1a1c}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Elec/MechRoom; !- Standards Space Type - -OS:Rendering:Color, - {09cc0a44-bde3-4ae8-97d5-6973b620eb23}, !- Handle - Rendering Color 21, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {4390b43b-ded0-461f-b061-f042bc13f91f}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {0d6e7075-d80b-44ae-9ee6-0b2ad52b1548}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 14.5312790625581, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {d0fd0a9a-f35d-4f92-b9b5-cc437f048b81}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Lights, !- Name - {0d6e7075-d80b-44ae-9ee6-0b2ad52b1548}, !- Lights Definition Name - {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {1fbee130-5b8b-41c4-b2e5-a35b678e1a1c}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:SpaceInfiltration:DesignFlowRate, - {5886568b-d637-4e9b-b7c1-0d6b0bcc8fc9}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Infiltration, !- Name - {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {08047a8f-2dc9-4514-aa3a-dcd71c961969}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 2.90625581251162, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {2d527502-0ea9-4d22-9420-1faee6f46df3}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Electric Equipment, !- Name - {08047a8f-2dc9-4514-aa3a-dcd71c961969}, !- Electric Equipment Definition Name - {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {bc8bbc76-ab44-4992-ad1d-80d2dbc7e77e}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {25788573-0369-4919-952e-9f4a8d287a07}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8, !- Name - , !- Default Construction Set Name - {a77ae8b7-4aa2-41f7-b5a6-8856ba6e1aa9}, !- Default Schedule Set Name - {03a758bb-e62a-48b9-97b4-e7c9725503de}, !- Group Rendering Name - {c78ecc49-33c1-4baa-8f4a-3a3d4e3253e7}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - IT_Room; !- Standards Space Type - -OS:Rendering:Color, - {03a758bb-e62a-48b9-97b4-e7c9725503de}, !- Handle - Rendering Color 22, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {a77ae8b7-4aa2-41f7-b5a6-8856ba6e1aa9}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {b22a9e34-087b-427c-b758-a0124a25cdc5}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {9d45cbfa-f2ce-4490-bfe6-9ea2b0ef403d}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Lights, !- Name - {b22a9e34-087b-427c-b758-a0124a25cdc5}, !- Lights Definition Name - {25788573-0369-4919-952e-9f4a8d287a07}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {c78ecc49-33c1-4baa-8f4a-3a3d4e3253e7}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {a0c943ca-3fd3-4a76-8558-4194a944b98d}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {0e12ef15-0acb-4a55-95a0-2260cf7ad1a8}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 People, !- Name - {a0c943ca-3fd3-4a76-8558-4194a944b98d}, !- People Definition Name - {25788573-0369-4919-952e-9f4a8d287a07}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {06f80535-6c1b-4be5-8e24-e2f246b425c8}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Infiltration, !- Name - {25788573-0369-4919-952e-9f4a8d287a07}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {75c6e605-824f-4e54-8dd0-f27abb35f641}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 16.7917002500672, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {23c00582-f748-4c1b-916b-1fa5c7686d7d}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Electric Equipment, !- Name - {75c6e605-824f-4e54-8dd0-f27abb35f641}, !- Electric Equipment Definition Name - {25788573-0369-4919-952e-9f4a8d287a07}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {d067df76-cf76-4cf6-aa35-0cbb12b8656a}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {12b0b8db-f33b-4234-a2c9-ba750ae671ef}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8, !- Name - , !- Default Construction Set Name - {69f043ea-7f0a-4f57-a9b9-d557929fc49e}, !- Default Schedule Set Name - {74dc8dad-959b-491c-a50a-9af6ecd0a669}, !- Group Rendering Name - {dbdfd940-1c36-4bd0-afb4-880a785c5e6f}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Lobby; !- Standards Space Type - -OS:Rendering:Color, - {74dc8dad-959b-491c-a50a-9af6ecd0a669}, !- Handle - Rendering Color 23, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {69f043ea-7f0a-4f57-a9b9-d557929fc49e}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {f8e9e766-9250-4cfa-86f6-1216a4564dfb}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 12.5937751875504, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {44ac18e1-7275-4b3a-b218-7e2e176f1a73}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Lights, !- Name - {f8e9e766-9250-4cfa-86f6-1216a4564dfb}, !- Lights Definition Name - {12b0b8db-f33b-4234-a2c9-ba750ae671ef}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {dbdfd940-1c36-4bd0-afb4-880a785c5e6f}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {7e4b36df-78b6-45fb-a861-8e35ddce0df9}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {d1894ae1-fe0a-4638-8df5-d20ee93f1533}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 People, !- Name - {7e4b36df-78b6-45fb-a861-8e35ddce0df9}, !- People Definition Name - {12b0b8db-f33b-4234-a2c9-ba750ae671ef}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {d815095f-6e93-44e7-9812-f55b6c2aef2e}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Infiltration, !- Name - {12b0b8db-f33b-4234-a2c9-ba750ae671ef}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {e8a069db-d0db-4d2f-8265-790a7831bafa}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 0.753473729169681, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {24778cfb-5eee-4ddc-902b-a11bb0bfef66}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Electric Equipment, !- Name - {e8a069db-d0db-4d2f-8265-790a7831bafa}, !- Electric Equipment Definition Name - {12b0b8db-f33b-4234-a2c9-ba750ae671ef}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {3fabcd0e-e1a5-4e00-9e23-9e19d5c555d9}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {ad9972e4-489e-404e-841e-c9bbd72d0111}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8, !- Name - , !- Default Construction Set Name - {67cfc28b-9f66-4e18-8b2c-25a2ff33fd11}, !- Default Schedule Set Name - {ede0a72d-692f-411e-898f-ccb1f783c262}, !- Group Rendering Name - {f4a649b7-7f7c-4bc5-9b02-e4e1aa4803e9}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - OpenOffice; !- Standards Space Type - -OS:Rendering:Color, - {ede0a72d-692f-411e-898f-ccb1f783c262}, !- Handle - Rendering Color 24, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {67cfc28b-9f66-4e18-8b2c-25a2ff33fd11}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {18a52544-7daa-4972-9e7f-9e27c5a4cd66}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {a396c5cc-c22f-42c9-be8e-af3d54d54456}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Lights, !- Name - {18a52544-7daa-4972-9e7f-9e27c5a4cd66}, !- Lights Definition Name - {ad9972e4-489e-404e-841e-c9bbd72d0111}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {f4a649b7-7f7c-4bc5-9b02-e4e1aa4803e9}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {22b512ed-ce73-4779-9d6d-34a5d817a868}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.056510529687726, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {6b5422a3-490d-4e08-a37c-480ec55d22f6}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 People, !- Name - {22b512ed-ce73-4779-9d6d-34a5d817a868}, !- People Definition Name - {ad9972e4-489e-404e-841e-c9bbd72d0111}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {9f99f28a-55da-49b7-9354-17ccfd3b33e0}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Infiltration, !- Name - {ad9972e4-489e-404e-841e-c9bbd72d0111}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {95fc5eef-d77d-4616-917f-974b5dabab66}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.6423763958639, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {8470e1c3-c0bc-4712-81bc-3382735de5cb}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Electric Equipment, !- Name - {95fc5eef-d77d-4616-917f-974b5dabab66}, !- Electric Equipment Definition Name - {ad9972e4-489e-404e-841e-c9bbd72d0111}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {847f379b-0ddb-4308-a125-44b06cceb0c0}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {af24e503-88ef-4f50-95c1-1d393388f2d4}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8, !- Name - , !- Default Construction Set Name - {01dc8eb4-a4fa-4aaf-8d75-b7cfd75648a4}, !- Default Schedule Set Name - {b7fe6f07-3ac4-4ca1-9186-5c7889d7b3da}, !- Group Rendering Name - {6c78e848-e562-4461-b538-4e3e3c4e848c}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - PrintRoom; !- Standards Space Type - -OS:Rendering:Color, - {b7fe6f07-3ac4-4ca1-9186-5c7889d7b3da}, !- Handle - Rendering Color 25, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {01dc8eb4-a4fa-4aaf-8d75-b7cfd75648a4}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {abbc193f-2c53-49ff-8e03-589edefce026}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {c7396387-ee02-4cbd-bb73-db5af92230bf}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Lights, !- Name - {abbc193f-2c53-49ff-8e03-589edefce026}, !- Lights Definition Name - {af24e503-88ef-4f50-95c1-1d393388f2d4}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {6c78e848-e562-4461-b538-4e3e3c4e848c}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {4cbb660a-8380-44eb-bc35-245838f929e8}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {89b76b4c-73be-47ed-9bf0-d29a5d09beee}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 People, !- Name - {4cbb660a-8380-44eb-bc35-245838f929e8}, !- People Definition Name - {af24e503-88ef-4f50-95c1-1d393388f2d4}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {68e0ada3-23ed-42e8-881a-ad68ae78ba59}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Infiltration, !- Name - {af24e503-88ef-4f50-95c1-1d393388f2d4}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {cd6a7fd7-b08c-4cbb-9ce5-8ddc886a6124}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 30.0313100626201, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {47ea6833-7452-423c-b11a-cdcdc6e894f7}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Electric Equipment, !- Name - {cd6a7fd7-b08c-4cbb-9ce5-8ddc886a6124}, !- Electric Equipment Definition Name - {af24e503-88ef-4f50-95c1-1d393388f2d4}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {9a24efdb-aaf9-4caf-8ef9-e063f557395c}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8, !- Name - , !- Default Construction Set Name - {e66e0cc6-efb5-4211-818f-1431a0e70233}, !- Default Schedule Set Name - {719a1449-7853-4161-927b-bdb7f01806ed}, !- Group Rendering Name - {1aeb672d-5c17-4118-b3f0-dfbc58007e1f}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Restroom; !- Standards Space Type - -OS:Rendering:Color, - {719a1449-7853-4161-927b-bdb7f01806ed}, !- Handle - Rendering Color 26, !- Name - 169, !- Rendering Red Value - 169, !- Rendering Green Value - 31; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {e66e0cc6-efb5-4211-818f-1431a0e70233}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {d607f8dd-35e4-4a28-bcbe-31e09c118ae0}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 8.71876743753488, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {369dc730-3d03-40c8-8ea1-7783c58a58ef}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Lights, !- Name - {d607f8dd-35e4-4a28-bcbe-31e09c118ae0}, !- Lights Definition Name - {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {1aeb672d-5c17-4118-b3f0-dfbc58007e1f}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.0048768, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {8e492d6d-50ee-4026-a23a-6327d28aa1a3}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {de991af8-6b18-4490-9be9-307feba43cd2}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 People, !- Name - {8e492d6d-50ee-4026-a23a-6327d28aa1a3}, !- People Definition Name - {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {efad6973-728f-404e-84ce-bf89300a55cd}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Infiltration, !- Name - {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {c817a3b9-a026-4a06-82cf-32d30b4ef116}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 0.753473729169681, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {36815876-83bd-4fa7-ad65-9cfc31a60c5d}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Electric Equipment, !- Name - {c817a3b9-a026-4a06-82cf-32d30b4ef116}, !- Electric Equipment Definition Name - {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {ec97771e-4971-46b0-91e9-3785d44f364f}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {6cfd0d19-c82c-444b-b844-b898e9ccb38b}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8, !- Name - , !- Default Construction Set Name - {1d7040c9-cc51-49e9-bced-99919b77079e}, !- Default Schedule Set Name - {6f557e2a-06b2-4e96-bd62-f7b1f6d0b22c}, !- Group Rendering Name - {06eb26bf-daae-4d7b-802f-f14f4973bffc}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Stair; !- Standards Space Type - -OS:Rendering:Color, - {6f557e2a-06b2-4e96-bd62-f7b1f6d0b22c}, !- Handle - Rendering Color 27, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {1d7040c9-cc51-49e9-bced-99919b77079e}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - , !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {2783b7ad-e79e-4709-93a0-76d9b15480cb}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {086e0aa7-9716-40a1-ad9a-9e539b32999b}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Lights, !- Name - {2783b7ad-e79e-4709-93a0-76d9b15480cb}, !- Lights Definition Name - {6cfd0d19-c82c-444b-b844-b898e9ccb38b}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {06eb26bf-daae-4d7b-802f-f14f4973bffc}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:SpaceInfiltration:DesignFlowRate, - {2584ae7a-711d-473c-96df-a3bb8f824179}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Infiltration, !- Name - {6cfd0d19-c82c-444b-b844-b898e9ccb38b}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ThermostatSetpoint:DualSetpoint, - {e23342a6-14bf-4244-a12e-b8f3f6c04563}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {d0c52a2e-468a-4dde-bcb0-4952606e371d}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8, !- Name - , !- Default Construction Set Name - {67b9c134-6af2-4034-8be9-99c918290f72}, !- Default Schedule Set Name - {e5e5daee-9c0f-481c-8a95-52831d130704}, !- Group Rendering Name - {891b5948-4e38-4554-a2f6-43f94ec5ae02}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Storage; !- Standards Space Type - -OS:Rendering:Color, - {e5e5daee-9c0f-481c-8a95-52831d130704}, !- Handle - Rendering Color 28, !- Name - 120, !- Rendering Red Value - 149, !- Rendering Green Value - 230; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {67b9c134-6af2-4034-8be9-99c918290f72}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - , !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {a3530ea6-39e7-4538-9866-287cb9025bf1}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 7.750015500031, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {f096f7ac-09c0-4f85-8905-690dca9182e1}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Lights, !- Name - {a3530ea6-39e7-4538-9866-287cb9025bf1}, !- Lights Definition Name - {d0c52a2e-468a-4dde-bcb0-4952606e371d}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {891b5948-4e38-4554-a2f6-43f94ec5ae02}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:SpaceInfiltration:DesignFlowRate, - {a7ac93a3-1fc2-4daa-82df-d9b5ba2a505e}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Infiltration, !- Name - {d0c52a2e-468a-4dde-bcb0-4952606e371d}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ThermostatSetpoint:DualSetpoint, - {6ae2b2b8-720b-4eaf-8895-80b1f0753cad}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {badb4787-4e03-483b-a5d9-81df836430d2}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8, !- Name - , !- Default Construction Set Name - {6dfba6f2-b96a-492d-b774-c4c720d68d2b}, !- Default Schedule Set Name - {76d6f7c9-7ceb-45e9-8a19-835ab84a952b}, !- Group Rendering Name - {0f1e8aef-c843-4ab6-b548-4c72c5fef55a}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Vending; !- Standards Space Type - -OS:Rendering:Color, - {76d6f7c9-7ceb-45e9-8a19-835ab84a952b}, !- Handle - Rendering Color 29, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {6dfba6f2-b96a-492d-b774-c4c720d68d2b}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {d8b3e03e-2d32-4c27-b42a-dd840c225670}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.84375968751938, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {40216c47-a5be-4b81-9ebe-654734752677}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Lights, !- Name - {d8b3e03e-2d32-4c27-b42a-dd840c225670}, !- Lights Definition Name - {badb4787-4e03-483b-a5d9-81df836430d2}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {0f1e8aef-c843-4ab6-b548-4c72c5fef55a}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {f760ff07-53a3-4162-8890-9d0990ffc17f}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {281a8e29-5aab-4167-83d6-3d9fe2313cd8}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 People, !- Name - {f760ff07-53a3-4162-8890-9d0990ffc17f}, !- People Definition Name - {badb4787-4e03-483b-a5d9-81df836430d2}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {b9453158-d790-4fab-b5ae-0e40fc0505ce}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Infiltration, !- Name - {badb4787-4e03-483b-a5d9-81df836430d2}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {bbac7541-8a86-4bd8-963a-8f9a28f77e61}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 41.4410551043324, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {eddb3a2b-a77b-4511-9cb5-b14f74a42d15}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Electric Equipment, !- Name - {bbac7541-8a86-4bd8-963a-8f9a28f77e61}, !- Electric Equipment Definition Name - {badb4787-4e03-483b-a5d9-81df836430d2}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {6c78a447-312c-4c28-b3aa-6da71f9cf8d3}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {968bcc4c-fd98-438b-b61b-5f81da1d8956}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8, !- Name - , !- Default Construction Set Name - {b9bfde29-315f-4eb8-bf9a-46a78dff4fac}, !- Default Schedule Set Name - {a76d196b-e761-4493-8631-b48b5e34c13c}, !- Group Rendering Name - {243951cc-1d54-4682-88de-92f00facb5d4}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Lg Office; !- Standards Space Type - -OS:Rendering:Color, - {a76d196b-e761-4493-8631-b48b5e34c13c}, !- Handle - Rendering Color 30, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {b9bfde29-315f-4eb8-bf9a-46a78dff4fac}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {ee654552-7290-4128-a647-073eff68ebb6}, !- Number of People Schedule Name - {264acba7-523a-484e-8e51-ae85870ba167}, !- People Activity Level Schedule Name - {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, !- Lighting Schedule Name - {6197bef3-80c6-4043-b8a4-b9cd96652248}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {aa22ac73-8979-4986-b736-acbd0777b85c}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 9.68751937503875, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {b303525b-5f5d-4c4d-b9b8-65dd3f84b284}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Lights, !- Name - {aa22ac73-8979-4986-b736-acbd0777b85c}, !- Lights Definition Name - {968bcc4c-fd98-438b-b61b-5f81da1d8956}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {243951cc-1d54-4682-88de-92f00facb5d4}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {9d7eb10a-2add-4a6a-a03e-056a6b1ae96b}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {03f6b94b-31fa-4bf8-8d80-15daaf19f543}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 People, !- Name - {9d7eb10a-2add-4a6a-a03e-056a6b1ae96b}, !- People Definition Name - {968bcc4c-fd98-438b-b61b-5f81da1d8956}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {78e4e1af-4f99-4e7e-a352-e31956fd36bf}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Infiltration, !- Name - {968bcc4c-fd98-438b-b61b-5f81da1d8956}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {76753a4b-a553-4dd0-802b-90b0d1a1d966}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251412763851, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {2b65f72d-8ebb-4261-9f95-737986f7c212}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Electric Equipment, !- Name - {76753a4b-a553-4dd0-802b-90b0d1a1d966}, !- Electric Equipment Definition Name - {968bcc4c-fd98-438b-b61b-5f81da1d8956}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {2829a6a3-d557-49c2-883a-6f3c5888d3dc}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Thermostat, !- Name - {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, !- Heating Setpoint Temperature Schedule Name - {205b7ba7-36bf-4caa-b304-f7da82550d15}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {e43c6330-829b-403f-9ef7-6b119710b699}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8, !- Name - , !- Default Construction Set Name - {172a4339-c515-4808-9bf0-cd607a6b94aa}, !- Default Schedule Set Name - {d962ce0f-1f09-4520-8086-d251309638ff}, !- Group Rendering Name - {3157c89d-76b6-49f9-b874-c887b361d5a2}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Md Office; !- Standards Space Type - -OS:Rendering:Color, - {d962ce0f-1f09-4520-8086-d251309638ff}, !- Handle - Rendering Color 31, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {172a4339-c515-4808-9bf0-cd607a6b94aa}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {c46af6b1-d997-440b-a480-2b785127791c}, !- Number of People Schedule Name - {4401923f-7369-4704-af97-5f02eccc07c4}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {e7df833e-4db6-469d-ad96-14b52ff0ceef}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {dfa9825e-f1b4-468b-b1e4-5c934b4e8532}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 9.68751937503875, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {3f8dcdaf-a8d7-44f4-9031-8174616a0a98}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Lights, !- Name - {dfa9825e-f1b4-468b-b1e4-5c934b4e8532}, !- Lights Definition Name - {e43c6330-829b-403f-9ef7-6b119710b699}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {3157c89d-76b6-49f9-b874-c887b361d5a2}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {795edcf3-25aa-491d-a678-58d2ca199b9b}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {3c49975f-c212-45d2-acc5-def109da8abd}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 People, !- Name - {795edcf3-25aa-491d-a678-58d2ca199b9b}, !- People Definition Name - {e43c6330-829b-403f-9ef7-6b119710b699}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {df024ec1-be72-4029-a6ce-a7a769ef9e4d}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Infiltration, !- Name - {e43c6330-829b-403f-9ef7-6b119710b699}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {538b53f1-6409-45f7-aab7-31348cfbeb43}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {d39e66d5-58ca-4811-aff8-b5c8352cd6ce}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Electric Equipment, !- Name - {538b53f1-6409-45f7-aab7-31348cfbeb43}, !- Electric Equipment Definition Name - {e43c6330-829b-403f-9ef7-6b119710b699}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {125be356-b9df-4681-bbaa-d4c8cacde878}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8, !- Name - , !- Default Construction Set Name - {6784963e-ba4d-4175-87dd-b5831f929d87}, !- Default Schedule Set Name - {2fd05332-007b-4350-8fd3-4733ddca3f69}, !- Group Rendering Name - {22c007c1-ce62-40f2-8ab0-14c6a644baf2}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Sm Office; !- Standards Space Type - -OS:Rendering:Color, - {2fd05332-007b-4350-8fd3-4733ddca3f69}, !- Handle - Rendering Color 32, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {6784963e-ba4d-4175-87dd-b5831f929d87}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {7db91015-b01f-42c8-b02c-a13d4ed39198}, !- Number of People Schedule Name - {67a55331-2096-4c9b-981a-b63f113d0dd9}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {a51b8fe3-0466-410b-a880-21be07500a52}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {cb7cb752-a33a-400e-97f3-836bf023796e}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {c5b24316-59b0-434d-bbd1-d9024a57a7f8}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 9.68751937503875, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {ee01b7ab-7d60-4088-8e4b-98136df7f22f}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Lights, !- Name - {c5b24316-59b0-434d-bbd1-d9024a57a7f8}, !- Lights Definition Name - {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {22c007c1-ce62-40f2-8ab0-14c6a644baf2}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} - , !- Outdoor Air Flow per Floor Area {m3/s-m2} - , !- Outdoor Air Flow Rate {m3/s} - , !- Outdoor Air Flow Air Changes per Hour {1/hr} - ; !- Outdoor Air Flow Rate Fraction Schedule Name - -OS:People:Definition, - {c97216c8-66f4-458c-95f4-2ede85764002}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {adf7594e-c7bc-44e3-8611-369b76c12e69}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 People, !- Name - {c97216c8-66f4-458c-95f4-2ede85764002}, !- People Definition Name - {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {181313d1-1146-4ec1-a3a2-fbbeceebc667}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Infiltration, !- Name - {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {f65d6b4d-82ed-4ebf-bc2d-60f944322d6e}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {b623d4f8-3118-49ac-bc0d-3c98d880b97c}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Electric Equipment, !- Name - {f65d6b4d-82ed-4ebf-bc2d-60f944322d6e}, !- Electric Equipment Definition Name - {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {7d3d60df-38bd-402a-8cc6-cb780862d808}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Thermostat, !- Name - {a8fc5971-56bf-485f-a8b6-fc00357a220a}, !- Heating Setpoint Temperature Schedule Name - {8334d03b-d787-4c01-a860-2e97c980572e}; !- Cooling Setpoint Temperature Schedule Name - -OS:DefaultConstructionSet, - {4526526b-2bc4-45b3-b597-da3d92ad09a1}, !- Handle - 189.1-2009 - CZ1 - Office, !- Name - {94698301-6b84-4a6f-8b78-75bca600fb17}, !- Default Exterior Surface Constructions Name - {30976b66-935b-4753-a4c5-4dde3dad9985}, !- Default Interior Surface Constructions Name - {a0baf7b0-7330-421a-9c8c-7addd1712d20}, !- Default Ground Contact Surface Constructions Name - {8c8dde84-fcf4-4c1e-ace0-a8bff3aee1ab}, !- Default Exterior SubSurface Constructions Name - {af21604d-d2d4-48d6-ad7c-2a2dbef9e849}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name - -OS:DefaultSurfaceConstructions, - {94698301-6b84-4a6f-8b78-75bca600fb17}, !- Handle - Default Surface Constructions 1, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {c79253de-386e-46f7-8631-b7bc0fd326fd}, !- Wall Construction Name - {94f9c7d5-7c2c-4130-9083-b2afb613c345}; !- Roof Ceiling Construction Name - -OS:Construction, - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Handle - ExtSlabCarpet 4in ClimateZone 1-8, !- Name - {46dc58c7-b8ea-415a-8606-35a0b11fe039}, !- Surface Rendering Name - {b0084fcb-96e4-4ea6-8b82-68ce2789bc5d}, !- Layer 1 - {778222fb-2d70-4bd3-87aa-e0e7025f46d9}; !- Layer 2 - -OS:StandardsInformation:Construction, - {be48e1b7-5a23-4b52-b581-d47874f332d0}, !- Handle - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Construction Name - ExteriorFloor, !- Intended Surface Type - ; !- Standards Construction Type - -OS:Material, - {b0084fcb-96e4-4ea6-8b82-68ce2789bc5d}, !- Handle - MAT-CC05 4 HW CONCRETE, !- Name - Rough, !- Roughness - 0.1016, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.85, !- Solar Absorptance - 0.85; !- Visible Absorptance - -OS:Material:NoMass, - {778222fb-2d70-4bd3-87aa-e0e7025f46d9}, !- Handle - CP02 CARPET PAD, !- Name - Smooth, !- Roughness - 0.1, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.8, !- Solar Absorptance - 0.8; !- Visible Absorptance - -OS:Construction, - {c79253de-386e-46f7-8631-b7bc0fd326fd}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1, !- Name - {636bc1bd-3423-4cbd-a7ac-cd596f301582}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {35df83f0-9c9a-4bd0-867b-e4f56f2d21e0}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {c35bdbe1-9364-40c4-a088-3593de04f1fd}, !- Handle - {c79253de-386e-46f7-8631-b7bc0fd326fd}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Handle - 1IN Stucco, !- Name - Smooth, !- Roughness - 0.0253, !- Thickness {m} - 0.691799999999999, !- Conductivity {W/m-K} - 1858, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.92, !- Solar Absorptance - 0.92; !- Visible Absorptance - -OS:Material, - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Handle - 8IN Concrete HW, !- Name - MediumRough, !- Roughness - 0.2033, !- Thickness {m} - 1.72959999999999, !- Conductivity {W/m-K} - 2242.99999999999, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.65, !- Solar Absorptance - 0.65; !- Visible Absorptance - -OS:Material, - {35df83f0-9c9a-4bd0-867b-e4f56f2d21e0}, !- Handle - Wall Insulation [31], !- Name - MediumRough, !- Roughness - 0.0337000000000001, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Material, - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}, !- Handle - 1/2IN Gypsum, !- Name - Smooth, !- Roughness - 0.0127, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 784.9, !- Density {kg/m3} - 830.000000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.4, !- Solar Absorptance - 0.4; !- Visible Absorptance - -OS:Construction, - {94f9c7d5-7c2c-4130-9083-b2afb613c345}, !- Handle - ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1, !- Name - {71ceef6d-12d0-4e82-89ca-e3101fac6664}, !- Surface Rendering Name - {6710a532-69d6-4fff-84fd-c78074630b20}, !- Layer 1 - {87585ab0-524e-4577-85fa-ca9d328a544b}, !- Layer 2 - {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 - -OS:StandardsInformation:Construction, - {8077a8bc-469c-4708-9d1e-1a587be91ef0}, !- Handle - {94f9c7d5-7c2c-4130-9083-b2afb613c345}, !- Construction Name - ExteriorRoof, !- Intended Surface Type - IEAD; !- Standards Construction Type - -OS:Material, - {6710a532-69d6-4fff-84fd-c78074630b20}, !- Handle - Roof Membrane, !- Name - VeryRough, !- Roughness - 0.0095, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 1121.29, !- Density {kg/m3} - 1460, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {87585ab0-524e-4577-85fa-ca9d328a544b}, !- Handle - Roof Insulation [18], !- Name - MediumRough, !- Roughness - 0.1693, !- Thickness {m} - 0.049, !- Conductivity {W/m-K} - 265, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}, !- Handle - Metal Decking, !- Name - MediumSmooth, !- Roughness - 0.0015, !- Thickness {m} - 45.006, !- Conductivity {W/m-K} - 7680, !- Density {kg/m3} - 418.4, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.6, !- Solar Absorptance - 0.6; !- Visible Absorptance - -OS:DefaultSurfaceConstructions, - {30976b66-935b-4753-a4c5-4dde3dad9985}, !- Handle - Default Surface Constructions 2, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:Construction, - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Handle - Interior Floor, !- Name - {04a70558-9b0a-4809-8c15-d7f1882136f8}, !- Surface Rendering Name - {9732ca82-5b07-4b63-b379-a76d13f9d0d2}, !- Layer 1 - {c7326da9-9b42-4f08-b9c2-710e29f1df68}, !- Layer 2 - {5b28cd98-6ada-46e3-ab5c-8ce18c82e2e4}; !- Layer 3 - -OS:StandardsInformation:Construction, - {663cbab6-e62e-4117-aefb-5a2c9b9cd1b3}, !- Handle - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Construction Name - InteriorFloor, !- Intended Surface Type - ; !- Standards Construction Type - -OS:Material, - {9732ca82-5b07-4b63-b379-a76d13f9d0d2}, !- Handle - F16 Acoustic tile, !- Name - MediumSmooth, !- Roughness - 0.0191, !- Thickness {m} - 0.06, !- Conductivity {W/m-K} - 368, !- Density {kg/m3} - 590.000000000002, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.3, !- Solar Absorptance - 0.3; !- Visible Absorptance - -OS:Material:AirGap, - {c7326da9-9b42-4f08-b9c2-710e29f1df68}, !- Handle - F05 Ceiling air space resistance, !- Name - 0.18; !- Thermal Resistance {m2-K/W} - -OS:Material, - {5b28cd98-6ada-46e3-ab5c-8ce18c82e2e4}, !- Handle - M11 100mm lightweight concrete, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 0.53, !- Conductivity {W/m-K} - 1280, !- Density {kg/m3} - 840.000000000002, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Construction, - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Handle - Interior Wall, !- Name - {24055de0-4136-450a-bc8d-d8ee32c93212}, !- Surface Rendering Name - {2dde63ec-8c12-47e9-a694-a5c55907b2a7}, !- Layer 1 - {205d1797-4786-41aa-bb49-c62de03322d9}, !- Layer 2 - {2dde63ec-8c12-47e9-a694-a5c55907b2a7}; !- Layer 3 - -OS:StandardsInformation:Construction, - {bf9c6bdf-1d79-4160-843a-67a65bd63099}, !- Handle - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Construction Name - InteriorWall, !- Intended Surface Type - ; !- Standards Construction Type - -OS:Material, - {2dde63ec-8c12-47e9-a694-a5c55907b2a7}, !- Handle - G01a 19mm gypsum board, !- Name - MediumSmooth, !- Roughness - 0.019, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.4, !- Solar Absorptance - 0.4; !- Visible Absorptance - -OS:Material:AirGap, - {205d1797-4786-41aa-bb49-c62de03322d9}, !- Handle - F04 Wall air space resistance, !- Name - 0.15; !- Thermal Resistance {m2-K/W} - -OS:Construction, - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}, !- Handle - Interior Ceiling, !- Name - {778e8a0a-a11f-4cdc-b209-ca9fa58a7fd7}, !- Surface Rendering Name - {5b28cd98-6ada-46e3-ab5c-8ce18c82e2e4}, !- Layer 1 - {c7326da9-9b42-4f08-b9c2-710e29f1df68}, !- Layer 2 - {9732ca82-5b07-4b63-b379-a76d13f9d0d2}; !- Layer 3 - -OS:StandardsInformation:Construction, - {ebe3b12b-5ab0-4ea3-a460-6d15ad1d838c}, !- Handle - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}, !- Construction Name - InteriorCeiling, !- Intended Surface Type - ; !- Standards Construction Type - -OS:DefaultSurfaceConstructions, - {a0baf7b0-7330-421a-9c8c-7addd1712d20}, !- Handle - Default Surface Constructions 3, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name - -OS:DefaultSubSurfaceConstructions, - {8c8dde84-fcf4-4c1e-ace0-a8bff3aee1ab}, !- Handle - Default Sub Surface Constructions 1, !- Name - {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Fixed Window Construction Name - {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name - -OS:Construction, - {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 1, !- Name - {c2c680d2-f325-40ed-95af-d91b806f1ec6}, !- Surface Rendering Name - {7504c39d-35b9-46a8-af6b-598ea9efbc00}; !- Layer 1 - -OS:StandardsInformation:Construction, - {2f79b030-385e-4a8e-9611-a6086da78f3b}, !- Handle - {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type - -OS:WindowMaterial:Glazing, - {7504c39d-35b9-46a8-af6b-598ea9efbc00}, !- Handle - Theoretical Glass [167], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.2374, !- Solar Transmittance at Normal Incidence - 0.7126, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.2512, !- Visible Transmittance at Normal Incidence - 0.6988, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.985, !- Front Side Infrared Hemispherical Emissivity - 0.985, !- Back Side Infrared Hemispherical Emissivity - 2.1073, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing - -OS:Construction, - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Handle - Exterior Door, !- Name - {e86c4cfc-a78a-4674-ba86-da0778391d75}, !- Surface Rendering Name - {c6e9c62f-1f07-4a3e-9b2c-2831b69154d4}, !- Layer 1 - {ae918277-1c95-4bfe-88be-0a83ad1a7f17}; !- Layer 2 - -OS:StandardsInformation:Construction, - {8360869b-2b70-474f-bade-2c09b27cfba6}, !- Handle - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Construction Name - ExteriorDoor, !- Intended Surface Type - ; !- Standards Construction Type - -OS:Material, - {c6e9c62f-1f07-4a3e-9b2c-2831b69154d4}, !- Handle - F08 Metal surface, !- Name - Smooth, !- Roughness - 0.0008, !- Thickness {m} - 45.2800000000001, !- Conductivity {W/m-K} - 7823.99999999999, !- Density {kg/m3} - 500, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {ae918277-1c95-4bfe-88be-0a83ad1a7f17}, !- Handle - I01 25mm insulation board, !- Name - MediumRough, !- Roughness - 0.0254, !- Thickness {m} - 0.03, !- Conductivity {W/m-K} - 43, !- Density {kg/m3} - 1210, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.6, !- Solar Absorptance - 0.6; !- Visible Absorptance - -OS:Construction, - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Handle - Interior Window, !- Name - {17a12f4b-94a3-4b11-aee4-8fdfaca5c4df}, !- Surface Rendering Name - {572356bb-0c24-49d0-b480-38deaae93b50}; !- Layer 1 - -OS:StandardsInformation:Construction, - {4fba2562-eb53-42df-a812-1a96a11e00db}, !- Handle - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Construction Name - InteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type - -OS:WindowMaterial:Glazing, - {572356bb-0c24-49d0-b480-38deaae93b50}, !- Handle - Clear 3mm, !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.837, !- Solar Transmittance at Normal Incidence - 0.075, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.898, !- Visible Transmittance at Normal Incidence - 0.081, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.84, !- Front Side Infrared Hemispherical Emissivity - 0.84, !- Back Side Infrared Hemispherical Emissivity - 0.9, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing - -OS:DefaultSubSurfaceConstructions, - {af21604d-d2d4-48d6-ad7c-2a2dbef9e849}, !- Handle - Default Sub Surface Constructions 2, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - , !- Tubular Daylight Dome Construction Name - ; !- Tubular Daylight Diffuser Construction Name - -OS:Construction, - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Handle - Interior Door, !- Name - {ccf8d0cb-0b4e-4bde-b89e-93647118a409}, !- Surface Rendering Name - {ae50953e-1941-4cdc-9cd9-2741ffa65317}; !- Layer 1 - -OS:StandardsInformation:Construction, - {4762d527-aeec-484d-9813-4b846d1e2743}, !- Handle - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Construction Name - InteriorDoor, !- Intended Surface Type - ; !- Standards Construction Type - -OS:Material, - {ae50953e-1941-4cdc-9cd9-2741ffa65317}, !- Handle - G05 25mm wood, !- Name - MediumSmooth, !- Roughness - 0.0254, !- Thickness {m} - 0.15, !- Conductivity {W/m-K} - 608, !- Density {kg/m3} - 1630, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Construction, - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Handle - Interior Partition, !- Name - {62e34ae8-ba70-4da1-925b-57bf2c7ef24b}, !- Surface Rendering Name - {ae50953e-1941-4cdc-9cd9-2741ffa65317}; !- Layer 1 - -OS:StandardsInformation:Construction, - {bbf8ba28-8bef-42c1-b5d6-7469584234ea}, !- Handle - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Construction Name - InteriorPartition, !- Intended Surface Type - ; !- Standards Construction Type - -OS:DefaultConstructionSet, - {687d05db-8053-4a94-b114-53e0716a9896}, !- Handle - 189.1-2009 - CZ2 - Office, !- Name - {8edba1bd-b329-4c83-a9b8-09990e95b65e}, !- Default Exterior Surface Constructions Name - {e18c1749-b591-41fb-9e64-177679114054}, !- Default Interior Surface Constructions Name - {69098a8f-01d4-41f8-97e8-f3616bf95c30}, !- Default Ground Contact Surface Constructions Name - {26c0a2ac-6869-41a8-85e0-493990988654}, !- Default Exterior SubSurface Constructions Name - {31e1c75d-6ff4-480b-8189-458ca9a5f35c}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name - -OS:DefaultSurfaceConstructions, - {8edba1bd-b329-4c83-a9b8-09990e95b65e}, !- Handle - Default Surface Constructions 4, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {99407b2e-49f5-4dd2-a138-e5f57ad89854}, !- Wall Construction Name - {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name - -OS:Construction, - {99407b2e-49f5-4dd2-a138-e5f57ad89854}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2, !- Name - {d9de7cbd-050f-4e61-8f9b-075aa1df65bb}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {9aee91bc-9ebe-405c-8a50-5030bc542822}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {85ebc66f-75e7-41c3-b466-fe2b2df44e89}, !- Handle - {99407b2e-49f5-4dd2-a138-e5f57ad89854}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {9aee91bc-9ebe-405c-8a50-5030bc542822}, !- Handle - Wall Insulation [35], !- Name - MediumRough, !- Roughness - 0.0452, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Construction, - {6e592600-ac13-4db1-bf26-a5a95984aa4d}, !- Handle - ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5, !- Name - {1931b433-ad5c-43ae-8248-796522c09dae}, !- Surface Rendering Name - {6710a532-69d6-4fff-84fd-c78074630b20}, !- Layer 1 - {5dcafaa7-3d40-49db-9ee5-cc3b2bb2278c}, !- Layer 2 - {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 - -OS:StandardsInformation:Construction, - {27c0d4ca-5cef-498b-bf78-a2e0e38f4e08}, !- Handle - {6e592600-ac13-4db1-bf26-a5a95984aa4d}, !- Construction Name - ExteriorRoof, !- Intended Surface Type - IEAD; !- Standards Construction Type - -OS:Material, - {5dcafaa7-3d40-49db-9ee5-cc3b2bb2278c}, !- Handle - Roof Insulation [21], !- Name - MediumRough, !- Roughness - 0.2105, !- Thickness {m} - 0.049, !- Conductivity {W/m-K} - 265, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:DefaultSurfaceConstructions, - {e18c1749-b591-41fb-9e64-177679114054}, !- Handle - Default Surface Constructions 5, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {69098a8f-01d4-41f8-97e8-f3616bf95c30}, !- Handle - Default Surface Constructions 6, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name - -OS:DefaultSubSurfaceConstructions, - {26c0a2ac-6869-41a8-85e0-493990988654}, !- Handle - Default Sub Surface Constructions 3, !- Name - {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Fixed Window Construction Name - {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name - -OS:Construction, - {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 2, !- Name - {fa64966f-7624-43ea-a584-54dd0654c4fa}, !- Surface Rendering Name - {0df6dfac-0759-43e9-8314-9539c41eefda}; !- Layer 1 - -OS:StandardsInformation:Construction, - {56d08b42-76df-4617-82fc-10413928e30e}, !- Handle - {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type - -OS:WindowMaterial:Glazing, - {0df6dfac-0759-43e9-8314-9539c41eefda}, !- Handle - Theoretical Glass [197], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.2349, !- Solar Transmittance at Normal Incidence - 0.7151, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.2512, !- Visible Transmittance at Normal Incidence - 0.6988, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.9, !- Front Side Infrared Hemispherical Emissivity - 0.9, !- Back Side Infrared Hemispherical Emissivity - 0.0415, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing - -OS:DefaultSubSurfaceConstructions, - {31e1c75d-6ff4-480b-8189-458ca9a5f35c}, !- Handle - Default Sub Surface Constructions 4, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - , !- Tubular Daylight Dome Construction Name - ; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultConstructionSet, - {3506f604-9b28-4c01-8fc6-87fabe876a1b}, !- Handle - 189.1-2009 - CZ3 - Office, !- Name - {79cccbfe-3f49-4acb-bdf2-e7139171fa8f}, !- Default Exterior Surface Constructions Name - {d2c070d0-e055-4eab-91fe-70399799fd2c}, !- Default Interior Surface Constructions Name - {8e86a490-adb3-49ef-8ad5-5a0e28d39cf9}, !- Default Ground Contact Surface Constructions Name - {8e17c840-44c6-43f4-81f8-12f4bcac2369}, !- Default Exterior SubSurface Constructions Name - {2e3cc8bd-5113-4870-b568-af600af67faa}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name - -OS:DefaultSurfaceConstructions, - {79cccbfe-3f49-4acb-bdf2-e7139171fa8f}, !- Handle - Default Surface Constructions 7, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {dd95d8d1-cb40-4462-b3ef-6d971a9babc7}, !- Wall Construction Name - {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name - -OS:Construction, - {dd95d8d1-cb40-4462-b3ef-6d971a9babc7}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3, !- Name - {460f8255-5f86-432f-a773-d413b7d383bc}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {0237a258-22d1-4ebf-9808-109d59b975c9}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {467ca491-6c1d-4847-a1dd-a5fe4331f049}, !- Handle - {dd95d8d1-cb40-4462-b3ef-6d971a9babc7}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {0237a258-22d1-4ebf-9808-109d59b975c9}, !- Handle - Wall Insulation [36], !- Name - MediumRough, !- Roughness - 0.0565999999999999, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:DefaultSurfaceConstructions, - {d2c070d0-e055-4eab-91fe-70399799fd2c}, !- Handle - Default Surface Constructions 8, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {8e86a490-adb3-49ef-8ad5-5a0e28d39cf9}, !- Handle - Default Surface Constructions 9, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name - -OS:DefaultSubSurfaceConstructions, - {8e17c840-44c6-43f4-81f8-12f4bcac2369}, !- Handle - Default Sub Surface Constructions 5, !- Name - {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Fixed Window Construction Name - {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name - -OS:Construction, - {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 3, !- Name - {8f9423e5-3ed6-4351-be9e-dbbdd330b500}, !- Surface Rendering Name - {64d8cad3-3a12-4843-92ce-a114da8ac461}; !- Layer 1 - -OS:StandardsInformation:Construction, - {61f36c91-69cb-4354-9f7e-cfa1cb96b197}, !- Handle - {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type - -OS:WindowMaterial:Glazing, - {64d8cad3-3a12-4843-92ce-a114da8ac461}, !- Handle - Theoretical Glass [202], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.2325, !- Solar Transmittance at Normal Incidence - 0.7175, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.3192, !- Visible Transmittance at Normal Incidence - 0.6308, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.9, !- Front Side Infrared Hemispherical Emissivity - 0.9, !- Back Side Infrared Hemispherical Emissivity - 0.0192, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing - -OS:DefaultSubSurfaceConstructions, - {2e3cc8bd-5113-4870-b568-af600af67faa}, !- Handle - Default Sub Surface Constructions 6, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - , !- Tubular Daylight Dome Construction Name - ; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultConstructionSet, - {b7cdc63e-a919-41dd-86e1-dece88dfdb28}, !- Handle - 189.1-2009 - CZ4 - Office, !- Name - {3ef37f21-bbe3-4f3b-9b65-3ad9770f3a44}, !- Default Exterior Surface Constructions Name - {92813ed9-8be8-4db7-93eb-d9414bb5857c}, !- Default Interior Surface Constructions Name - {a1c91290-96c5-4ee4-988a-5b2845afb68b}, !- Default Ground Contact Surface Constructions Name - {8236d225-796d-412a-a2e2-1295101f741d}, !- Default Exterior SubSurface Constructions Name - {a9819d00-d437-4adf-b7bd-7824978b9e03}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name - -OS:DefaultSurfaceConstructions, - {3ef37f21-bbe3-4f3b-9b65-3ad9770f3a44}, !- Handle - Default Surface Constructions 10, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {b23633e3-75a0-470c-b30f-e321d99e7ed1}, !- Wall Construction Name - {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name - -OS:Construction, - {b23633e3-75a0-470c-b30f-e321d99e7ed1}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4, !- Name - {584c45ae-4787-45d1-9dd4-f33b0f8347f9}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {b60a50b3-1951-483d-a113-6fc416753502}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {3f492503-4801-4755-8e33-6b43c94c88c0}, !- Handle - {b23633e3-75a0-470c-b30f-e321d99e7ed1}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {b60a50b3-1951-483d-a113-6fc416753502}, !- Handle - Wall Insulation [37], !- Name - MediumRough, !- Roughness - 0.0680999999999999, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:DefaultSurfaceConstructions, - {92813ed9-8be8-4db7-93eb-d9414bb5857c}, !- Handle - Default Surface Constructions 11, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {a1c91290-96c5-4ee4-988a-5b2845afb68b}, !- Handle - Default Surface Constructions 12, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name - -OS:DefaultSubSurfaceConstructions, - {8236d225-796d-412a-a2e2-1295101f741d}, !- Handle - Default Sub Surface Constructions 7, !- Name - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Fixed Window Construction Name - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name - -OS:Construction, - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5, !- Name - {d0c8c19d-30d5-48bd-a3a0-3c16ccc1303b}, !- Surface Rendering Name - {9914bb36-b162-493f-a77d-317b37a6dfe0}; !- Layer 1 - -OS:StandardsInformation:Construction, - {d55825e5-87d9-473f-9fe3-b54e798b73b2}, !- Handle - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type - -OS:WindowMaterial:Glazing, - {9914bb36-b162-493f-a77d-317b37a6dfe0}, !- Handle - Theoretical Glass [207], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.3311, !- Solar Transmittance at Normal Incidence - 0.6189, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.44, !- Visible Transmittance at Normal Incidence - 0.51, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.9, !- Front Side Infrared Hemispherical Emissivity - 0.9, !- Back Side Infrared Hemispherical Emissivity - 0.0133, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing - -OS:DefaultSubSurfaceConstructions, - {a9819d00-d437-4adf-b7bd-7824978b9e03}, !- Handle - Default Sub Surface Constructions 8, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - , !- Tubular Daylight Dome Construction Name - ; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultConstructionSet, - {58749418-1c83-496b-94e6-80aa0fd3ac39}, !- Handle - 189.1-2009 - CZ5 - Office, !- Name - {f6881ecb-7aaf-431a-b1d2-61de79238f70}, !- Default Exterior Surface Constructions Name - {d97abec2-033d-43ce-a763-4ed6937bae4d}, !- Default Interior Surface Constructions Name - {d684c8db-7bf4-4966-b9eb-ea0c2afdf86b}, !- Default Ground Contact Surface Constructions Name - {bb191ec6-d6ab-407d-9fb2-31dc2ae3bb75}, !- Default Exterior SubSurface Constructions Name - {b6d85e89-1972-4d08-8dd6-1ad51c17f701}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name - -OS:DefaultSurfaceConstructions, - {f6881ecb-7aaf-431a-b1d2-61de79238f70}, !- Handle - Default Surface Constructions 13, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {69871c9e-7438-4e91-92bd-66fabb7f9850}, !- Wall Construction Name - {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name - -OS:Construction, - {69871c9e-7438-4e91-92bd-66fabb7f9850}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5, !- Name - {7540a07b-c6b7-4faf-a374-fc8ad428bb83}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {0681dbd1-2005-474d-9af1-f3e3c9bdfdd6}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {99c16b51-1376-4d0d-ae82-9abe62b5b9bc}, !- Handle - {69871c9e-7438-4e91-92bd-66fabb7f9850}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {0681dbd1-2005-474d-9af1-f3e3c9bdfdd6}, !- Handle - Wall Insulation [40], !- Name - MediumRough, !- Roughness - 0.0793999999999999, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:DefaultSurfaceConstructions, - {d97abec2-033d-43ce-a763-4ed6937bae4d}, !- Handle - Default Surface Constructions 14, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {d684c8db-7bf4-4966-b9eb-ea0c2afdf86b}, !- Handle - Default Surface Constructions 15, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name - -OS:DefaultSubSurfaceConstructions, - {bb191ec6-d6ab-407d-9fb2-31dc2ae3bb75}, !- Handle - Default Sub Surface Constructions 9, !- Name - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Fixed Window Construction Name - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultSubSurfaceConstructions, - {b6d85e89-1972-4d08-8dd6-1ad51c17f701}, !- Handle - Default Sub Surface Constructions 10, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - , !- Tubular Daylight Dome Construction Name - ; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultConstructionSet, - {7fbfa4b5-c598-498c-9e7e-cc1d23784e59}, !- Handle - 189.1-2009 - CZ6 - Office, !- Name - {f4c2eff4-616f-4e59-a975-63e8f99df809}, !- Default Exterior Surface Constructions Name - {d61c2378-904c-4c76-bac0-dbd9f6c49c7c}, !- Default Interior Surface Constructions Name - {d64e486a-afe2-4d33-9add-91d98c40c1d7}, !- Default Ground Contact Surface Constructions Name - {5897f70f-27c7-4970-9e2c-db9bebccea4e}, !- Default Exterior SubSurface Constructions Name - {ec05d2f3-b3ec-4dfb-820b-5fffaeb8776d}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name - -OS:DefaultSurfaceConstructions, - {f4c2eff4-616f-4e59-a975-63e8f99df809}, !- Handle - Default Surface Constructions 16, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {73014c8f-a248-42b8-886b-3d7b760f079b}, !- Wall Construction Name - {e58f4a9d-2329-4c5d-8385-2f9db5c419bf}; !- Roof Ceiling Construction Name - -OS:Construction, - {73014c8f-a248-42b8-886b-3d7b760f079b}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6, !- Name - {fe59cf72-f9c8-46a7-8dc4-3896724fe5d7}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {033ceb3a-fd60-4fdb-a0f3-c9fa51ea2e6e}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {7eeba261-f29b-4f29-92ab-43160d53769c}, !- Handle - {73014c8f-a248-42b8-886b-3d7b760f079b}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {033ceb3a-fd60-4fdb-a0f3-c9fa51ea2e6e}, !- Handle - Wall Insulation [42], !- Name - MediumRough, !- Roughness - 0.0913999999999999, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Construction, - {e58f4a9d-2329-4c5d-8385-2f9db5c419bf}, !- Handle - ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6, !- Name - {b4a51fb4-31db-4ab6-b13d-652c879a9a2c}, !- Surface Rendering Name - {97a1b867-7bc8-4285-9ece-5ae126192f3c}, !- Layer 1 - {6073d808-4e57-40c9-919a-2473ff43dfee}, !- Layer 2 - {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 - -OS:StandardsInformation:Construction, - {76a41f7e-250b-4af4-9af6-365bb137bdae}, !- Handle - {e58f4a9d-2329-4c5d-8385-2f9db5c419bf}, !- Construction Name - ExteriorRoof, !- Intended Surface Type - Metal; !- Standards Construction Type - -OS:Material, - {97a1b867-7bc8-4285-9ece-5ae126192f3c}, !- Handle - Metal Roofing, !- Name - MediumSmooth, !- Roughness - 0.0015, !- Thickness {m} - 45.006, !- Conductivity {W/m-K} - 7680, !- Density {kg/m3} - 418.4, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.6, !- Solar Absorptance - 0.6; !- Visible Absorptance - -OS:Material, - {6073d808-4e57-40c9-919a-2473ff43dfee}, !- Handle - Roof Insulation [25], !- Name - MediumRough, !- Roughness - 0.263, !- Thickness {m} - 0.049, !- Conductivity {W/m-K} - 265, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:DefaultSurfaceConstructions, - {d61c2378-904c-4c76-bac0-dbd9f6c49c7c}, !- Handle - Default Surface Constructions 17, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {d64e486a-afe2-4d33-9add-91d98c40c1d7}, !- Handle - Default Surface Constructions 18, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name - -OS:DefaultSubSurfaceConstructions, - {5897f70f-27c7-4970-9e2c-db9bebccea4e}, !- Handle - Default Sub Surface Constructions 11, !- Name - {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Fixed Window Construction Name - {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name - -OS:Construction, - {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 6, !- Name - {50151bcc-32ed-4ff3-8085-9658f2079102}, !- Surface Rendering Name - {49faa92b-2c62-4fe3-87e7-99e278102799}; !- Layer 1 - -OS:StandardsInformation:Construction, - {f1ab38d8-53bd-46fb-87a1-ae1dd7cc8561}, !- Handle - {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type - -OS:WindowMaterial:Glazing, - {49faa92b-2c62-4fe3-87e7-99e278102799}, !- Handle - Theoretical Glass [216], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.3801, !- Solar Transmittance at Normal Incidence - 0.5699, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.5079, !- Visible Transmittance at Normal Incidence - 0.4421, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.9, !- Front Side Infrared Hemispherical Emissivity - 0.9, !- Back Side Infrared Hemispherical Emissivity - 0.0133, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing - -OS:DefaultSubSurfaceConstructions, - {ec05d2f3-b3ec-4dfb-820b-5fffaeb8776d}, !- Handle - Default Sub Surface Constructions 12, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - , !- Tubular Daylight Dome Construction Name - ; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultConstructionSet, - {1cff5d19-5572-4e19-88b4-346c54265f57}, !- Handle - 189.1-2009 - CZ7-8 - Office, !- Name - {6e044d24-cbba-456f-af36-8b86f1508f50}, !- Default Exterior Surface Constructions Name - {e3c760b2-11c7-4984-bdaf-ed3f8f1fbab8}, !- Default Interior Surface Constructions Name - {5a5b254f-3a7d-49cd-8c7b-df8e0f5efded}, !- Default Ground Contact Surface Constructions Name - {c766fd3a-9093-42fa-9514-2c1fa80247f2}, !- Default Exterior SubSurface Constructions Name - {af87ce18-ae87-4260-a697-cd25f4095498}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name - -OS:DefaultSurfaceConstructions, - {6e044d24-cbba-456f-af36-8b86f1508f50}, !- Handle - Default Surface Constructions 19, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {d28d8415-2d7a-4256-be8e-91b455fe8889}, !- Wall Construction Name - {c6bbd742-fc9f-439b-94f4-e8038f26f5bd}; !- Roof Ceiling Construction Name - -OS:Construction, - {d28d8415-2d7a-4256-be8e-91b455fe8889}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8, !- Name - {db7b8f16-f0f4-463e-a33a-c93df442ca33}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {6f104856-6bc7-479e-87b3-44c13f6b441e}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {d740a5ed-3362-4965-952b-69d154d88d11}, !- Handle - {d28d8415-2d7a-4256-be8e-91b455fe8889}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {6f104856-6bc7-479e-87b3-44c13f6b441e}, !- Handle - Wall Insulation [44], !- Name - MediumRough, !- Roughness - 0.1104, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Construction, - {c6bbd742-fc9f-439b-94f4-e8038f26f5bd}, !- Handle - ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8, !- Name - {2582cb70-8314-41a6-ac75-d4fef244dffc}, !- Surface Rendering Name - {6710a532-69d6-4fff-84fd-c78074630b20}, !- Layer 1 - {210f210b-6002-4820-ae10-eb2b372d7687}, !- Layer 2 - {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 - -OS:StandardsInformation:Construction, - {252369f7-3f86-46ff-a0c8-1399371eb759}, !- Handle - {c6bbd742-fc9f-439b-94f4-e8038f26f5bd}, !- Construction Name - ExteriorRoof, !- Intended Surface Type - IEAD; !- Standards Construction Type - -OS:Material, - {210f210b-6002-4820-ae10-eb2b372d7687}, !- Handle - Roof Insulation [26], !- Name - MediumRough, !- Roughness - 0.2941, !- Thickness {m} - 0.049, !- Conductivity {W/m-K} - 265, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:DefaultSurfaceConstructions, - {e3c760b2-11c7-4984-bdaf-ed3f8f1fbab8}, !- Handle - Default Surface Constructions 20, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {5a5b254f-3a7d-49cd-8c7b-df8e0f5efded}, !- Handle - Default Surface Constructions 21, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name - -OS:DefaultSubSurfaceConstructions, - {c766fd3a-9093-42fa-9514-2c1fa80247f2}, !- Handle - Default Sub Surface Constructions 13, !- Name - {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Fixed Window Construction Name - {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name - -OS:Construction, - {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8, !- Name - {b95d9e0a-a5a9-4295-870c-608321ecd650}, !- Surface Rendering Name - {705e5f44-c97a-4686-b0f1-97f4494d238d}; !- Layer 1 - -OS:StandardsInformation:Construction, - {20aa7704-c7fd-4a24-aa3b-7f69c9544b7c}, !- Handle - {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type - -OS:WindowMaterial:Glazing, - {705e5f44-c97a-4686-b0f1-97f4494d238d}, !- Handle - Theoretical Glass [221], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.4296, !- Solar Transmittance at Normal Incidence - 0.5204, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.4503, !- Visible Transmittance at Normal Incidence - 0.4997, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.9, !- Front Side Infrared Hemispherical Emissivity - 0.9, !- Back Side Infrared Hemispherical Emissivity - 0.0089, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing - -OS:DefaultSubSurfaceConstructions, - {af87ce18-ae87-4260-a697-cd25f4095498}, !- Handle - Default Sub Surface Constructions 14, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - , !- Tubular Daylight Dome Construction Name - ; !- Tubular Daylight Diffuser Construction Name - -OS:Material:AirWall, - {8ea9f6e6-0bb1-424a-a9d5-8fb8da2c8afe}, !- Handle - Air Wall Material; !- Name - -OS:Construction, - {7a29ba3c-05e0-4ba6-a7bf-72746f63eedc}, !- Handle - Air Wall, !- Name - {16a7176a-d244-49b5-bec6-6d107e067adf}, !- Surface Rendering Name - {8ea9f6e6-0bb1-424a-a9d5-8fb8da2c8afe}; !- Layer 1 - -OS:Facility, - {50a42c9a-3973-4de3-b7ee-0cd8b0200231}; !- Handle - -OS:Rendering:Color, - {d9de7cbd-050f-4e61-8f9b-075aa1df65bb}, !- Handle - Rendering Color 33, !- Name - 250, !- Rendering Red Value - 235, !- Rendering Green Value - 215; !- Rendering Blue Value - -OS:Rendering:Color, - {62e34ae8-ba70-4da1-925b-57bf2c7ef24b}, !- Handle - Rendering Color 34, !- Name - 255, !- Rendering Red Value - 250, !- Rendering Green Value - 205; !- Rendering Blue Value - -OS:Rendering:Color, - {17a12f4b-94a3-4b11-aee4-8fdfaca5c4df}, !- Handle - Rendering Color 35, !- Name - 47, !- Rendering Red Value - 79, !- Rendering Green Value - 79; !- Rendering Blue Value - -OS:Rendering:Color, - {ccf8d0cb-0b4e-4bde-b89e-93647118a409}, !- Handle - Rendering Color 36, !- Name - 245, !- Rendering Red Value - 255, !- Rendering Green Value - 250; !- Rendering Blue Value - -OS:Rendering:Color, - {e86c4cfc-a78a-4674-ba86-da0778391d75}, !- Handle - Rendering Color 37, !- Name - 85, !- Rendering Red Value - 107, !- Rendering Green Value - 47; !- Rendering Blue Value - -OS:Rendering:Color, - {1931b433-ad5c-43ae-8248-796522c09dae}, !- Handle - Rendering Color 38, !- Name - 50, !- Rendering Red Value - 205, !- Rendering Green Value - 50; !- Rendering Blue Value - -OS:Rendering:Color, - {c2c680d2-f325-40ed-95af-d91b806f1ec6}, !- Handle - Rendering Color 39, !- Name - 0, !- Rendering Red Value - 100, !- Rendering Green Value - 0; !- Rendering Blue Value - -OS:Rendering:Color, - {fa64966f-7624-43ea-a584-54dd0654c4fa}, !- Handle - Rendering Color 40, !- Name - 255, !- Rendering Red Value - 182, !- Rendering Green Value - 193; !- Rendering Blue Value - -OS:Rendering:Color, - {778e8a0a-a11f-4cdc-b209-ca9fa58a7fd7}, !- Handle - Rendering Color 41, !- Name - 178, !- Rendering Red Value - 34, !- Rendering Green Value - 34; !- Rendering Blue Value - -OS:Rendering:Color, - {460f8255-5f86-432f-a773-d413b7d383bc}, !- Handle - Rendering Color 42, !- Name - 248, !- Rendering Red Value - 248, !- Rendering Green Value - 255; !- Rendering Blue Value - -OS:Rendering:Color, - {24055de0-4136-450a-bc8d-d8ee32c93212}, !- Handle - Rendering Color 43, !- Name - 139, !- Rendering Red Value - 0, !- Rendering Green Value - 0; !- Rendering Blue Value - -OS:Rendering:Color, - {8f9423e5-3ed6-4351-be9e-dbbdd330b500}, !- Handle - Rendering Color 44, !- Name - 0, !- Rendering Red Value - 255, !- Rendering Green Value - 255; !- Rendering Blue Value - -OS:Rendering:Color, - {04a70558-9b0a-4809-8c15-d7f1882136f8}, !- Handle - Rendering Color 45, !- Name - 50, !- Rendering Red Value - 205, !- Rendering Green Value - 50; !- Rendering Blue Value - -OS:Rendering:Color, - {584c45ae-4787-45d1-9dd4-f33b0f8347f9}, !- Handle - Rendering Color 46, !- Name - 210, !- Rendering Red Value - 180, !- Rendering Green Value - 140; !- Rendering Blue Value - -OS:Rendering:Color, - {d0c8c19d-30d5-48bd-a3a0-3c16ccc1303b}, !- Handle - Rendering Color 47, !- Name - 250, !- Rendering Red Value - 250, !- Rendering Green Value - 210; !- Rendering Blue Value - -OS:Rendering:Color, - {7540a07b-c6b7-4faf-a374-fc8ad428bb83}, !- Handle - Rendering Color 48, !- Name - 0, !- Rendering Red Value - 206, !- Rendering Green Value - 209; !- Rendering Blue Value - -OS:Rendering:Color, - {636bc1bd-3423-4cbd-a7ac-cd596f301582}, !- Handle - Rendering Color 49, !- Name - 255, !- Rendering Red Value - 255, !- Rendering Green Value - 240; !- Rendering Blue Value - -OS:Rendering:Color, - {fe59cf72-f9c8-46a7-8dc4-3896724fe5d7}, !- Handle - Rendering Color 50, !- Name - 221, !- Rendering Red Value - 160, !- Rendering Green Value - 221; !- Rendering Blue Value - -OS:Rendering:Color, - {46dc58c7-b8ea-415a-8606-35a0b11fe039}, !- Handle - Rendering Color 51, !- Name - 192, !- Rendering Red Value - 192, !- Rendering Green Value - 192; !- Rendering Blue Value - -OS:Rendering:Color, - {b4a51fb4-31db-4ab6-b13d-652c879a9a2c}, !- Handle - Rendering Color 52, !- Name - 245, !- Rendering Red Value - 245, !- Rendering Green Value - 245; !- Rendering Blue Value - -OS:Rendering:Color, - {50151bcc-32ed-4ff3-8085-9658f2079102}, !- Handle - Rendering Color 53, !- Name - 255, !- Rendering Red Value - 228, !- Rendering Green Value - 225; !- Rendering Blue Value - -OS:Rendering:Color, - {db7b8f16-f0f4-463e-a33a-c93df442ca33}, !- Handle - Rendering Color 54, !- Name - 0, !- Rendering Red Value - 0, !- Rendering Green Value - 139; !- Rendering Blue Value - -OS:Rendering:Color, - {2582cb70-8314-41a6-ac75-d4fef244dffc}, !- Handle - Rendering Color 55, !- Name - 32, !- Rendering Red Value - 178, !- Rendering Green Value - 170; !- Rendering Blue Value - -OS:Rendering:Color, - {b95d9e0a-a5a9-4295-870c-608321ecd650}, !- Handle - Rendering Color 56, !- Name - 219, !- Rendering Red Value - 112, !- Rendering Green Value - 147; !- Rendering Blue Value - -OS:Rendering:Color, - {16a7176a-d244-49b5-bec6-6d107e067adf}, !- Handle - Rendering Color 57, !- Name - 165, !- Rendering Red Value - 42, !- Rendering Green Value - 42; !- Rendering Blue Value - -OS:Rendering:Color, - {71ceef6d-12d0-4e82-89ca-e3101fac6664}, !- Handle - Rendering Color 58, !- Name - 0, !- Rendering Red Value - 0, !- Rendering Green Value - 0; !- Rendering Blue Value - -OS:BuildingStory, - {50868583-cd6e-4b33-9980-93aced1f0725}, !- Handle - Building Story 1, !- Name - 0, !- Nominal Z Coordinate {m} - 3.048, !- Nominal Floor to Floor Height {m} - , !- Default Construction Set Name - , !- Default Schedule Set Name - {3382e11a-163a-4157-8831-d7c6831e1559}; !- Group Rendering Name - -OS:Space, - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Handle - Space 101, !- Name - , !- Space Type Name - , !- Default Construction Set Name - , !- Default Schedule Set Name - , !- Direction of Relative North {deg} - 0, !- X Origin {m} - 3.048, !- Y Origin {m} - 0, !- Z Origin {m} - {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name - -OS:Surface, - {34613696-6b52-44f1-a5ff-a36900647fd1}, !- Handle - Surface 1, !- Name - Floor, !- Surface Type - , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name - Ground, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 3.048, 0, 0, !- X,Y,Z Vertex 1 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 0; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {e6da7134-b845-4c2b-92d8-471d959b0232}, !- Handle - Surface 2, !- Name - Wall, !- Surface Type - , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name - Surface, !- Outside Boundary Condition - {002dd6d5-ccf2-4528-bee3-372935270e38}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {8e228e17-f447-4351-8255-68a903116bf5}, !- Handle - Surface 3, !- Name - Wall, !- Surface Type - , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name - Surface, !- Outside Boundary Condition - {0931ca6c-82dd-4ac5-8014-24c0b87d9ba8}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - 3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {5cfd7343-beef-4dd8-96ff-05ad91c84aad}, !- Handle - Surface 4, !- Name - Wall, !- Surface Type - , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 3.048, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {bf033db5-8c2d-4f1b-b467-6f8ae942fd52}, !- Handle - Surface 5, !- Name - Wall, !- Surface Type - , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {2ee589ef-ee4e-4ccf-82dc-5bd481b7f155}, !- Handle - Surface 6, !- Name - RoofCeiling, !- Surface Type - , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, 0, 3.048, !- X,Y,Z Vertex 2 {m} - 0, 0, 3.048, !- X,Y,Z Vertex 3 {m} - 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Space, - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Handle - Space 102, !- Name - , !- Space Type Name - , !- Default Construction Set Name - , !- Default Schedule Set Name - , !- Direction of Relative North {deg} - 6.096, !- X Origin {m} - 0, !- Y Origin {m} - 0, !- Z Origin {m} - {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name - -OS:Surface, - {19d18d73-c9ca-4549-a15e-3a457813fcf2}, !- Handle - Surface 7, !- Name - Floor, !- Surface Type - , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name - Ground, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 3.048, 0, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 3.048, 0; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {b3fe4f2a-ff3a-493e-9743-c7be2c1ce9d2}, !- Handle - Surface 8, !- Name - Wall, !- Surface Type - , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {0931ca6c-82dd-4ac5-8014-24c0b87d9ba8}, !- Handle - Surface 9, !- Name - Wall, !- Surface Type - , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name - Surface, !- Outside Boundary Condition - {8e228e17-f447-4351-8255-68a903116bf5}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -3.048, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} - -3.048, 3.048, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {53f098ba-949b-4003-a566-b63754a87202}, !- Handle - Surface 10, !- Name - Wall, !- Surface Type - , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name - Surface, !- Outside Boundary Condition - {a0c1b5bc-da84-48af-8e48-32fcb79ef150}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 3.048, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 3.048, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {80879f81-820f-4603-b611-b68e1595cb6e}, !- Handle - Surface 11, !- Name - Wall, !- Surface Type - , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {7fab646c-6a8f-452d-8ba0-c4c385d0eb50}, !- Handle - Surface 12, !- Name - RoofCeiling, !- Surface Type - , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 3.048, 3.048, !- X,Y,Z Vertex 2 {m} - -3.048, 3.048, 3.048, !- X,Y,Z Vertex 3 {m} - -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Space, - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Handle - Space 103, !- Name - , !- Space Type Name - , !- Default Construction Set Name - , !- Default Schedule Set Name - , !- Direction of Relative North {deg} - 0, !- X Origin {m} - 6.096, !- Y Origin {m} - 0, !- Z Origin {m} - {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name - -OS:Surface, - {74a5de71-ac42-4838-888e-c4db7769715a}, !- Handle - Surface 13, !- Name - Floor, !- Surface Type - , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name - Ground, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 3.048, 0, 0, !- X,Y,Z Vertex 1 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 0; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {04c217f9-794f-482e-9566-bc9939ac2b67}, !- Handle - Surface 14, !- Name - Wall, !- Surface Type - , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {35cbb3e8-0b70-4fd5-9713-bb391d09a5fc}, !- Handle - Surface 15, !- Name - Wall, !- Surface Type - , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name - Surface, !- Outside Boundary Condition - {2380e7e5-5843-486a-880b-888b9dee3a31}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - 3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {002dd6d5-ccf2-4528-bee3-372935270e38}, !- Handle - Surface 16, !- Name - Wall, !- Surface Type - , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name - Surface, !- Outside Boundary Condition - {e6da7134-b845-4c2b-92d8-471d959b0232}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 3.048, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {29c6e6ba-2a04-4ad6-9f09-69b0692bd305}, !- Handle - Surface 17, !- Name - Wall, !- Surface Type - , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {f7e843c5-68c1-43f0-9204-c49b0f3332a6}, !- Handle - Surface 18, !- Name - RoofCeiling, !- Surface Type - , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, 0, 3.048, !- X,Y,Z Vertex 2 {m} - 0, 0, 3.048, !- X,Y,Z Vertex 3 {m} - 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Space, - {3810e56a-95f5-4687-b896-06caf8120348}, !- Handle - Space 104, !- Name - , !- Space Type Name - , !- Default Construction Set Name - , !- Default Schedule Set Name - , !- Direction of Relative North {deg} - 6.096, !- X Origin {m} - 3.048, !- Y Origin {m} - 0, !- Z Origin {m} - {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name - -OS:Surface, - {81f77032-b16a-42d2-9517-02ae4c166df8}, !- Handle - Surface 19, !- Name - Floor, !- Surface Type - , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name - Ground, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 3.048, 0, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 3.048, 0; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {a0c1b5bc-da84-48af-8e48-32fcb79ef150}, !- Handle - Surface 20, !- Name - Wall, !- Surface Type - , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name - Surface, !- Outside Boundary Condition - {53f098ba-949b-4003-a566-b63754a87202}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {2380e7e5-5843-486a-880b-888b9dee3a31}, !- Handle - Surface 21, !- Name - Wall, !- Surface Type - , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name - Surface, !- Outside Boundary Condition - {35cbb3e8-0b70-4fd5-9713-bb391d09a5fc}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - -3.048, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} - -3.048, 3.048, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {3ce940a4-dffc-4da5-8e17-a47c6fde3c37}, !- Handle - Surface 22, !- Name - Wall, !- Surface Type - , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 3.048, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 3.048, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {5adfa187-cd8e-4214-9ea8-4a4f634cf64c}, !- Handle - Surface 23, !- Name - Wall, !- Surface Type - , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Surface, - {8d537633-3f6b-476a-b746-cea3a8736eed}, !- Handle - Surface 24, !- Name - RoofCeiling, !- Surface Type - , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure - , !- View Factor to Ground - , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 3.048, 3.048, !- X,Y,Z Vertex 2 {m} - -3.048, 3.048, 3.048, !- X,Y,Z Vertex 3 {m} - -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Rendering:Color, - {3382e11a-163a-4157-8831-d7c6831e1559}, !- Handle - Rendering Color 59, !- Name - 186, !- Rendering Red Value - 85, !- Rendering Green Value - 211; !- Rendering Blue Value - -OS:SubSurface, - {c338f8b3-5a59-499c-98ca-df5a820387cd}, !- Handle - Sub Surface 1, !- Name - FixedWindow, !- Sub Surface Type - , !- Construction Name - {04c217f9-794f-482e-9566-bc9939ac2b67}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - 3.0226, 0, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 3.0226, 0, 0.76, !- X,Y,Z Vertex 2 {m} - 0.0254000000000003, 0, 0.76, !- X,Y,Z Vertex 3 {m} - 0.0254000000000003, 0, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:SubSurface, - {dbcac169-5385-435a-ac98-e7891b7f2a0a}, !- Handle - Sub Surface 2, !- Name - FixedWindow, !- Sub Surface Type - , !- Construction Name - {29c6e6ba-2a04-4ad6-9f09-69b0692bd305}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - 0, -0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 0, -0.0254, 0.76, !- X,Y,Z Vertex 2 {m} - 0, -3.0226, 0.76, !- X,Y,Z Vertex 3 {m} - 0, -3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:SubSurface, - {bf6c0bb6-20be-45a4-a12e-df2480492bc9}, !- Handle - Sub Surface 3, !- Name - FixedWindow, !- Sub Surface Type - , !- Construction Name - {3ce940a4-dffc-4da5-8e17-a47c6fde3c37}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - -0.0254, 3.048, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - -0.0254, 3.048, 0.76, !- X,Y,Z Vertex 2 {m} - -3.0226, 3.048, 0.76, !- X,Y,Z Vertex 3 {m} - -3.0226, 3.048, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:SubSurface, - {d4037884-9d56-4f6f-ac6d-65640af8fdc2}, !- Handle - Sub Surface 4, !- Name - FixedWindow, !- Sub Surface Type - , !- Construction Name - {5adfa187-cd8e-4214-9ea8-4a4f634cf64c}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - 0, 0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 0, 0.0254, 0.76, !- X,Y,Z Vertex 2 {m} - 0, 3.0226, 0.76, !- X,Y,Z Vertex 3 {m} - 0, 3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:SubSurface, - {e34c1857-0462-47ea-9da7-7fe1b23da808}, !- Handle - Sub Surface 5, !- Name - FixedWindow, !- Sub Surface Type - , !- Construction Name - {5cfd7343-beef-4dd8-96ff-05ad91c84aad}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - 0.0254, -3.048, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 0.0254, -3.048, 0.76, !- X,Y,Z Vertex 2 {m} - 3.0226, -3.048, 0.76, !- X,Y,Z Vertex 3 {m} - 3.0226, -3.048, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:SubSurface, - {e7397205-f157-47fc-ad9a-a675aab3b3c7}, !- Handle - Sub Surface 6, !- Name - FixedWindow, !- Sub Surface Type - , !- Construction Name - {80879f81-820f-4603-b611-b68e1595cb6e}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - 0, 0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 0, 0.0254, 0.76, !- X,Y,Z Vertex 2 {m} - 0, 3.0226, 0.76, !- X,Y,Z Vertex 3 {m} - 0, 3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:SubSurface, - {f4f4b729-630c-44aa-b175-61ca8c5dbc18}, !- Handle - Sub Surface 7, !- Name - FixedWindow, !- Sub Surface Type - , !- Construction Name - {b3fe4f2a-ff3a-493e-9743-c7be2c1ce9d2}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - -3.0226, 0, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - -3.0226, 0, 0.76, !- X,Y,Z Vertex 2 {m} - -0.0254000000000003, 0, 0.76, !- X,Y,Z Vertex 3 {m} - -0.0254000000000003, 0, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:SubSurface, - {3c09fbeb-0873-4676-861c-11a90d465e89}, !- Handle - Sub Surface 8, !- Name - FixedWindow, !- Sub Surface Type - , !- Construction Name - {bf033db5-8c2d-4f1b-b467-6f8ae942fd52}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - 0, -0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 0, -0.0254, 0.76, !- X,Y,Z Vertex 2 {m} - 0, -3.0226, 0.76, !- X,Y,Z Vertex 3 {m} - 0, -3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:Site, - {e923bd3f-b042-4911-a936-d37cf26af839}, !- Handle - Site 1, !- Name - , !- Latitude {deg} - , !- Longitude {deg} - , !- Time Zone {hr} - , !- Elevation {m} - ; !- Terrain - -OS:YearDescription, - {b216c53e-5b6b-4973-8442-5822dbdeacee}; !- Handle - -OS:ClimateZones, - {221ea9ed-6eb8-4a9e-8e5a-9f17ea245a5b}, !- Handle - , !- Active Institution - , !- Active Year - ASHRAE, !- Climate Zone Institution Name 1 - ANSI/ASHRAE Standard 169, !- Climate Zone Document Name 1 - 2006, !- Climate Zone Document Year 1 - , !- Climate Zone Value 1 - CEC, !- Climate Zone Institution Name 2 - California Climate Zone Descriptions, !- Climate Zone Document Name 2 - 1995, !- Climate Zone Document Year 2 - ; !- Climate Zone Value 2 - -OS:SimulationControl, - {d7639ae2-d32d-4ec9-8805-d736b33d8ed7}; !- Handle - -OS:Sizing:Parameters, - {3e229137-ae9f-4efa-8ea3-4acd5b93cbd8}, !- Handle - 1.25, !- Heating Sizing Factor - 1.15; !- Cooling Sizing Factor - -OS:Timestep, - {92bdf5f7-18f8-48b3-8bdf-5b839c3592c3}, !- Handle - 6; !- Number of Timesteps per Hour - -OS:ShadowCalculation, - {ec138f8c-4f93-4204-88a2-991a62608f6a}, !- Handle - 20, !- Calculation Frequency - 15000; !- Maximum Figures in Shadow Overlap Calculations - -OS:HeatBalanceAlgorithm, - {f9a03de5-79c9-409d-a764-bd2a8d39b93c}, !- Handle - ConductionTransferFunction, !- Algorithm - 200; !- Surface Temperature Upper Limit {C} - -OS:RunPeriod, - {1e31b0fa-d387-4896-8e7e-30f2368f9e58}, !- Handle - Run Period 1, !- Name - 1, !- Begin Month - 1, !- Begin Day of Month - 12, !- End Month - 31, !- End Day of Month - , !- Use Weather File Holidays and Special Days - , !- Use Weather File Daylight Saving Period - , !- Apply Weekend Holiday Rule - , !- Use Weather File Rain Indicators - , !- Use Weather File Snow Indicators - ; !- Number of Times Runperiod to be Repeated - -OS:LifeCycleCost:Parameters, - {a836c392-6031-4709-b70f-0f9efa66e717}, !- Handle - , !- Analysis Type - , !- Discounting Convention - , !- Inflation Approach - , !- Real Discount Rate - , !- Nominal Discount Rate - , !- Inflation - , !- Base Date Month - , !- Base Date Year - , !- Service Date Month - , !- Service Date Year - ; !- Length of Study Period in Years - diff --git a/measures/gbxml_to_openstudio_cleanup/tests/gbxml_to_openstudio_cleanup_test.rb b/measures/gbxml_to_openstudio_cleanup/tests/gbxml_to_openstudio_cleanup_test.rb deleted file mode 100644 index f16e59c..0000000 --- a/measures/gbxml_to_openstudio_cleanup/tests/gbxml_to_openstudio_cleanup_test.rb +++ /dev/null @@ -1,124 +0,0 @@ -# insert your copyright here - -require 'openstudio' -require 'openstudio/measure/ShowRunnerOutput' -require 'minitest/autorun' -require_relative '../measure.rb' -require 'fileutils' - -class GbxmlToOpenstudioCleanupTest < Minitest::Test - # def setup - # end - - # def teardown - # end - - def test_number_of_arguments_and_argument_names - # create an instance of the measure - measure = GbxmlToOpenstudioCleanup.new - - # make an empty model - model = OpenStudio::Model::Model.new - - # get arguments and test that they are what we are expecting - arguments = measure.arguments(model) - assert_equal(1, arguments.size) - assert_equal('space_name', arguments[0].name) - end - - def test_bad_argument_values - # create an instance of the measure - measure = GbxmlToOpenstudioCleanup.new - - # create runner with empty OSW - osw = OpenStudio::WorkflowJSON.new - runner = OpenStudio::Measure::OSRunner.new(osw) - - # make an empty model - model = OpenStudio::Model::Model.new - - # get arguments - arguments = measure.arguments(model) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # create hash of argument values - args_hash = {} - args_hash['space_name'] = '' - - # populate argument with specified hash value if specified - arguments.each do |arg| - temp_arg_var = arg.clone - if args_hash.key?(arg.name) - assert(temp_arg_var.setValue(args_hash[arg.name])) - end - argument_map[arg.name] = temp_arg_var - end - - # run the measure - measure.run(model, runner, argument_map) - result = runner.result - - # show the output - show_output(result) - - # assert that it ran correctly - assert_equal('Fail', result.value.valueName) - end - - def test_good_argument_values - # create an instance of the measure - measure = GbxmlToOpenstudioCleanup.new - - # create runner with empty OSW - osw = OpenStudio::WorkflowJSON.new - runner = OpenStudio::Measure::OSRunner.new(osw) - - # load the test model - translator = OpenStudio::OSVersion::VersionTranslator.new - path = "#{File.dirname(__FILE__)}/example_model.osm" - model = translator.loadModel(path) - assert(!model.empty?) - model = model.get - - # store the number of spaces in the seed model - num_spaces_seed = model.getSpaces.size - - # get arguments - arguments = measure.arguments(model) - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) - - # create hash of argument values. - # If the argument has a default that you want to use, you don't need it in the hash - args_hash = {} - args_hash['space_name'] = 'New Space' - # using defaults values from measure.rb for other arguments - - # populate argument with specified hash value if specified - arguments.each do |arg| - temp_arg_var = arg.clone - if args_hash.key?(arg.name) - assert(temp_arg_var.setValue(args_hash[arg.name])) - end - argument_map[arg.name] = temp_arg_var - end - - # run the measure - measure.run(model, runner, argument_map) - result = runner.result - - # show the output - show_output(result) - - # assert that it ran correctly - assert_equal('Success', result.value.valueName) - assert(result.info.size == 1) - assert(result.warnings.empty?) - - # check that there is now 1 space - assert_equal(1, model.getSpaces.size - num_spaces_seed) - - # save the model to test output directory - output_file_path = "#{File.dirname(__FILE__)}//output/test_output.osm" - model.save(output_file_path, true) - end -end diff --git a/workflows/Annual Building Energy Simulation.osw b/workflows/Annual Building Energy Simulation.osw index bdcdad3..ef8097d 100644 --- a/workflows/Annual Building Energy Simulation.osw +++ b/workflows/Annual Building Energy Simulation.osw @@ -64,12 +64,8 @@ "name": "Set Simulation Control" }, { - "measure_dir_name": "gbxml_to_openstudio_cleanup", - "name": "gbxml_to_openstudio_cleanup" - }, - { - "measure_dir_name": "add_xml_output_control_style", - "name": "Add XML Output Control Style" + "measure_dir_name": "gbxml_postprocess", + "name": "gbXML Postprocess" }, { "arguments" : { diff --git a/workflows/HVAC Systems Loads and Sizing.osw b/workflows/HVAC Systems Loads and Sizing.osw index 9adfb59..d624705 100644 --- a/workflows/HVAC Systems Loads and Sizing.osw +++ b/workflows/HVAC Systems Loads and Sizing.osw @@ -64,12 +64,8 @@ "name": "Set Simulation Control" }, { - "measure_dir_name": "gbxml_to_openstudio_cleanup", - "name": "gbxml_to_openstudio_cleanup" - }, - { - "measure_dir_name": "add_xml_output_control_style", - "name": "Add XML Output Control Style" + "measure_dir_name": "gbxml_postprocess", + "name": "gbXML Postprocess" }, { "arguments": { diff --git a/workflows/RegressionTesting.osw b/workflows/RegressionTesting.osw index f777b17..9412e0e 100644 --- a/workflows/RegressionTesting.osw +++ b/workflows/RegressionTesting.osw @@ -67,15 +67,8 @@ } }, { - "measure_dir_name": "gbxml_to_openstudio_cleanup", - "name": "gbxml_to_openstudio_cleanup", - "arguments": { - "__SKIP__": false - } - }, - { - "measure_dir_name": "add_xml_output_control_style", - "name": "Add XML Output Control Style", + "measure_dir_name": "gbxml_postprocess", + "name": "gbXML Postprocess", "arguments": { "__SKIP__": false } From 15401256c75d3e7d483933a1f1333c4fce5f4c15 Mon Sep 17 00:00:00 2001 From: Eric Ringold Date: Mon, 17 Jun 2024 12:45:20 -0600 Subject: [PATCH 06/41] add heat exchanger effectiveness tables --- .../gbxml_hvac_import/resources/air_system.rb | 85 +++++++++++++++---- 1 file changed, 69 insertions(+), 16 deletions(-) diff --git a/measures/gbxml_hvac_import/resources/air_system.rb b/measures/gbxml_hvac_import/resources/air_system.rb index fec9898..4b780ac 100644 --- a/measures/gbxml_hvac_import/resources/air_system.rb +++ b/measures/gbxml_hvac_import/resources/air_system.rb @@ -315,6 +315,41 @@ def add_oa_system oa_system end + def add_heat_exchanger_effectiveness_curves(heat_exchanger, values) + + # create one IndependentVariable object to share for all TableLookups + iv = OpenStudio::Model::TableIndependentVariable.new(self.model) + iv.setName("#{self.name}_IndependentVariable") + iv.setInterpolationMethod('Linear') + iv.setExtrapolationMethod('Linear') + iv.setMinimumValue(0.0) + iv.setMaximumValue(10.0) + iv.setUnitType('Dimensionless') + values['Sensible Heating'].keys.sort.each { |k| iv.addValue(k) } + + values.each do |type, values_hash| + # create TableLookups + t = OpenStudio::Model::TableLookup.new(self.model) + t.setName("#{self.name}_#{type.gsub(/ible|ent|ing|\s/, '')}Eff") + t.addIndependentVariable(iv) + t.setNormalizationMethod('DivisorOnly') + t.setMinimumOutput(0.0) + t.setMaximumOutput(10.0) + t.setOutputUnitType('Dimensionless') + values = values_hash.sort.map { |a| a[1] } + # protect against setting normalization divisor to zero for zero effectiveness + values[-1].zero? ? t.setNormalizationDivisor(1) : t.setNormalizationDivisor(values[-1]) + values.each { |v| t.addOutputValue(v) } + + # set curves + type_a = type.split + heat_exchanger.send("set#{type_a[0]}Effectivenessat100#{type_a[1]}AirFlow", values_hash[1.0]) + heat_exchanger.send("set#{type_a[0]}Effectivenessof#{type_a[1]}AirFlowCurve", t) + end + + heat_exchanger + end + def add_heat_exchanger heat_exchanger = nil @@ -322,26 +357,44 @@ def add_heat_exchanger heat_exchanger = OpenStudio::Model::HeatExchangerAirToAirSensibleAndLatent.new(self.model) heat_exchanger.setName(self.name + " Heat Exchanger") unless self.name.nil? heat_exchanger.setSupplyAirOutletTemperatureControl(true) - heat_exchanger.setSensibleEffectivenessat100HeatingAirFlow(0.76) - heat_exchanger.setSensibleEffectivenessat75HeatingAirFlow(0.81) - heat_exchanger.setLatentEffectivenessat100HeatingAirFlow(0.68) - heat_exchanger.setLatentEffectivenessat75HeatingAirFlow(0.73) - heat_exchanger.setSensibleEffectivenessat100CoolingAirFlow(0.76) - heat_exchanger.setSensibleEffectivenessat75CoolingAirFlow(0.81) - heat_exchanger.setLatentEffectivenessat100CoolingAirFlow(0.68) - heat_exchanger.setLatentEffectivenessat75CoolingAirFlow(0.73) + if self.model.version < OpenStudio::VersionString.new('3.8.0') + heat_exchanger.setSensibleEffectivenessat100HeatingAirFlow(0.76) + heat_exchanger.setSensibleEffectivenessat75HeatingAirFlow(0.81) + heat_exchanger.setLatentEffectivenessat100HeatingAirFlow(0.68) + heat_exchanger.setLatentEffectivenessat75HeatingAirFlow(0.73) + heat_exchanger.setSensibleEffectivenessat100CoolingAirFlow(0.76) + heat_exchanger.setSensibleEffectivenessat75CoolingAirFlow(0.81) + heat_exchanger.setLatentEffectivenessat100CoolingAirFlow(0.68) + heat_exchanger.setLatentEffectivenessat75CoolingAirFlow(0.73) + else + heat_exchanger.assignHistoricalEffectivenessCurves + end + elsif self.heat_exchanger_type == "Sensible" heat_exchanger = OpenStudio::Model::HeatExchangerAirToAirSensibleAndLatent.new(self.model) heat_exchanger.setName(self.name + " Heat Exchanger") unless self.name.nil? heat_exchanger.setSupplyAirOutletTemperatureControl(true) - heat_exchanger.setSensibleEffectivenessat100HeatingAirFlow(0.76) - heat_exchanger.setSensibleEffectivenessat75HeatingAirFlow(0.81) - heat_exchanger.setLatentEffectivenessat100HeatingAirFlow(0) - heat_exchanger.setLatentEffectivenessat75HeatingAirFlow(0) - heat_exchanger.setSensibleEffectivenessat100CoolingAirFlow(0.76) - heat_exchanger.setSensibleEffectivenessat75CoolingAirFlow(0.81) - heat_exchanger.setLatentEffectivenessat100CoolingAirFlow(0) - heat_exchanger.setLatentEffectivenessat75CoolingAirFlow(0) + if self.model.version < OpenStudio::VersionString.new('3.8.0') + heat_exchanger.setSensibleEffectivenessat100HeatingAirFlow(0.76) + heat_exchanger.setSensibleEffectivenessat75HeatingAirFlow(0.81) + heat_exchanger.setLatentEffectivenessat100HeatingAirFlow(0) + heat_exchanger.setLatentEffectivenessat75HeatingAirFlow(0) + heat_exchanger.setSensibleEffectivenessat100CoolingAirFlow(0.76) + heat_exchanger.setSensibleEffectivenessat75CoolingAirFlow(0.81) + heat_exchanger.setLatentEffectivenessat100CoolingAirFlow(0) + heat_exchanger.setLatentEffectivenessat75CoolingAirFlow(0) + else + values = Hash.new{|hash, key| hash[key] = Hash.new} + values['Sensible Heating'][0.75] = 0.81 + values['Sensible Heating'][1.0] = 0.76 + values['Latent Heating'][0.75] = 0 + values['Latent Heating'][1.0] = 0 + values['Sensible Cooling'][0.75] = 0.81 + values['Sensible Cooling'][1.0] = 0.76 + values['Latent Cooling'][0.75] = 0 + values['Latent Cooling'][1.0] = 0 + add_heat_exchanger_effectiveness_curves(heat_exchanger, values) + end end heat_exchanger From 6e5a819fb60e3abdea0101dfaa88f3ea8c0e14ab Mon Sep 17 00:00:00 2001 From: Eric Ringold Date: Mon, 17 Jun 2024 12:45:39 -0600 Subject: [PATCH 07/41] update standards method calls --- .../resources/os_lib_adv_import.rb | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb b/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb index 8d81b3d..b51ec27 100644 --- a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb +++ b/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb @@ -41,6 +41,7 @@ # constants for thermostat and humidistat schedules STANDARD = Standard.build('90.1-2013') +STANDARD_VERSION = OpenStudio::VersionString.new(OpenstudioStandards::VERSION) FIVE_PCT = 0.05 module OsLib_AdvImport @@ -272,7 +273,11 @@ def self.make_thermal_zone_thermostats(model, setpoints_thermal_zones_hash) # thermostat thermal_zones_array.each do |thermal_zone| - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + else + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + end make_thermostat(thermal_zone, htg_sch, setpoint: htg_setpoint_degC, subtype: 'Heating', people_schedule: people_schedule) end @@ -307,7 +312,11 @@ def self.make_thermal_zone_thermostats(model, setpoints_thermal_zones_hash) # thermostat thermal_zones_array.each do |thermal_zone| - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + else + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + end make_thermostat(thermal_zone, clg_sch, setpoint: clg_setpoint_degC, subtype: 'Cooling', people_schedule: people_schedule) end @@ -396,7 +405,11 @@ def self.make_thermal_zone_humidistats(model, setpoints_thermal_zones_hash) # humidistat thermal_zones_array.each do |thermal_zone| - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + else + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + end make_humidstat(thermal_zone, setpoint_schedule, setpoint: setpoint, subtype: 'Humidifying', people_schedule: people_schedule) end @@ -431,7 +444,11 @@ def self.make_thermal_zone_humidistats(model, setpoints_thermal_zones_hash) # humidistat thermal_zones_array.each do |thermal_zone| - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + else + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + end make_humidstat(thermal_zone, setpoint_schedule, setpoint: setpoint, subtype: 'Humidifying', people_schedule: people_schedule) end From a60518bd6fbe3ad615ec9f687727345a037c0fa9 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Mon, 24 Jun 2024 12:42:32 -0600 Subject: [PATCH 08/41] update action with 3.8.0 image --- .github/workflows/test_gbxml_with_openstudio.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_gbxml_with_openstudio.yml b/.github/workflows/test_gbxml_with_openstudio.yml index dbb2b31..edd4fde 100644 --- a/.github/workflows/test_gbxml_with_openstudio.yml +++ b/.github/workflows/test_gbxml_with_openstudio.yml @@ -17,10 +17,10 @@ jobs: # The type of runner that the job will run on runs-on: ubuntu-latest container: - image: nrel/openstudio:3.6.0 + image: nrel/openstudio:3.8.0 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: install node and test shell: bash run: | From a378480eeb81a212486b0388c880a62df7742b81 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Mon, 24 Jun 2024 13:30:56 -0600 Subject: [PATCH 09/41] update .env for 3.8.0 --- test/regression/.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/regression/.env b/test/regression/.env index ece085c..bd4e68c 100644 --- a/test/regression/.env +++ b/test/regression/.env @@ -1,3 +1,3 @@ -OS_VERSION="3.6.0" +OS_VERSION="3.8.0" THREADS="" OS_CLI="" From 54f9759bc750234f4811ce19189ce77f86e31dee Mon Sep 17 00:00:00 2001 From: Eric Ringold Date: Mon, 24 Jun 2024 15:53:25 -0600 Subject: [PATCH 10/41] table name --- measures/gbxml_hvac_import/resources/air_system.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/measures/gbxml_hvac_import/resources/air_system.rb b/measures/gbxml_hvac_import/resources/air_system.rb index 4b780ac..84fd5db 100644 --- a/measures/gbxml_hvac_import/resources/air_system.rb +++ b/measures/gbxml_hvac_import/resources/air_system.rb @@ -319,7 +319,7 @@ def add_heat_exchanger_effectiveness_curves(heat_exchanger, values) # create one IndependentVariable object to share for all TableLookups iv = OpenStudio::Model::TableIndependentVariable.new(self.model) - iv.setName("#{self.name}_IndependentVariable") + iv.setName("#{heat_exchanger.name}_IndependentVariable") iv.setInterpolationMethod('Linear') iv.setExtrapolationMethod('Linear') iv.setMinimumValue(0.0) @@ -330,7 +330,7 @@ def add_heat_exchanger_effectiveness_curves(heat_exchanger, values) values.each do |type, values_hash| # create TableLookups t = OpenStudio::Model::TableLookup.new(self.model) - t.setName("#{self.name}_#{type.gsub(/ible|ent|ing|\s/, '')}Eff") + t.setName("#{heat_exchanger.name}_#{type.gsub(/ible|ent|ing|\s/, '')}Eff") t.addIndependentVariable(iv) t.setNormalizationMethod('DivisorOnly') t.setMinimumOutput(0.0) From 1f9c480a0178a7ae515d8e826d727a44e1e8fe5b Mon Sep 17 00:00:00 2001 From: Eric Ringold Date: Mon, 24 Jun 2024 15:54:22 -0600 Subject: [PATCH 11/41] correct air system component test --- test/gbxml_hvac_import/test_air_system.rb | 36 ++++++++--------------- 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/test/gbxml_hvac_import/test_air_system.rb b/test/gbxml_hvac_import/test_air_system.rb index 6e0171b..20e9c0f 100644 --- a/test/gbxml_hvac_import/test_air_system.rb +++ b/test/gbxml_hvac_import/test_air_system.rb @@ -86,23 +86,11 @@ def test_air_system_build assert(enth_elec_ac_dx_elec_var.airLoopHVACOutdoorAirSystem.is_initialized) optional_hx = enth_elec_ac_dx_elec_var.airLoopHVACOutdoorAirSystem.get.reliefAirModelObject.get.to_Node.get.outletModelObject.get.to_HeatExchangerAirToAirSensibleAndLatent assert(optional_hx.is_initialized) - mixed_air_node = enth_elec_ac_dx_elec_var.airLoopHVACOutdoorAirSystem.get.mixedAirModelObject.get.to_Node.get - preheat_coil = mixed_air_node.outletModelObject.get.to_CoilHeatingElectric + oa_node = enth_elec_ac_dx_elec_var.airLoopHVACOutdoorAirSystem.get.outboardOANode.get + preheat_coil = oa_node.outletModelObject.get.to_CoilHeatingElectric assert(preheat_coil.is_initialized) - cooling_coil = preheat_coil.get.outletModelObject.get.to_Node.get.outletModelObject.get.to_CoilCoolingDXSingleSpeed - assert(cooling_coil.is_initialized) - heating_coil = cooling_coil.get.outletModelObject.get.to_Node.get.outletModelObject.get.to_CoilHeatingElectric - assert(heating_coil.is_initialized) - fan = heating_coil.get.outletModelObject.get.to_Node.get.outletModelObject.get.to_FanVariableVolume - assert(fan.is_initialized) - - assert(enth_elec_ac_dx_elec_var.airLoopHVACOutdoorAirSystem.is_initialized) - optional_hx = enth_elec_ac_dx_elec_var.airLoopHVACOutdoorAirSystem.get.reliefAirModelObject.get.to_Node.get.outletModelObject.get.to_HeatExchangerAirToAirSensibleAndLatent - assert(optional_hx.is_initialized) - mixed_air_node = enth_elec_ac_dx_elec_var.airLoopHVACOutdoorAirSystem.get.mixedAirModelObject.get.to_Node.get - preheat_coil = mixed_air_node.outletModelObject.get.to_CoilHeatingElectric - assert(preheat_coil.is_initialized) - cooling_coil = preheat_coil.get.outletModelObject.get.to_Node.get.outletModelObject.get.to_CoilCoolingDXSingleSpeed + mixed_air_node = enth_elec_ac_dx_elec_var.mixedAirNode.get + cooling_coil = mixed_air_node.outletModelObject.get.to_CoilCoolingDXSingleSpeed assert(cooling_coil.is_initialized) heating_coil = cooling_coil.get.outletModelObject.get.to_Node.get.outletModelObject.get.to_CoilHeatingElectric assert(heating_coil.is_initialized) @@ -112,10 +100,11 @@ def test_air_system_build assert(sens_furn_wc_dx_furn_var.airLoopHVACOutdoorAirSystem.is_initialized) optional_hx = sens_furn_wc_dx_furn_var.airLoopHVACOutdoorAirSystem.get.reliefAirModelObject.get.to_Node.get.outletModelObject.get.to_HeatExchangerAirToAirSensibleAndLatent assert(optional_hx.is_initialized) - mixed_air_node = sens_furn_wc_dx_furn_var.airLoopHVACOutdoorAirSystem.get.mixedAirModelObject.get.to_Node.get - preheat_coil = mixed_air_node.outletModelObject.get.to_CoilHeatingGas + oa_node = sens_furn_wc_dx_furn_var.airLoopHVACOutdoorAirSystem.get.outboardOANode.get + preheat_coil = oa_node.outletModelObject.get.to_CoilHeatingGas assert(preheat_coil.is_initialized) - cooling_coil = preheat_coil.get.outletModelObject.get.to_Node.get.outletModelObject.get.to_CoilCoolingDXSingleSpeed + mixed_air_node = sens_furn_wc_dx_furn_var.mixedAirNode.get + cooling_coil = mixed_air_node.outletModelObject.get.to_CoilCoolingDXSingleSpeed assert(cooling_coil.is_initialized) heating_coil = cooling_coil.get.outletModelObject.get.to_Node.get.outletModelObject.get.to_CoilHeatingGas assert(heating_coil.is_initialized) @@ -125,14 +114,15 @@ def test_air_system_build assert(none_hw_chw_hw_vav.airLoopHVACOutdoorAirSystem.is_initialized) optional_hx = none_hw_chw_hw_vav.airLoopHVACOutdoorAirSystem.get.reliefAirModelObject.get.to_Node.get.outletModelObject assert(!optional_hx.is_initialized) - mixed_air_node = none_hw_chw_hw_vav.airLoopHVACOutdoorAirSystem.get.mixedAirModelObject.get.to_Node.get - preheat_coil = mixed_air_node.outletModelObject.get.to_CoilHeatingWater + oa_node = none_hw_chw_hw_vav.airLoopHVACOutdoorAirSystem.get.outboardOANode.get + preheat_coil = oa_node.outletModelObject.get.to_CoilHeatingWater assert(preheat_coil.is_initialized) - cooling_coil = preheat_coil.get.airOutletModelObject.get.to_Node.get.outletModelObject.get.to_CoilCoolingWater + mixed_air_node = none_hw_chw_hw_vav.mixedAirNode.get + cooling_coil = mixed_air_node.outletModelObject.get.to_CoilCoolingWater assert(cooling_coil.is_initialized) heating_coil = cooling_coil.get.airOutletModelObject.get.to_Node.get.outletModelObject.get.to_CoilHeatingWater assert(heating_coil.is_initialized) - fan = heating_coil.get.airOutletModelObject.get.to_Node.get.outletModelObject.get.to_FanConstantVolume + fan = heating_coil.get.airOutletModelObject.get.to_Node.get.outletModelObject.get.to_FanVariableVolume assert(fan.is_initialized) end From 7df8a2dab8807edf8e007f8eed54d15c6263048c Mon Sep 17 00:00:00 2001 From: Eric Ringold Date: Mon, 24 Jun 2024 15:54:46 -0600 Subject: [PATCH 12/41] update air system test gbxml --- .../test_gbxmls/AirSystemAllVariations.xml | Bin 207010 -> 106911 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/test/gbxml_hvac_import/resources/test_gbxmls/AirSystemAllVariations.xml b/test/gbxml_hvac_import/resources/test_gbxmls/AirSystemAllVariations.xml index fb39f8b6fbd7e52897cab5b91c7e260985106ac7..44365d46c8952af9786637730eacfb3d6dafa984 100644 GIT binary patch literal 106911 zcmeHQ>vG#Tmi|9a!P1YZo~o9_i%3x!#Z$h-v1j7MWhL?KOigXk5^b}aBGn|7#Qkdf zV;^Z>VGqC?D2WsRiV&?XQS0#15AN)6=|%GuqSIB z3A*aR&F3guyy^G9fB)WldVp&^KX~eg(`S2bbx!^yN#k>CzF3BmGke>yoVhH^D!vYP zKKN5B0!mRc^k+PY@bBxHbbaypWnsVV+~0iaoamaOkN#Vg<-xe0HOU_Om$Lv4*`I=2 zKa4E*9R7U*UyTOWMy$%&TGxH|+!>&8$Und5$bIco@g!tDlXPt#4qP=?Sf zy_mLo=i1+5ViaTC&wr)&&rdIIpl9ys@6LP~J)c1DRxhPZKU#D9e0qDT#Y!=vISoqK+BJZUAIRyOJ^~+z0w8?+h4f$rpE{H?y2w19Heb= z=dNrkvS+8>?A-TVdzSNT68VAsLi9{g1{v>wd$;&2AD8n7JCK&x?&2Sx9^+db;MKTK zHcM4Cdm4TGJuo79{w!MF+QF5-4B)TO_d3#Z(je~ZXCL&sbD|DFY2x>$FR1%wP-9?d z=R{F={_2VCh0cQudRP7O4@l;>{&yP@kF+ac%Dojua3ujP-$%XdjYcCdfz>AnF1$lZ zLiaWh(pqccO{Y$9{%m%O=Bxg7;BnNwsY4H?HO*IcNfFwt?#~k@cl*cGJ3=cB0F>} z@78y`X!SN~;QIl<2x!AeS5bNjprNS)juF?heqyLbXieNiWT_*JjKtN-M-Tw!UtMVm z_bR*GN{SSv2XN41_#e0nFCrlw8rm|g*B)HsA% z15QPF@x!Bt9Ug0lXtUXYd)k!lgn1w`S(;}w$9PKO%wKvl3nfv*iH#EfAM9_on_kT( zw8CZZ2(uMru3sM(ldZR|C#)kCx*t^q%Xlmr5UD3WR@URkgp8W#qzFd+vS zFo&`Z9OH#QRJ_1tLhRvo+d+YyqC>z0-4u-pg4C^sa2O*6K?JqkevWZMBWZMq9!iGw zO^qLPJzeyg442C~u**2%nBzx@Ms^=`M1|GWc-4#X5Vq$l`Cf63Upy`tsv*CPbSNGT$TXk6lm!?aI)AS?^S=T zTlvSwYxg#Ed1g_sF&rSbq8 z;6Er3*-izn)oDwoHyXma8X2n5lZQ~^k^F%|3Xv3S)1zze(QzZFw}ToYWF0ITrI}cp zpg@3wqGV8#8cIBsk=2JN22@?G6;tUI#Z>0DVk*>NQCdtjf?}$)z-$-AQos|Uq$;Hn zsRzECmO8Q3N)2>y*2NdpeREnX1$BtKesx|erB?QPt@5d&R%&N;Qc4dNi8W9uH9}=_ zC6!X27`)EX=RC&rRG;TiQENs7x>g~Ev_)vH5P)8@zF`#2y~ zobic5)H*U1fF~R>Iy{PMXkD{rck~eP9tAu>^x>)L;Zf9D!{eIO;)=~$F4RM$sog%0 zOZ5bk)U4Oz3eC6_wFdq$#%5eJaY$7hMLe;|!4V`{>oyyn;HoKAUP-))Slz@i{uC`7 z5s<(|lfW256wVzWNj0Fm3>L}^v#E8Dnz4ua2vOO&8uDR81|HYS1q=sBl2Bj}rFwOU zY6~_TYo|7E$H_Ehbb#)a2kbb;5p_&R0DN;$R0F(Qg9)baItdotUO0{jpc)E%A`38d)t=KBFJ1lLs>#xe8wibfGN zB2)oT#}O{Hn;fvkvA=pu5k}L_BWo0^Z7i{394zs1KZ-K%ANiBB+i;ISfyhN2XbMyd!#Pz6lmbD(Ubjs-bj8qhneHa(G6^ zMG=Sp7HD;%Ncy9joj{R_3Y=R{($VtJMzwXsbo6-5dpr&;tpTPSVWyDOO4~^iI=b0x zcB1R2#Gg9#3W5M^9gt@vi7&k1K)FMtsRqoIfr9AOP1->C?$CTHCls>VYD6^@ zuB{}s9v9dZuMSCV!G!^=TgYe1L3zr6X?N?Pxx6d8bi~<^AcE?s8wV;J^VA%f_Zmvq z8bmmrIpsTEM1ms5zNUBIb0Q9&%3IQ$*mSI^LK&Lkfmm`+5nRnv3Tj^5c&F4gdJ-Gv#1mrEAZ2dg_z`$h-SuspF|r zJ1doH>eMMyfpV^rQ>TW5f!Z4=14BV&T9l_wL2XqLTN|#E;u?{Pt^^kne71RdflEs5 z&L(n^#HDz3k|CQTY7~L(qEd<{{m8|F8e<9(ws)jy_9}Kj1nI8wJiZebQJmDay zjzl@&A)^{fcl3FTO3Gt)!l6_EO&n?}5K4HY#6i)~@C3^AbqpdHO^=Hx4owv( zCqcGXhoYm`V^mW?GOdB9j0B0YyOvYL6`9naX|v%8u9?yl;j0+9)J?Q-jwZylMHPE4 zxsK}+AtWxvt3y;7EQns;q?y9^gy!+AT=J=b+O5^OL!_yW9We?@nC{h~sV&%Wtem<% z)=A)9gvs5yP+)h=S#u;LYCv~u5aD>@)D8}icoj}afMeybp*n80ofI7aD(LFU=GSF| znEh5*bB!ScDxA2CN!y7!0z)JFqd^oQxO&PM2tUzUm~*WG+z0207zyG+Iu1|}Cn7G2 zxExXqnszsez!fnXMg7#D-RQ4pOUH!;fKPvZivBw8Qx;Ldl5(=J>R3dTaR6+sSdbJK zr{Qa4qqQO`*^rBWT6D@2ZBbQ=x=ed8l{V<9uphbsN6Nq-h?T(%i}h`p)S%YFv)q@^ z39}aYCLL5qvd!$NGq>DMa=6g><;|-psY+pD68VAsB000S9m|=^ib94E;}7;X+dTmg zjQ^3d4(mU@D8bhAq&1BD#aE{+jm_vb@PDzVk%XQgpUa<$+m9#9;L)1edB(^6&OD`tE=(%X?b7R`A~T=XMn2Y&8eum~DLeyE9)# z&nM~-SeyRHnOnXy44E11DoRh$jiISS!5Fc>fA$^}Cgj`xD{u;vsg4X~NYh$JM>Y{p zXD@}TRuI{tW38rU#-ANGIvD{)_#gQb_s$Gx)j&_;f8}?sZ0G4Y!g~`Z|4iCk?$`JCCXX4CD0?^-gNKF2eEtVKE;j&B!6Ce|2ed0 zJpe5ml8(vX51&*DmB{3^)GRU3-*=VnyY78gB>@~%m5epdtk9WC2%6tW?`;o&dMb4# zvm^am9S(unpQ?TtHXRdLv~hYbG4Ew+Y;f z_|||AfN{oQ`2eaxC5b~EcHE>FVD5kGaCH0XD3blJy!#y5Q^N}==yU6PtHhB!@&d6R zSRDW~?g#cX6o^mntvwVl$R%Kz9{^VK4g`i;PakQjGC*0JJmAm5>>{ee09oGWI6#Nq zw%iNQB(+IU+0N3U2so^m!3Q+m`-UNuDz{sQ`>(zK9NJUI2SAix>H|J@RXh>^;3=el z=skcTbBzQ{IKce%CWD4XmVW}fPGP@>2T+DRv-;#?HiIEs?|u}Z!{G9;Mgi?|0PLxt ztsz0te>IGtuiSw(-F?CMk5UC?V}Osz2msm$#eY;_wGaHqJI_`49m-6QNp60f;Xlfp zr@kPI-7B)!BuG;PO=R<9B4~B;BHocdA3RYow1|n!i4+bqW*7u8_rFz>8BO=TVF$+C zeP-q1A)wA608Iv#Ie~Xw4G#jK4WAP*l>yHn0G&X#7bmcr8R1c3qCEwEfllB!A-tj9 zi1d=oX8g)AlyMZ$HV4MoeI5vHkpt%GejN{h)|ixgfH(~VZNz#20~YsGgyW5^3EIho z@JQA+rGXT)&N#r_QY=W~8%5MXHg6yiH0+^8dWHc@l3Jb+l6$7A4Rp11;=I+P0oIfR zg=Q4#ZPphw-hCc0W$*=ErD^ryA)t;oKx+ugyul=!7=~7y{$R*AB7ogB_Tdk9lNK5& z>dyTE+te_H**EME4sULlf~O*(lzB|^hwDENlrs2&R{F9!uApkA=p;!EK^vit0BxmG zbOhHPO|gKUBkej}d?*j8e&zOJb3O&b=)X9W@?l|1Vsn^mYWm;mQ7Pz`-B zq^cO$n*3J@q?zhc%{E@~>f;~r7@!LIQsnQV# zQVFgh2e0qY<<%V0o$o)EZ-azZO4Zs1X$}43?@?x$pkh1Sy$7%(UF-_NO#jJT@W8at ziEZDDGW&)oqH^maAZO#wNBZ_e zW4GAPxTtB*;9s?*sU5KY+5_h1*EBT@`^*Fg0M6I#wd%k=+C`^qmfX;%Hw4A?hAm-CgXeo-LHfARVB@z@y>P-=x?uS-ZkQnRu>aZTB8DtqQWOAbNZu=<;yL_dg#`stx>my__!E*b5j2g5B4Q2-BEnW?5P;R zrrF*%4)ty8KHD5LNAK$ZeO0yc83y{xE?Qh#I)i)Z!p>lCq;ub!26kji2rl6`1DJxv zX?#=RS^i@{!B#P}FQ9N)r2z}juP1Q|pP&MIQ02TT4vagUu?2pm|74!LW!kQkEvPS1 ztr|dIULJssv}r>YXX`mYD9FqAwqp$HOE|hCoM$f&Xcf@EZa2l;`&PqzRVDHn&fr{j zm8w$YW?&u;Wo;Pd*C%LsU|wmUewg800>*WjC8$&b=PLvHR;ux79x&UR@S>(`5id9YsHZ^iH4 zvA!avZw1mbN5w6JdglJO3hQ6Bqhjs62+gU1^cspu%9i7xs2cOWH7ZN<-WcqB+t;m@c z4k#Xf>3*}^rJWoweV-jKeFJHz;2)h6xi>Hk6P>7%v`o&DjZxP{QAT+rbw)Qj#(nf3RNc0FFy` zq5P8!KQ1x|FHFI+fg zIFjz*4dJtGMbE%_NiihHlYSb=vNWInMe;ofo!@K+#7AcME7HFw{xX=_u=Mt9@*fZj zc`Q*ZCqg(C(n3qGb|NjUr|KGrt2NTnA%(djE#RshSuTyV?&NY|5HE?P@iWppXNunJ z2Oz@s|EFlpdBsHm)5LTA%a*`Z+i{h9Ng(0pjNk83BWaTfVhJOiu4n;fRTI2x=c~=PRCciDM zz>b4Di1F@GT&C#S2@E3yu8GNmk5gs_#sZ2vVv$tI7Hr1b|V)CE1es3PzlDJ9YV zC#5%%rgKotm4KH{?F?Opc}+@ELG4EJpv`KhnF?qskKTdbBK7XZ@n9I^N)J{P4@tiF zCH2Q34wOql;0#*-Ea5?r<4xV=3=Lt>NC^K8Loz?$krU9QDMJQ$P-L`}jTszdLsil8 z2?9hCo>YK?qKCTwG!H;2n-vS$irf&tku;yVQTNLt9*}9N z8lK%%f%k?-euCTwFM7+MTGZ5{&2V)D^Kt=#eFPWjD^oBYQOhDvMO6JS^biz!6z%gxEt05KwDRrIg0++kry02B`}_*+;rB%sQ% z-@Ow(qvinu6?lLzhR_TMws!;xXr5=bgu$pYd)u*`xvZca$KxrPY>Fn)&;PQmU_<*9 zLSQ&|WRIrob+1S=H9k{O}_@I#P5Zl zSvpbCh#X6w>>+7X@E$Z&`hW}y4RpHFP&&PlB3~Lww>LT1foD(nfu0_xKXT>_AkE0a z95@p;?#G^(L*x;+G3V2Cx?I2n-3xHXwC0#Oi#Y>tpxBa$H^i~y`%oOT+hv-^E9K3n zM~DJ!QgMt#aTJA3b5PcvMRT&aWIvi?(rC`PKcB;tOv0ps0wrA1nV1Ae8Zt3S)%J=# zDi!wJ!Sp3WRU5F!WMd8^_Ne>C9#x~!pgTK^tYv^^)k*dFu=J+SlI6{$3&-2 z6Y>JlS>O|YXJKk(duK`3ZiaTUYZZOPI|TDG)~seM1Ju&?whm{}Bya_1*`bfF(->2D z)j`#&SxgT_w4JTNVHM58R&baD8rFJ!k()SSaKNN$4ug&3p!h3V>vRGuzKR!cgqj71 ze~3mn9bVwdMke&oS|SQ&^+tPYhjMo`WbCvV44i2`O34z+W+>-D^Hu70l&_;|R-+N4 z6DAM<`!(V>fe3&^VWnFua`K1>Xo8?s=>aKJg2W31q&u>zHpdX!dA>B=Y_XS7ZVML(MhteSdYnT9Q>ZwSeZbvy1r244fM%4KPN*bx( zw_7Np96wN|1ko~a3d^G;L8a6-%4U?L?zS0a-)OU%C7espfq8Cn6(;`Wd-=+mp`2AC z;rD+%{VJXLKcsiAJ&giq+J$Hd--zM$(<#)6e}`%j_%DQ6_PD_2{1U2N5Nxd6M!5`F zDF77~&Xb4gT|TFE)}50fL`B4nLQ_;fNj8Ny$4&8#LR0kCyDKyulD`aolOIM8p(dz^ zJAX~q2(jbp>*@Ks-}ulz{5MtU2YUaMlgvRUabmw^XMV~>nqXFO5# zN-`NU9vlLBt&;JZb^fC--Py3dG&-_=o%O_$6_U-E^?;1zwIb^;{OJ+_+LaSR1=ULe zinoFP1f^Bi-lLyQHpy~YBm^i0LsD3B_kvOXbQ$?GJN)%$>Drt2;A6x+_!x$Fcp)mD zEVKu4LM^2P3oao}CmW;>eFgskmGfvxCR99*`|0oWK0Naac%XMsaUUf;#~=H0cYX5c zxb~ZVzkmLw|0RU?^q&Iz#YWivYveDIUr<^zc?lzX4y$FpT2T6p3iZQY@GXLkCEz8= zhk)MqU#>4CU=w@@b^w8QcTPqlMYX3xqbr*ut2=lwM_tR94q<0R`9Zb~`%yQ5^XS3! zJ($YX9^;ECvlI582cYKm?CeE?;!JR%*U1uBS%wncMIxK*8Z14VLG!mA;M1Th8?XiM zXJz;%mG~LUGR)nqY&}Y}J%y!$9yrUd2KjXQBqr4Yg6R*ooCs z#xOOZ*cTV*Mq;Vt2DltnZh#BN9-M^-Wp1A&7nq=r^vz7TdYJ{j=S)BN{sQ>$T=;Xhc`p`U-r;od=~kYasVnB;DRhFBr-^T7Vd-XfzQ#~Ep_ogn%yf4L9u9y;Zs7pE z`ILFj6-tfKh?mmT`uL#f|~W6+c28To_HPc2I@f4|y#%?@P-gUJF|i zJX&4?M+n!UX#K12f}=}9L)cL!#Q<#E*{}R1NOFq+2OQN9Mul@z7+(~?@WKg@>-qs+ z6#2LUAHbnKBd|O@zxXHm`}}JaM@G1SaCK*|F&gx|`!RjCyeFvfNQ)#4G(n7doZU*W z89r&bit*QPSwfv4TT zJM>8hG^~tw;AHFb4y)KYQx+DhPW#baI!HkNMa4SNGUHgd;0wXDTf#?)a upLc2_)ocBerdUyfxX*ylh#U5-fRv!DTRT2NCsJ(b__+V{@XwnMC;ty$g0I2= literal 207010 zcmeHQX>S}klFiQp?0+cChrtXmK6FdHY7b=j+;O)J%iW%x#iAkWu-&V}qr+|YkKf(* z7)3J=vMLXfS(!x$QmLvknIz+S5ezc^?|*l*zhz&t^Xx2}WS_H>>?*s?K4zEMMfQF6 z$806Lo88Cj1m9d_NBI00-(F@_~W#`kCHGd}G!JH$I)&nMpC^*sB8zgPJD23KC; zf87eNf1<8C!>8=gP4=Pm?FqiQQP&)*dk+iWA7uYRoAS*QT&b`9jNYB$n{#}Uf7(7i zdxsGm;ko&%%X4-gbGDXksprbfUSLe@?+5he1|#||yN93O)X!ZtTXNl9H81b+-8G)_ z0Z%zc|Nc0g*9qoiH`~W2oE6UN1id*{Eg#~)b5M#utA#t{t`}(eNX??qRw%{q^v^D6 zbd$T{Ia;28YL7tUuZjvB!CO%ErD}fzV_eBLvYqS~Jdw{`NAK=gTCqLrpXl$WDL@o?Yei73-!48x(iMuN598Y$w$)m9neVldjtHtHSNFc zN?Uv6$b4(-m<7^(Bilx6o2tJrrt@i@S#9YtcS5@2n5q+WzJjfnSX~W+A74!K6p20TF75TgQ&1`<#MT@uS z;~6L++GGOBDt?mZx|h%lr?~P6y`g5Pa{UTsJ})Pl`oh)J83UBRAb;|?r&?>lS3w*Gl=Eru zX}8y)iztoFo>tY@!sq!J_)*QtJJri#@ABVJZu57sXOt24DgSx?o;pw0^nE(z`(h6s zVh(Pn^YaWdLP?SNyvDl=MSpTSIYhUR=bkre7KudIUrMxCpL~zYJ?OvJVrxVa+3ywf zdb??k5Nx9#ecXuy4Fy+csrJ?8AXBtg_E9C@89%hpcx$4lJnSHB6$a<}UmZS{`4 zekf`a(YB(wv|XQlfBmQCF+f$r^O>8F;!UN?MUz*bY}#-=S93je!WKAKS~8#7sr55t zM|(kX=PK@B%k`yrg}s#ng(=R^(o^shF$`_%6+DWv&7{So&f=(TZ3zz%6VXqg9XD;e z@6eWuWBIC3DG|r)>-Cck(NAIs>LyAB<&_BQrpEoc4Z#{ z1fg7ETzrPU)-@AsU;of2v^_`DY86i)A5nVkS9W=dXoYs|N{_nCv-rb_PMQ}aLSW+t zBKP(jkSIkzcnw&PxOyAXM44(opQM*dZWE=bb?58oS#ubNQvK;ZavtqbeXF+H@OnMF zU9_`q!={fIHI8EiW5{fOoS^48(TOvmf0j|Vt}9Pr8#ZbU_9+zJi=$b`Yy-zcr~dR_ zvVdCG=~tJ|OMYNCEEx}}raZtgB)Ve zY0Um}yp`@4=pj)m<DVKn$JVR5izu0!VxLH zJ5TF{Mtoz6L5vwijEPSD>Ai#@Y-fyYsNJmzL-2f&w5PYp-f70{hrf!EVi9idL3;uk zhuHQ9#Kx%5wBb-n(+}$DW-WIubFiY`y+`r_gkY6)}oon-Z1WHXyJ4mR091E`Bhz zYRrnp1bL3^vH8w+680{t>+lrtBdp}J-ifX_@&N19 z?sSqG?kUAa~Ez|29FpYwZI=2w#0L@!tYrFkV8 zo_oMM+gFm&Eqp>7O)JT4Px~Fd63pfd?6}*oHjAw`fz&Q=)vZ|MN-&}=4DA-V4h+xd z5bMYJ*4(!Ebzr16TY07zuiv&hFs$~}e$GSHf#F=vZ@a2j1!vB$(NdK0`qgRHlogoY zzN=?-D!T|Z>Reg2Ix_ld{gORc)h;!z;?{tXGkU6{$k&f?&2RNCV}*+}H#KKiBSh*+ z($@Q_0mJHVa=NIVdsmN(6<${G{2iQB#Qv~;9Oa;Rg`MW^J+!tOF!NVzQVp2Ary>8l z{Ea(PdhGz|Zh>-AqtpKxQ{(juV?|kFQL4}Ave-CLAjm+U4=`Pjc2W39SB?I*Z? z=yhOXoProjzxKxqp|xwAICi2_oz-+r>;865#G=#Kt>Bn+U!SxZhb4?t5pCR zI{;#NgmLmC`jpwwl!}8`5}k&DSmMyBKm0#@3m8XUV<<-%_6Ell4;?R^;^37yx;0U$8+IMP)@x<~d3BS#QeN-QYqirRzpo~KZJ5<` zraLHX%a^caE$96|Z9i@Ij$e-S=!d?V8jDhWqW-baDh`H7luG%v^J0L_QAG1|KmYX^5h#!#POiUYoW%qrZHv<6$kUhk*7qbVdP-+r}q+uuwjTzoN~dl#N7VEn9gU7 zqw$iLJ1;h9yaGFZ8yB6DZ5oDcN^}|qof3x7`cuF5n;)^M&c|973=u2SHWrFVTCc0t zOOzVQj*t|K=!(o^X}|GPD#asg@rWHnBX*W19uX^69?L@Yhs=qDL*_@sqEsBcH(ol$ zi5w*=x#Pv!C)E;ZTc3?XrSWUM#l;Y&F3etbfvmN&?5nE&a-{yB8qTTsf?Z`PDpQBOZo<74$_UC}2$ zE4o4k+avXlr&$_o`B>c_x^m1aP$XyAuBDc_a?HxNS_t`CEQ?${hFMO6SMoj9JoXe) zNf~rede%L~$`KF2%eSaSc>+0p2L8UqtGv5b+)k;ZjIesIerlfUU#M?R(3cyMsUOlEu-{)6&Db9SoIxWnl6b(PWeb=ncukg~gXB*S{5c8kl>RX-4Fd_$a zuC(Qn@1nxlUiJhU{xbV*%G=s%6~`@ARD}CyRmWmo6Jii|yROkz@5sxVtvA%>Ti}8C zb!6_V^^Lo*eT+@m$7|}*xJImJ`T^QuU9;_PV=>>@saC8M!@4%x;5MG{pry2Ug}oK` zo?BZjnJx6uWj{5tCm&ran{L{+k6!x(%q3}Z;=X>;A#^c!TwO!gA40>j6>9yi(abo0 z$Qr1XKjn=aWY2rBQBKdDes!IxlzjTxyf<(D;!tVKt8K)Vw9=eOW|f8E^F*hvT5n8r z>QC#DyPH|FMYDdf_#kilLTQEm_#iY!iAAM^QM#b7F;OXDl&%>;an^_Wq|@-NUo77* zS-&oNbxc(1Q(j}C6ncO=(Q z$t8V?jL%E#m^ne7=M{F{*eTQR*(cm*lFm=N1bw(0h&#P}R7OaeZU}3pF{soh$`6h1 z#)KOZorV$J7!q<=j(RZMT{L^AP4jus9$Csb-VC-6p+8AVc1iQMd3CM9Br4gxCNp#L zpKJcoZkwU(wi){xR`bY1bGs?=2Yu2a)Qg&3sN+Oqpi_TZFX0E82#$tV3lT3LgsGCDm{6WiS`PC(_$ugyw ztI4DpGlI~bZ8|Y*u_F*;LJ)n*Q^F873_%2u)-ZhMP{xRk_lL%brHG%p#B6mNwv!9S zr18c}r7_`$L?yQmnfILf^_u#l(&AzVQ|rZ?fBdV(C zY9bE`l~pDC4VseH|Fn!Y7QkSsfVOEA?v@y$%ddp>`w7 zWv&CWsklC0nPib`z_99(Xx@B}hfo8CYxbhKjg&23zwI?(y3G0f8ZE^dAN6X$h_0UB zc2zG6)}LRUrCqOh<~^xAzkOHF>eO@*PO5XI-4<4Bu4ubj9Ch95FZWR+grj!1>l$tK zjyly};#Yo=>}OVe*`A(hS?#&8_pZ_ES!U%I#yX^ijQP|~tzu1=73>mO$ImM2E3ozp z=e>A^y%qOv+G^DodQ)y|slDa;yLmNgU(Q`9>mxzikF zTa$_5 zGa7ePC0W0E)-M)jP4+MO7Ik(F5Ty;B;plp2P2F=jfA$p-dGr(^{e%L?{~hcx0$-i6@^S4@1oRMJtU%@C@=tRYMH{?eR=5=Ym?^2+*?qR_}84xN%s zvTHGehU7mNCK?l!`t-=gAx*KgUZ0d|jvkibME7;IM<|`B=Ch()ENMy@qMHp&bn3dc z83#qgqEnyNDKw6V6Mx-Ru}vusF^r7O{`6joLD*st%!XK=>h^IoUMvhT zW}T<~+pt-BiBk0bQ@zw5Q$1Dzi9RhEG~X9m0-+?>67WX`Q|&@NyP3dF@M5tlAG+` zvxnI&*0;~Fr-ZBA@3TMQm!ESseAkOvSFO70%9Q)h9+>e~X}6o1vA@D<(&e}MGm~%M zunlun^$D&KKF+>i7Or43S8m?uyskX& z#qsT8p`61hc#}b%FMMI%dHv< zueneadN_(x)xsg}JV(6gK2FD9pVr3tg7)=pqc`}E{kc$Ab6#$7FWdi!v9k}lg%wmA z*~I(eXvD_s;o4uPm6(?eA(weZvOhH95{R=+*Dy6N2QW^X_(YQzT^gJ1>oiJd}k7558u z*D$kua{e>>U94cED^{_ph1^&Cw0tL9uE(b~xoea8Pe0)dI_3plS>dYMF1fS|r|Nrc zxYGx>&T8LJEW{-bZIEU=uGM2~%I&;Q-#fnf*D_UKXUJSo%e0xvE-S$<9ttl3>xIlD z;XfNMly#Bjomu>oC}3vEMPaFr#HvAUt>!EW#M43KocY#5u47peYD$ZU7ZrHJ+&t1$~SDd{GG)Hv57&v>?;ZX?xm(lciaW-uNk;@KVnH`|L=_Xp+ zrHzJ!v}N20X*b!O;G%nIoZ)L7-_`$kc1~N{HV9GQYm?NWQy^hIQdfRlTpHHjOcc=b zKS2z}?)8PGKs+tf2ijh(9km}X+LoH}Mc;v3*Bx!I!vB+s@QZ=A*A(`zj#Q7f7`qnE zFJo|9%z%>F#&)_SdP`y94WMD}wb49kv#_?_$Y@-;qHAo#)#u@$?2YN{Qlb;m_JOqh zWcj%`Yb?oszFCP_XrIM&#;yRJg_*fk@sixj(N)Utj? zwnlD!M6bKYLtL>CTH}-@Ld=#Bwl9R;om(~bw8dsqj)?XwT{0bZ{>QR5u6fKix*PKB zkHNbMJO81zPfQB*5x?G8`uO!aa&hfD0lOpYMavG^1ma(Igq`*~@?7Jz-|+%;II}h;XA?CeWB~F*<`agCtmbU_hM-1I^^uf#CAiSe;?=HyCt_x9SNf3=4$|b zVC&6N`FztKvk)1tkv@v|N9d>QOht?Rkw=?YdkBRg&ANXEj7`6tA zNr67Fw(Nw8jkTZSv}c~{?c>aB@)u9bE1!k!t|A`?L(dwc{VeRRCkNKaR%za=dM6*3 z=bv)J+Bfx)eSgt(LG|m%t>KD9n~0nysHs~ zEw(>=WFHpSgq{7Es77;vZ(OO7y{v-ncwR?J^G~{I+Sw#{$nzgh`}Be7wJgNlbvX-J z9-)fG1=f(Ib`9&j%&vpu#`GcU+sw~LnKi~Rn4VHLuj)?oUbV;cJ8H*iH6KVcMLA2R zKTIF;1eLBibz{Kv=>!#j`RCzJ@aW31vv5E>TdI5E8%Yj({>OmjlP^_&Ckw5IZwVOk z{KwNj@v%JXjPR-BjL+``%PkKR3GW)8Uo0%Y3f{8so3&&4ek=QQ*HA9ho%WNa{iIiF zHPY99((b&fk*+Q77B(`e?Tzip`OHi9Q2&U9YJ*7A9JzD$ThBW`wRB1=4 z$eqich1NbH=RcnI=>yB_-Lm70%Wpz1?I)9rHP@!j?$vm4dDbIk7F6B1{8+I(BYDI} zsYWODTgtLo{4AT4!EL+?>mJ5M^skXkbD5p0 ztoNpwHIhFwLGJyR>=RnK#(&4Cr*f(G(OzWVqgBb$IZ^GGv+6fh?Qk1-M$OevxQ!U6&ojgw7 zP?eW-u6nzZU-aqc&mdbLv-jBtNK}=pIJ$bgYP94k%w-s&Tx$+!4j!UO5G|L!jt2JiPAYthyYdpiFK*G{_4Q5-z z3ay34LxDabFZr?i#?!<>L%`D^PjyLnni{d)i7p98 z+bmeZaD8Jqz4MLyNgXSGs*P4Qe{()US%XdJwuUv!2WakxOKWXTZPxwp?MsHGz<4lR zsQC}8gT^!eePHN*YHsFnWPA)A@|5!V`!Dlj_l==xVTORA!^Nb-??Y($@On41677Fx%r1eQ~%ah%)h0{Ik zRdBjTqwDO+42h&S92x4O70P)W{bhHAi$*6T-6a;C5cDOoON#r|5`OC!zoj_nxaWT? z=xwNR=&{UyALzNC>X`>BFY;aX5^2>9BH{BP}J@QPhZIch3FmpN`L`TeLhP_4>@hRS)sdJb)(s@_s zS2}mIA8{|weSH9*_zJI*r*{l5`4sPYChSC=G0W%OsP$8Ghi*y7|ITqD?5*mN`G%gh zt#11S?H#MLq7U)kIdUKFBcfS7?QJ*vDZ7Kwa)h_&-voazR9|?`^jn-rdxCx*WdFkF zv@R#v5BR-NpZ;CtQ}86Db>N;&{A&DDY_ph$P2~R$qoBS2gqA4bM`*A3WO*(>zrZ!j z^1cC$KH)w4^%!Sk-(=4*bIj;q4@dUsL zs9$c&Q0q13kul>*_M3`+Xc`Os`6=i4%t2$Z;E(X^Ys|(KD8RY-sHpn@Gj@R7gV%U{ zjP`fbh*$6*{WNj~d6)BegU?=1dvT3ZjfLMn;9K(Y1mA4pFW*hFKZ9!IiV0dc&;Ei} zauVB=IVauiW8uj3XeQZzp>LPqjw^NNclhpU_7I=_H~tfOv5(2{Fwd>BbFrCiv5<8+ zotnFx>(ianiB@<5`P!7%Il8fN`nvMh=X1L74K)F|TC|xDPJgX9vN@m1+1lm4@P z=%wh8kKj~&CAE-9gy=L%obbI!>ovYzL=KlK0Y*MVe-yc~s8Q?ca&q`4`27CVmo2tg zexhCD7N6Wym&+Nm_Lj@fZ?4O^T3APya|WmrKSLjqBWSHz(_y0aD;;J3ga7W}mpYiI zwwo)c7mQuddd{DQ=M$;xsmE{eKQRIIzVw)%UgI;KKCdmv>~Y+g#_RKAuyOr9EG{+s z<6d>U?D{J6L6J*~{8yjz1w|CwDnF??#}Td0<2W6uWZjQr*lL4^^3>#aZMds`>o&TF zvFBzU?O3&X=JGDEr{HJeBkE_tZ|9az?I=$63szBFw|1o}iOptqZ8uDR*P!9;{MfC( zYp@vQcFC=V(ngkcbD!GiFF3?pFWS?8|9rH&0bE@kw~uyx&Zk&Czw^22)N9@76iS}x zp@yJSsCHK^{cS5xVuSqBUrr+OulKf9oWg&*%;gF}|D8s3D$9mV``Pxd=VM8473QRO zLoZ*v`!j_Z=-0mmMq{++FRie`6SQ6QfXH*M$V3s{G6v#`CAnfq;vKvNWh9cbqC9M_ z9P_!w7R&tmMvb0W`~suDRya5xzcR6^>u>FIX14IN2|s{OsJ2mlibN-lfvJxaqLx_Q zSImC?SsG=UXPWpJ^Yk~s)%xUL;`eHM<>zwFiT)TFEI;k0xTyq3;#5trj zT1BK{bNaMmE9GY#sF>Oj?mty+Fkg=tt2nm*m_Cb7l~M5-^b@(GP)6ly$vly>UFQD$ zx8?6_k|DOi+$DC_cv}yF3W=X57}ud18+rK@qdHTgqI^8WXxht%%sS%@hnRPfI^BL; zN#Pjog9_rcxFp5TtkZJ3XWi(d1I#tKXAQJo$E(B|MJqk(FzfT4@Mp{gvvui@GnyHf z5|WETdhod}N(ir3^-WRMjQ%Lc*H_OFXVJjf~d% zLCJ}%8!!st+C5yKb*GCh$wkgRxK#0N6=@t z(4T@ROjOsrKU6l52qB(?3B{=S<-AXqe6dGm8)D|X8a=St7xB5wU1j_7RINfi#2ih~ zn|t7=ypDUSEX!(3VrM`p|Cop>?QzB)7>m``xq~R}S?K(m2|U-s>tffj$K* zBqpQxCAJ|98rz1w-GW}@$`qv_4i=NRhg(+mpht+lt`!#Jx?&q`Rc(dXj?wrp3KgGD z{S~fr=lvGOy!rkDuM(xVtschHVqB#rUZWQ(R@@~?KJ=KxX56$PPQHQe{|R$xRxSj$ z6?NJ}*ogLMx!!ZA-}=&RqIo#yE_!s)Y@|0mKeiuBuhCKxk@A@?99ZUzqFyQ@Qn#;3 zzjhVB%mCrjimjBN;nGUQr`d2D*Yh`&eiIwyYRNp2z3GYtB(7)LEMoydZGr`u_aVLx zxrlPkIpH0D#wx{+n5FfWsG!)M{h5DO+P@EcK-$y#unNv>KeUS!FR$kktq&M||o}gWc<;`oISc5C+(yI@^5{xe~BS7mrTfSD&4=dW0qPD9O6{Y6m zTEH59W=9x&Xg!I(yR{y(y*^?VCg_pqyfzf5wn9zG3`Q9- zGemcc>m#ZlD0mBY3KO zUA3jR=*66YveSsN#4>}XsO4dKKRJZWE z2alLJ(2R$1rR){n+p!xzEsxYZf4B0T&a9T*8TB~HzLMLFld4(%%f?Bo;Nei5^b-2w z2)cqAk84BBK_D+}t=P9tvYq14l$WaZart+US|H zh}Em7Y&YR7wy^Bhj&tDC+7X#?|C&Uz>{_afn;7%z6F14)PT5*D<0My|&0Q<1CSD&K z0w*WAc7e6gQRJj+#Y>E0>z%kR?eqeeig=3NC9kE&`beR5X0b|Sxf;=)hsj+YN*ip> zIB1o}Wam5gzj6O`**~BsWcPK%8pvI5a3?)??&98q7kcKf6lVNkyc^eS<-Hu&HEm{8 zaJp$-FhRQ+W$cIc)z6H&xU?C{cg>X<@hWe$W8owC&wbue{tD6=GgMQ-AXw~0p$FrPK z*&o(cuf{?Fb>>(!VOd(+Xj*0xRk1+1<)48GS6m&+OJP&G_?<)F{gXU3e_Z36!oJ(n zxgY*U9HK?PJR_NOzDDe`Z_U~Y?FZX&g0VOnOOx7>1G?u2)>_Z<7yk<5zq+egVFoHdeWR@HZVzOCxAwZ|15zZ}DiIKM6WmlOYelye^Z$%*gw zBtyto|9sN7Sz9h7;V1qZ6GuqAHsOeqZ27Pf_fR(D`&p7}_T0?6s$VFM-_eJ2fyw4)P2p`GWa3XdS^@wA?uR~Lo6ePXvX)mkOA?7Z#?2x zUkqaf!oM%=zr`V}*623_ILiSqbBQ?$9 z3BK`wZ+~vl{nyk#?)7cYf6F$1`fMCu*)YD_^DDp2EcR?)sK2%hk_eO48W%a(PCuAE z^YlXf@?J?gQldCWSzto6Zqi*nY_?`p12Fs518Rd>QNHtX7R zY`BYU{)}0Ah^KtP>odIal&iPcUn3PtdAcmMow=tNPjJ=5<_VH=lDpjRx=y#oXXrUG zbG7^JGaJ|OoWbf|q1k+sxQ@HNXLHjeYtMD8<;tCy)vAYvgUVd@7&3K&9qKpOjn0!& zyYrmr+b}$rG~E{VE>d3e8njPM$NDNwdF~0U&lU8noVDAX<78DR1jpIVi`vD>G|9GV zYi#U=?D5ccB&3#;QzoifF8s6CVAsDi=Jy|A*;#+*M4ib<>)xH`MGLg$`A6sx&wJB& z=NWWAkuK|Ke68$4eT7dif$pRd(Q`;HD{)j&!F`|(YJ(zA2w%v$pPVoEHHT>S&pqQL*t$GHdZ}ye8H-nbf>1&#`?1avYs2t7vWLKdk8#!s zpXzF>`qZD%?<<9ViL2!lOKDG^ro*@i(bzBQFV_oy!RQXv=~k>kw2gPXM%Sk)w^)7V zE7)vuk<>#u$5UA=;7C!4_+IL=@my1$I71JBRl`}SK*m~jZ~&NfNbztC-_!QwBcHdRH&BI<=MNt_~bLL;#})lDbKKQ>{ERI9CN`+ z;AVz-UJg&K=PXi|cuG0XFeOT3bp)P|x{c2c@!vXTiT~fhyG`{yH4D-IJN%yDvlCE+ zyd{3Rexgl6HP_Flx{;8wPAIm!3+d&Ii$8M=3FGM^q#`AT@LN_wK*SUj&^BO<5jsW zWE~$Mf4Y)jdhsJUx<{DbLr6U}iSU(3yqxySnRzJ*)QNkL(3jBATGNsvh#aW5??YEp$H(Skp446B;$`5H zq9(u5Z*+*6Z~xh>jAtb;c`< zjw=rnc$^Y{)m&h>ubtKSGWDA6Hb%GET$-y$$%X-0^``9q=PQ7T*EE6uPb$u?5<1&X z(n?Fdn(I0}RxSmBkzD;meLsO8#_RIf%6NQI5&mb4gr}j= zuO$~&+uB15V*;t%qY3hXMVw5-vKX3%#HrkMP-)DD1``PZyL?8 z^OW3C?M*&^kmIKZER>pkZE?Qu;py|nZRCUeSmm(%_tkHuHmr%M**q65U3zuHCByT5 zpt>y`O{qk!^SHEkie>NuC>LV2(HX12-&d5fpcU45_Q+gIF z%1ACK;~lQ08I)$XV4Idb#g(^8TjsBvw=yGZ2gaK!`-;?=tlcGj zXzwR*rA^iu=V?to!!;YGpS#X$>@!wh3hK-wqXgPsT@_*gCK5&8pVrK7!x#se6%7$< b Date: Mon, 24 Jun 2024 16:18:59 -0600 Subject: [PATCH 13/41] correct call to private method --- test/gbxml_hvac_import/test_air_system.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/gbxml_hvac_import/test_air_system.rb b/test/gbxml_hvac_import/test_air_system.rb index 20e9c0f..edf8d42 100644 --- a/test/gbxml_hvac_import/test_air_system.rb +++ b/test/gbxml_hvac_import/test_air_system.rb @@ -237,7 +237,7 @@ def test_set_schedules air_system = AirSystem.new air_system.air_loop_hvac = air_loop_hvac - air_system.set_schedules + air_system.post_build # calls private method set_schedules expected_infiltration_values = [1.0,0.25,1.0] expected_infiltration_times = [] @@ -246,8 +246,8 @@ def test_set_schedules expected_infiltration_times << OpenStudio::Time.new(0, 24, 0) space.spaceInfiltrationDesignFlowRates[0].schedule.get.to_ScheduleRuleset.get.scheduleRules.each do |schedule_rule| - assert(schedule_rule.daySchedule.times == expected_infiltration_times) - assert(schedule_rule.daySchedule.values == expected_infiltration_values) + assert_equal(expected_infiltration_times, schedule_rule.daySchedule.times) + assert_equal(expected_infiltration_values, schedule_rule.daySchedule.values) end # puts space.people[0].numberofPeopleSchedule.get.to_ScheduleRuleset.get.defaultDaySchedule From e840374c8de36320e42d94963f0bef2cef666fc0 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Mon, 24 Jun 2024 17:32:54 -0600 Subject: [PATCH 14/41] Revert "update standards method calls" This reverts commit 6e5a819fb60e3abdea0101dfaa88f3ea8c0e14ab. --- .../resources/os_lib_adv_import.rb | 25 +++---------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb b/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb index b51ec27..8d81b3d 100644 --- a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb +++ b/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb @@ -41,7 +41,6 @@ # constants for thermostat and humidistat schedules STANDARD = Standard.build('90.1-2013') -STANDARD_VERSION = OpenStudio::VersionString.new(OpenstudioStandards::VERSION) FIVE_PCT = 0.05 module OsLib_AdvImport @@ -273,11 +272,7 @@ def self.make_thermal_zone_thermostats(model, setpoints_thermal_zones_hash) # thermostat thermal_zones_array.each do |thermal_zone| - if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) - else - people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) - end + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) make_thermostat(thermal_zone, htg_sch, setpoint: htg_setpoint_degC, subtype: 'Heating', people_schedule: people_schedule) end @@ -312,11 +307,7 @@ def self.make_thermal_zone_thermostats(model, setpoints_thermal_zones_hash) # thermostat thermal_zones_array.each do |thermal_zone| - if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) - else - people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) - end + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) make_thermostat(thermal_zone, clg_sch, setpoint: clg_setpoint_degC, subtype: 'Cooling', people_schedule: people_schedule) end @@ -405,11 +396,7 @@ def self.make_thermal_zone_humidistats(model, setpoints_thermal_zones_hash) # humidistat thermal_zones_array.each do |thermal_zone| - if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) - else - people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) - end + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) make_humidstat(thermal_zone, setpoint_schedule, setpoint: setpoint, subtype: 'Humidifying', people_schedule: people_schedule) end @@ -444,11 +431,7 @@ def self.make_thermal_zone_humidistats(model, setpoints_thermal_zones_hash) # humidistat thermal_zones_array.each do |thermal_zone| - if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') - people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) - else - people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) - end + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) make_humidstat(thermal_zone, setpoint_schedule, setpoint: setpoint, subtype: 'Humidifying', people_schedule: people_schedule) end From 944d1b8f8dff62bbaa7633d3d4b707ed5eb4a0f8 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Mon, 24 Jun 2024 18:20:24 -0600 Subject: [PATCH 15/41] cherry pick 6e5a819fb60e3abdea0101dfaa88f3ea8c0e14ab --- .../resources/os_lib_adv_import.rb | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb b/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb index c55aeef..b51ec27 100644 --- a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb +++ b/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb @@ -41,6 +41,7 @@ # constants for thermostat and humidistat schedules STANDARD = Standard.build('90.1-2013') +STANDARD_VERSION = OpenStudio::VersionString.new(OpenstudioStandards::VERSION) FIVE_PCT = 0.05 module OsLib_AdvImport @@ -272,7 +273,11 @@ def self.make_thermal_zone_thermostats(model, setpoints_thermal_zones_hash) # thermostat thermal_zones_array.each do |thermal_zone| - people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + else + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + end make_thermostat(thermal_zone, htg_sch, setpoint: htg_setpoint_degC, subtype: 'Heating', people_schedule: people_schedule) end @@ -307,7 +312,11 @@ def self.make_thermal_zone_thermostats(model, setpoints_thermal_zones_hash) # thermostat thermal_zones_array.each do |thermal_zone| - people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + else + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + end make_thermostat(thermal_zone, clg_sch, setpoint: clg_setpoint_degC, subtype: 'Cooling', people_schedule: people_schedule) end @@ -396,7 +405,11 @@ def self.make_thermal_zone_humidistats(model, setpoints_thermal_zones_hash) # humidistat thermal_zones_array.each do |thermal_zone| - people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + else + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + end make_humidstat(thermal_zone, setpoint_schedule, setpoint: setpoint, subtype: 'Humidifying', people_schedule: people_schedule) end @@ -431,7 +444,11 @@ def self.make_thermal_zone_humidistats(model, setpoints_thermal_zones_hash) # humidistat thermal_zones_array.each do |thermal_zone| - people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + else + people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) + end make_humidstat(thermal_zone, setpoint_schedule, setpoint: setpoint, subtype: 'Humidifying', people_schedule: people_schedule) end From 898149facf625373e47dd9bd09d5e0568f9e9df6 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Mon, 24 Jun 2024 18:23:23 -0600 Subject: [PATCH 16/41] make constant name plural --- .../resources/os_lib_adv_import.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb b/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb index b51ec27..508935b 100644 --- a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb +++ b/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb @@ -41,7 +41,7 @@ # constants for thermostat and humidistat schedules STANDARD = Standard.build('90.1-2013') -STANDARD_VERSION = OpenStudio::VersionString.new(OpenstudioStandards::VERSION) +STANDARDS_VERSION = OpenStudio::VersionString.new(OpenstudioStandards::VERSION) FIVE_PCT = 0.05 module OsLib_AdvImport @@ -273,7 +273,7 @@ def self.make_thermal_zone_thermostats(model, setpoints_thermal_zones_hash) # thermostat thermal_zones_array.each do |thermal_zone| - if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + if STANDARDS_VERSION < OpenStudio::VersionString.new('0.6.1') people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) else people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) @@ -312,7 +312,7 @@ def self.make_thermal_zone_thermostats(model, setpoints_thermal_zones_hash) # thermostat thermal_zones_array.each do |thermal_zone| - if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + if STANDARDS_VERSION < OpenStudio::VersionString.new('0.6.1') people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) else people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) @@ -405,7 +405,7 @@ def self.make_thermal_zone_humidistats(model, setpoints_thermal_zones_hash) # humidistat thermal_zones_array.each do |thermal_zone| - if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + if STANDARDS_VERSION < OpenStudio::VersionString.new('0.6.1') people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) else people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) @@ -444,7 +444,7 @@ def self.make_thermal_zone_humidistats(model, setpoints_thermal_zones_hash) # humidistat thermal_zones_array.each do |thermal_zone| - if STANDARD_VERSION < OpenStudio::VersionString.new('0.6.1') + if STANDARDS_VERSION < OpenStudio::VersionString.new('0.6.1') people_schedule = STANDARD.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) else people_schedule = OpenstudioStandards::ThermalZone.thermal_zone_get_occupancy_schedule(thermal_zone, occupied_percentage_threshold: FIVE_PCT) From 2425d33c3f6d852b26f0afe17b530ead3c9d0e5c Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Thu, 27 Jun 2024 10:14:41 -0600 Subject: [PATCH 17/41] cherry pick 0251fdc9f0eb7c981cf6a088bef9a06f9c69559d --- measures/openstudio_results/measure.xml | 692 +++++++++--------- .../resources/os_lib_reporting.rb | 1 - .../tests/OpenStudioResults_Test.rb | 30 +- .../openstudio_results/tests/os_results.osw | 54 -- 4 files changed, 366 insertions(+), 411 deletions(-) delete mode 100644 measures/openstudio_results/tests/os_results.osw diff --git a/measures/openstudio_results/measure.xml b/measures/openstudio_results/measure.xml index 2a44531..e75e26c 100644 --- a/measures/openstudio_results/measure.xml +++ b/measures/openstudio_results/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 openstudio_results a25386cd-60e4-46bc-8b11-c755f379d916 - d249451a-3138-44c8-96b0-380bb31306ee - 20220420T063707Z + 4da5a676-00b0-4969-8e42-ca1836104174 + 2024-04-04T16:48:04Z 557BF06F OpenStudioResults OpenStudio Results @@ -597,40 +597,16 @@ - USA_CO_Golden-NREL.724666_TMY3.epw - epw - test - BDF687C1 - - - EmptyModel.osm - osm - test - A597C804 - - - NoRunPeriod.osm - osm - test - 32622D37 - - - 1004_SmallHotel_a.osm - osm - test - C62949E8 - - - HeatingOnly.osm - osm - test - 99A21A4F + LICENSE.md + md + license + A21A3ED2 - EdgeCaseModel.osm - osm - test - 4EEA709C + README.md + md + readme + 42709140 README.md.erb @@ -639,34 +615,15 @@ 4F81E2EA - PeriodInConstName.osm - osm - test - E41FBCFF - - - add_tariff.osw - osw - test - BF680A60 - - - os_results.osw - osw - test - 8BE06CC3 - - - ExampleModel.osm - osm - test - 42C65747 - - - LICENSE.md - md - license - A21A3ED2 + + OpenStudio + 2.0.0 + 3.1.0 + + measure.rb + rb + script + BE52586B Siz.AirConditionerVariableRefrigerantFlow.rb @@ -674,6 +631,12 @@ resource 03FE1A62 + + Siz.AirLoopHVAC.rb + rb + resource + CB3048EC + Siz.AirLoopHVACUnitaryHeatCoolVAVChangeoverBypass.rb rb @@ -698,6 +661,18 @@ resource D9C7B04F + + Siz.AirTerminalDualDuctVAV.rb + rb + resource + 188A0336 + + + Siz.AirTerminalSingleDuctConstantVolumeCooledBeam.rb + rb + resource + 497B757F + Siz.AirTerminalSingleDuctConstantVolumeFourPipeInduction.rb rb @@ -722,12 +697,30 @@ resource 928AD5C5 + + Siz.AirTerminalSingleDuctUncontrolled.rb + rb + resource + 56A45890 + + + Siz.AirTerminalSingleDuctVAVHeatAndCoolNoReheat.rb + rb + resource + 07C7D411 + Siz.AirTerminalSingleDuctVAVHeatAndCoolReheat.rb rb resource 8181E136 + + Siz.AirTerminalSingleDuctVAVNoReheat.rb + rb + resource + 9C7E63CE + Siz.AirTerminalSingleDuctVAVReheat.rb rb @@ -747,712 +740,718 @@ B5935D31 - Siz.CoilCoolingDXMultiSpeedStageData.rb + Siz.ChillerAbsorption.rb rb resource - F49B1290 + 24B7DEF3 - Siz.CoilCoolingDXSingleSpeed.rb + Siz.ChillerAbsorptionIndirect.rb rb resource - BBF48848 + 76A2678F - Siz.CoilCoolingDXTwoSpeed.rb + Siz.ChillerElectricEIR.rb rb resource - 7C8C613D + 84A1845F - Siz.CoilCoolingDXVariableSpeedSpeedData.rb + Siz.ChillerHeaterPerformanceElectricEIR.rb rb resource - 13F4AE89 + E8A38029 - Siz.CoilCoolingWaterToAirHeatPumpVariableSpeedEquationFitSpeedData.rb + Siz.CoilCoolingDXMultiSpeed.rb rb resource - 976B77E0 + 5DC15ADB - Siz.CoilHeatingDesuperheater.rb + Siz.CoilCoolingDXMultiSpeedStageData.rb rb resource - 8876D9E2 + F49B1290 - Siz.CoilHeatingDXMultiSpeedStageData.rb + Siz.CoilCoolingDXSingleSpeed.rb rb resource - 0826996F + BBF48848 - Siz.CoilHeatingDXSingleSpeed.rb + Siz.CoilCoolingDXTwoSpeed.rb rb resource - CFF6FD8E + 7C8C613D - Siz.CoilHeatingDXVariableSpeedSpeedData.rb + Siz.CoilCoolingDXTwoStageWithHumidityControlMode.rb rb resource - 21C18242 + 71B9A940 - Siz.CoilHeatingElectric.rb + Siz.CoilCoolingDXVariableRefrigerantFlow.rb rb resource - 9F851055 + 33A2EF90 - Siz.CoilHeatingGas.rb + Siz.CoilCoolingDXVariableSpeed.rb rb resource - D2EBEBE8 + BCD84FD5 - Siz.CoilHeatingGasMultiStageStageData.rb + Siz.CoilCoolingDXVariableSpeedSpeedData.rb rb resource - 2E31ED2C + 13F4AE89 - Siz.CoilHeatingLowTempRadiantVarFlow.rb + Siz.CoilCoolingLowTempRadiantVarFlow.rb rb resource - 6839F982 + 91F9A6CC - Siz.CoilHeatingWaterToAirHeatPumpVariableSpeedEquationFitSpeedData.rb + Siz.CoilCoolingWater.rb rb resource - 74DD319B + 51BF281A - Siz.CoilPerformanceDXCooling.rb + Siz.CoilCoolingWaterToAirHeatPumpEquationFit.rb rb resource - E684D89F + 56012E9D - Siz.CoilSystemCoolingDXHeatExchangerAssisted.rb + Siz.CoilCoolingWaterToAirHeatPumpVariableSpeedEquationFit.rb rb resource - F7D9D3CA + D8AC4130 - Siz.CoilSystemCoolingWaterHeatExchangerAssisted.rb + Siz.CoilCoolingWaterToAirHeatPumpVariableSpeedEquationFitSpeedData.rb rb resource - A57F3EB5 + 976B77E0 - Siz.CoilWaterHeatingAirToWaterHeatPump.rb + Siz.CoilHeatingDXMultiSpeed.rb rb resource - A098B515 + A556E71E - Siz.CoilWaterHeatingAirToWaterHeatPumpWrapped.rb + Siz.CoilHeatingDXMultiSpeedStageData.rb rb resource - 07E8000E + 0826996F - Siz.CoilWaterHeatingDesuperheater.rb + Siz.CoilHeatingDXSingleSpeed.rb rb resource - 7004AE6F + CFF6FD8E - Siz.ElectricLoadCenterInverterLookUpTable.rb + Siz.CoilHeatingDXVariableRefrigerantFlow.rb rb resource - 18EBC96E + FA85C75A - Siz.ElectricLoadCenterInverterSimple.rb + Siz.CoilHeatingDXVariableSpeed.rb rb resource - BC32B664 + B0795A65 - Siz.ElectricLoadCenterStorageConverter.rb + Siz.CoilHeatingDXVariableSpeedSpeedData.rb rb resource - 6DB2193E + 21C18242 - Siz.ElectricLoadCenterStorageSimple.rb + Siz.CoilHeatingDesuperheater.rb rb resource - 09891066 + 8876D9E2 - Siz.EvaporativeCoolerDirectResearchSpecial.rb + Siz.CoilHeatingElectric.rb rb resource - 1838A992 + 9F851055 - Siz.EvaporativeCoolerIndirectResearchSpecial.rb + Siz.CoilHeatingGas.rb rb resource - 70108C0E + D2EBEBE8 - Siz.FanConstantVolume.rb + Siz.CoilHeatingGasMultiStage.rb rb resource - 0873B844 + 7400F394 - Siz.FanOnOff.rb + Siz.CoilHeatingGasMultiStageStageData.rb rb resource - 6A4D13D9 + 2E31ED2C - Siz.FanVariableVolume.rb + Siz.CoilHeatingLowTempRadiantVarFlow.rb rb resource - 1C8795D0 + 6839F982 - Siz.FanZoneExhaust.rb + Siz.CoilHeatingWater.rb rb resource - CCBA4A1C + 4FF2C33A - Siz.GeneratorFuelCellElectricalStorage.rb + Siz.CoilHeatingWaterBaseboard.rb rb resource - 77624FA8 + 6FB9C164 - Siz.GeneratorFuelCellInverter.rb + Siz.CoilHeatingWaterBaseboardRadiant.rb rb resource - 942DB736 + 934EE18F - Siz.GeneratorFuelCellPowerModule.rb + Siz.CoilHeatingWaterToAirHeatPumpEquationFit.rb rb resource - C00B75A0 + 657F7E78 - Siz.GeneratorMicroTurbine.rb + Siz.CoilHeatingWaterToAirHeatPumpVariableSpeedEquationFit.rb rb resource - A70FD5A9 + 4D794434 - Siz.GeneratorMicroTurbineHeatRecovery.rb + Siz.CoilHeatingWaterToAirHeatPumpVariableSpeedEquationFitSpeedData.rb rb resource - F052DDD5 + 74DD319B - Siz.HeaderedPumpsConstantSpeed.rb + Siz.CoilPerformanceDXCooling.rb rb resource - E67D43EF + E684D89F - Siz.HeaderedPumpsVariableSpeed.rb + Siz.CoilSystemCoolingDXHeatExchangerAssisted.rb rb resource - AA7EF4D0 + F7D9D3CA - Siz.HeatExchangerAirToAirSensibleAndLatent.rb + Siz.CoilSystemCoolingWaterHeatExchangerAssisted.rb rb resource - 15259274 + A57F3EB5 - Siz.PhotovoltaicPerformanceSimple.rb + Siz.CoilWaterHeatingAirToWaterHeatPump.rb rb resource - 7C36F0D5 + A098B515 - Siz.PumpConstantSpeed.rb + Siz.CoilWaterHeatingAirToWaterHeatPumpWrapped.rb rb resource - 6FDDBF0B + 07E8000E - Siz.PumpVariableSpeed.rb + Siz.CoilWaterHeatingDesuperheater.rb rb resource - 66080483 + 7004AE6F - Siz.RefrigerationSecondarySystem.rb + Siz.ControllerOutdoorAir.rb rb resource - A7D5CDB5 + FD4BA89B - Siz.RefrigerationSystem.rb + Siz.CoolingTowerSingleSpeed.rb rb resource - 7B65FD33 + F862AD6A - Siz.RefrigerationTranscriticalSystem.rb + Siz.CoolingTowerTwoSpeed.rb rb resource - CC501E0D + C4A8B2F2 - Siz.SolarCollectorPerformancePhotovoltaicThermalSimple.rb + Siz.CoolingTowerVariableSpeed.rb rb resource - DB6281A3 + 5293C877 - Siz.ThermalStorageChilledWaterStratified.rb + Siz.DistrictCooling.rb rb resource - 808CA73D + FD1A53D3 - Siz.WaterHeaterHeatPump.rb + Siz.DistrictHeating.rb rb resource - 921564AA + B90561CA - Siz.WaterHeaterHeatPumpWrappedCondenser.rb + Siz.ElectricLoadCenterInverterLookUpTable.rb rb resource - 10D00F25 + 18EBC96E - Siz.WaterHeaterMixed.rb + Siz.ElectricLoadCenterInverterSimple.rb rb resource - 824AF62F + BC32B664 - Siz.WaterHeaterStratified.rb + Siz.ElectricLoadCenterStorageConverter.rb rb resource - 206E2617 + 6DB2193E - Siz.ZoneHVACBaseboardConvectiveElectric.rb + Siz.ElectricLoadCenterStorageSimple.rb rb resource - B3867055 + 09891066 - Siz.ZoneHVACBaseboardConvectiveWater.rb + Siz.EvaporativeCoolerDirectResearchSpecial.rb rb resource - A4FEA8BE + 1838A992 - Siz.ZoneHVACBaseboardRadiantConvectiveElectric.rb + Siz.EvaporativeCoolerIndirectResearchSpecial.rb rb resource - DAA1D219 + 70108C0E - Siz.ZoneHVACBaseboardRadiantConvectiveWater.rb + Siz.EvaporativeFluidCoolerSingleSpeed.rb rb resource - 34B5F13F + 5F4FDB5F - Siz.ZoneHVACEnergyRecoveryVentilator.rb + Siz.EvaporativeFluidCoolerTwoSpeed.rb rb resource - C9C059C1 + DDEA76F0 - Siz.ZoneHVACFourPipeFanCoil.rb + Siz.FanConstantVolume.rb rb resource - FB013CF5 + 0873B844 - Siz.ZoneHVACHighTemperatureRadiant.rb + Siz.FanOnOff.rb rb resource - 0DDCB938 + 6A4D13D9 - Siz.ZoneHVACIdealLoadsAirSystem.rb + Siz.FanVariableVolume.rb rb resource - F6878281 + 1C8795D0 - Siz.ZoneHVACLowTempRadiantConstFlow.rb + Siz.FanZoneExhaust.rb rb resource - 724CB9BA + CCBA4A1C - Siz.ZoneHVACLowTempRadiantVarFlow.rb + Siz.FluidCoolerSingleSpeed.rb rb resource - 90C1D509 + 1F2AC7B2 - Siz.ZoneHVACPackagedTerminalAirConditioner.rb + Siz.FluidCoolerTwoSpeed.rb rb resource - EF631069 + F8DAFC01 - Siz.ZoneHVACPackagedTerminalHeatPump.rb + Siz.GeneratorFuelCellElectricalStorage.rb rb resource - 21463870 + 77624FA8 - Siz.ZoneHVACUnitHeater.rb + Siz.GeneratorFuelCellInverter.rb rb resource - A78CF8AD + 942DB736 - Siz.ZoneHVACUnitVentilator.rb + Siz.GeneratorFuelCellPowerModule.rb rb resource - 88194DDA + C00B75A0 - Siz.ZoneHVACWaterToAirHeatPump.rb + Siz.GeneratorMicroTurbine.rb rb resource - B96A65AB + A70FD5A9 - Siz.ZoneVentilationDesignFlowRate.rb + Siz.GeneratorMicroTurbineHeatRecovery.rb rb resource - F64945EA + F052DDD5 - Siz.AirLoopHVAC.rb + Siz.HVACComponent.rb rb resource - CB3048EC + A4A694D1 - Siz.AirTerminalDualDuctVAV.rb + Siz.HeaderedPumpsConstantSpeed.rb rb resource - 188A0336 + E67D43EF - Siz.AirTerminalSingleDuctConstantVolumeCooledBeam.rb + Siz.HeaderedPumpsVariableSpeed.rb rb resource - 497B757F + AA7EF4D0 - Siz.AirTerminalSingleDuctUncontrolled.rb + Siz.HeatExchangerAirToAirSensibleAndLatent.rb rb resource - 56A45890 + 15259274 - Siz.AirTerminalSingleDuctVAVHeatAndCoolNoReheat.rb + Siz.HeatExchangerFluidToFluid.rb rb resource - 07C7D411 + 691BA662 - Siz.AirTerminalSingleDuctVAVNoReheat.rb + Siz.HeatPumpWaterToWaterEquationFitCooling.rb rb resource - 9C7E63CE + 048A7C4E - Siz.ChillerAbsorption.rb + Siz.HeatPumpWaterToWaterEquationFitHeating.rb rb resource - 24B7DEF3 + F20B147D - Siz.ChillerAbsorptionIndirect.rb + Siz.HumidifierSteamElectric.rb rb resource - 76A2678F + 7D2B13E3 - Siz.CoilCoolingDXMultiSpeed.rb + Siz.Model.rb rb resource - 5DC15ADB + A42AF124 - Siz.CoilCoolingDXTwoStageWithHumidityControlMode.rb + Siz.ModelObject.rb rb resource - 71B9A940 + 24E7D789 - Siz.CoilCoolingDXVariableRefrigerantFlow.rb + Siz.PhotovoltaicPerformanceSimple.rb rb resource - 33A2EF90 + 7C36F0D5 - Siz.CoilCoolingDXVariableSpeed.rb + Siz.PlantComponentTemperatureSource.rb rb resource - BCD84FD5 + D20A7270 - Siz.CoilCoolingLowTempRadiantVarFlow.rb + Siz.PlantLoop.rb rb resource - 91F9A6CC + C51E762E - Siz.CoilCoolingWater.rb + Siz.PumpConstantSpeed.rb rb resource - 51BF281A + 6FDDBF0B - Siz.CoilCoolingWaterToAirHeatPumpEquationFit.rb + Siz.PumpVariableSpeed.rb rb resource - 56012E9D + 66080483 - Siz.CoilCoolingWaterToAirHeatPumpVariableSpeedEquationFit.rb + Siz.RefrigerationSecondarySystem.rb rb resource - D8AC4130 + A7D5CDB5 - Siz.CoilHeatingDXMultiSpeed.rb + Siz.RefrigerationSystem.rb rb resource - A556E71E + 7B65FD33 - Siz.CoilHeatingDXVariableRefrigerantFlow.rb + Siz.RefrigerationTranscriticalSystem.rb rb resource - FA85C75A + CC501E0D - Siz.CoilHeatingDXVariableSpeed.rb + Siz.SizingSystem.rb rb resource - B0795A65 + 851989B2 - Siz.CoilHeatingGasMultiStage.rb + Siz.SolarCollectorFlatPlatePhotovoltaicThermal.rb rb resource - 7400F394 + E40D5FC4 - Siz.CoilHeatingWater.rb + Siz.SolarCollectorPerformancePhotovoltaicThermalSimple.rb rb resource - 4FF2C33A + DB6281A3 - Siz.CoilHeatingWaterBaseboard.rb + Siz.ThermalStorageChilledWaterStratified.rb rb resource - 6FB9C164 + 808CA73D - Siz.CoilHeatingWaterBaseboardRadiant.rb + Siz.WaterHeaterHeatPump.rb rb resource - 934EE18F + 921564AA - Siz.CoilHeatingWaterToAirHeatPumpEquationFit.rb + Siz.WaterHeaterHeatPumpWrappedCondenser.rb rb resource - 657F7E78 + 10D00F25 - Siz.CoilHeatingWaterToAirHeatPumpVariableSpeedEquationFit.rb + Siz.WaterHeaterMixed.rb rb resource - 4D794434 + 824AF62F - Siz.ControllerOutdoorAir.rb + Siz.WaterHeaterStratified.rb rb resource - FD4BA89B + 206E2617 - Siz.CoolingTowerSingleSpeed.rb + Siz.ZoneHVACBaseboardConvectiveElectric.rb rb resource - F862AD6A + B3867055 - Siz.CoolingTowerTwoSpeed.rb + Siz.ZoneHVACBaseboardConvectiveWater.rb rb resource - C4A8B2F2 + A4FEA8BE - Siz.CoolingTowerVariableSpeed.rb + Siz.ZoneHVACBaseboardRadiantConvectiveElectric.rb rb resource - 5293C877 + DAA1D219 - Siz.DistrictCooling.rb + Siz.ZoneHVACBaseboardRadiantConvectiveWater.rb rb resource - FD1A53D3 + 34B5F13F - Siz.DistrictHeating.rb + Siz.ZoneHVACEnergyRecoveryVentilator.rb rb resource - B90561CA + C9C059C1 - Siz.EvaporativeFluidCoolerSingleSpeed.rb + Siz.ZoneHVACFourPipeFanCoil.rb rb resource - 5F4FDB5F + FB013CF5 - Siz.EvaporativeFluidCoolerTwoSpeed.rb + Siz.ZoneHVACHighTemperatureRadiant.rb rb resource - DDEA76F0 + 0DDCB938 - Siz.FluidCoolerSingleSpeed.rb + Siz.ZoneHVACIdealLoadsAirSystem.rb rb resource - 1F2AC7B2 + F6878281 - Siz.FluidCoolerTwoSpeed.rb + Siz.ZoneHVACLowTempRadiantConstFlow.rb rb resource - F8DAFC01 + 724CB9BA - Siz.HeatExchangerFluidToFluid.rb + Siz.ZoneHVACLowTempRadiantVarFlow.rb rb resource - 691BA662 + 90C1D509 - Siz.HeatPumpWaterToWaterEquationFitCooling.rb + Siz.ZoneHVACPackagedTerminalAirConditioner.rb rb resource - 048A7C4E + EF631069 - Siz.HeatPumpWaterToWaterEquationFitHeating.rb + Siz.ZoneHVACPackagedTerminalHeatPump.rb rb resource - F20B147D + 21463870 - Siz.ModelObject.rb + Siz.ZoneHVACTerminalUnitVariableRefrigerantFlow.rb rb resource - 24E7D789 + 64E512F9 - Siz.PlantComponentTemperatureSource.rb + Siz.ZoneHVACUnitHeater.rb rb resource - D20A7270 + A78CF8AD - Siz.PlantLoop.rb + Siz.ZoneHVACUnitVentilator.rb rb resource - C51E762E + 88194DDA - Siz.SizingSystem.rb + Siz.ZoneHVACWaterToAirHeatPump.rb rb resource - 851989B2 + B96A65AB - Siz.SolarCollectorFlatPlatePhotovoltaicThermal.rb + Siz.ZoneVentilationDesignFlowRate.rb rb resource - E40D5FC4 + F64945EA - Siz.ZoneHVACTerminalUnitVariableRefrigerantFlow.rb - rb + bootstrap.min.css + css resource - 64E512F9 + 2C33597B - Siz.HumidifierSteamElectric.rb - rb + bootstrap.min.js + js resource - 7D2B13E3 + 3BFC4183 - Siz.HVACComponent.rb - rb + d3.min.js + js resource - A4A694D1 + EB90CCAC - Siz.Model.rb - rb + dimple.v2.1.2.min.js + js resource - A42AF124 + 0F69C1CF - Siz.ChillerElectricEIR.rb - rb + jquery.min.js + js resource - 84A1845F + 574D0600 - Siz.ChillerHeaterPerformanceElectricEIR.rb + os_lib_reporting.rb rb resource - E8A38029 + 1E779898 - PeriodInConstName.osm + report.html.erb + erb + resource + 9BD8455A + + + 1004_SmallHotel_a.osm osm test - E41FBCFF + C62949E8 - add_tariff.osw - osw + EdgeCaseModel.osm + osm test - BF680A60 + 4EEA709C - os_results.osw - osw + EmptyModel.osm + osm test - 8BE06CC3 + A597C804 ExampleModel.osm @@ -1461,69 +1460,58 @@ 42C65747 - OpenStudioResults_Test.rb - rb + ExampleModel.osm + osm test - A3654A6C - - - os_lib_reporting.rb - rb - resource - 3F113A2D + 42C65747 - README.md - md - readme - 42709140 + HeatingOnly.osm + osm + test + 99A21A4F - bootstrap.min.css - css - resource - 2C33597B + NoRunPeriod.osm + osm + test + 32622D37 - bootstrap.min.js - js - resource - 3BFC4183 + OpenStudioResults_Test.rb + rb + test + 4CACF541 - d3.min.js - js - resource - EB90CCAC + PeriodInConstName.osm + osm + test + E41FBCFF - dimple.v2.1.2.min.js - js - resource - 0F69C1CF + PeriodInConstName.osm + osm + test + E41FBCFF - jquery.min.js - js - resource - 574D0600 + USA_CO_Golden-NREL.724666_TMY3.epw + epw + test + BDF687C1 - report.html.erb - erb - resource - 9BD8455A + add_tariff.osw + osw + test + BF680A60 - - OpenStudio - 2.0.0 - 3.1.0 - - measure.rb - rb - script - F17FCB07 + add_tariff.osw + osw + test + BF680A60 diff --git a/measures/openstudio_results/resources/os_lib_reporting.rb b/measures/openstudio_results/resources/os_lib_reporting.rb index 025b4da..6c9ed63 100644 --- a/measures/openstudio_results/resources/os_lib_reporting.rb +++ b/measures/openstudio_results/resources/os_lib_reporting.rb @@ -749,7 +749,6 @@ def self.output_data_energy_use_table(model, sqlFile, runner, is_ip_units = true target_units = source_units end - target_units = 'kBtu' value = OpenStudio.convert(results.get, 'GJ', target_units).get value_neat = OpenStudio.toNeatString(value, 0, true) output_data_energy_use[:data] << [fuel_type, value_neat] diff --git a/measures/openstudio_results/tests/OpenStudioResults_Test.rb b/measures/openstudio_results/tests/OpenStudioResults_Test.rb index 36adfe9..29a2af8 100644 --- a/measures/openstudio_results/tests/OpenStudioResults_Test.rb +++ b/measures/openstudio_results/tests/OpenStudioResults_Test.rb @@ -80,9 +80,8 @@ def setup_test_2(test_name, epw_path) osw_path = File.join(run_dir(test_name), 'in.osw') osw_path = File.absolute_path(osw_path) - # load osw with openstudio_results measure to get energyPlusOutputRequests into IDF (old method was not working) - source_osw = OpenStudio::Path.new(File.dirname(__FILE__) + '/os_results.osw') - workflow = OpenStudio::WorkflowJSON.load(source_osw).get + # create workflow to for initial test model run + workflow = OpenStudio::WorkflowJSON.new workflow.setSeedFile(File.absolute_path(model_out_path(test_name))) workflow.setWeatherFile(File.absolute_path(epw_path)) workflow.saveAs(osw_path) @@ -229,8 +228,12 @@ def test_example_model_si # create an instance of the measure measure = OpenStudioResults.new + # enable runner to find measure resources dir + workflow = OpenStudio::WorkflowJSON.new + workflow.addMeasurePath(File.dirname(File.expand_path('..', File.dirname(__FILE__)))) + # create an instance of a runner - runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + runner = OpenStudio::Measure::OSRunner.new(workflow) # get arguments arguments = measure.arguments @@ -240,6 +243,9 @@ def test_example_model_si args_hash = {} args_hash['units'] = 'SI' + # Autodesk argument override + runner.setUnitsPreference('SI') + # populate argument with specified hash value if specified arguments.each do |arg| temp_arg_var = arg.clone @@ -286,6 +292,22 @@ def test_example_model_si # look for section_errors assert(section_errors(runner).empty?) + + # test for proper unit conversion + expected_unit = 'kWh' + + sqlFile = OpenStudio::SqlFile.new(OpenStudio::Path.new(sql_path(test_name))) + + ["Electricity","Natural Gas"].each do |fuel_type| + query = "SELECT Value FROM tabulardatawithstrings WHERE ReportName='AnnualBuildingUtilityPerformanceSummary' and TableName='End Uses' and RowName= 'Total End Uses' and ColumnName= '#{fuel_type}'" + results = sqlFile.execAndReturnFirstDouble(query) + expected_value = OpenStudio.convert(results.get, 'GJ', expected_unit).get + result_hash = result.stepValues.select{|r| r.name == "fuel_#{fuel_type.downcase.gsub(' ','_')}"}.first + result_unit = result_hash.units.get + result_value = result_hash.valueAsDouble + assert_equal(expected_unit, result_unit, "#{fuel_type} result unit: #{result_unit}, expected: #{expected_unit}") + assert_equal(expected_value, result_value, "#{fuel_type} result value: #{result_value}, expected: #{expected_value}") + end ensure Dir.chdir(start_dir) end diff --git a/measures/openstudio_results/tests/os_results.osw b/measures/openstudio_results/tests/os_results.osw deleted file mode 100644 index c99a64e..0000000 --- a/measures/openstudio_results/tests/os_results.osw +++ /dev/null @@ -1,54 +0,0 @@ -{ - "completed_at" : "20200207T091421Z", - "completed_status" : "Success", - "created_at" : "20171218T054334Z", - "current_step" : 2, - "eplusout_err" : "", - "file_paths" : [ - "/Users/dgoldwas/Documents/GitHub/NREL/OpenStudio-measures/nrel_published/openstudio_results/tests/output/tariff/generated_files", - "./files", - "./weather", - "../../files", - "../../weather", - "./" - ], - "hash" : "625C40ED", - "measure_paths" : [ "../../../../" ], - "seed_file" : "TestOutput.osm", - "started_at" : "20200207T091340Z", - "steps" : [ - { - "arguments" : { - "reg_monthly_details" : true - }, - "measure_dir_name" : "openstudio_results", - "result" : { - "completed_at" : "20200207T091419Z", - "measure_class_name" : "OpenStudioResults", - "measure_display_name" : "OpenStudio Results", - "measure_name" : "openstudio_results", - "measure_taxonomy" : "Reporting.QAQC", - "measure_type" : "ReportingMeasure", - "measure_uid" : "a25386cd-60e4-46bc-8b11-c755f379d916", - "measure_version_id" : "e9df8827-787d-4143-ae5d-981299fbcdb7", - "measure_version_modified" : "20200207T091252Z", - "measure_xml_checksum" : "557BF06F", - "started_at" : "20200207T091406Z", - "stderr" : "", - "stdout" : "", - "step_errors" : [], - "step_files" : [ - "/Users/dgoldwas/Documents/GitHub/NREL/OpenStudio-measures/nrel_published/openstudio_results/tests/output/tariff/run/001_openstudio_results/report.html" - ], - "step_final_condition" : "Generated report with 22 sections to ./report.html.", - "step_info" : [ "Monthly End Use by Fuel registerValues have been requested." ], - "step_initial_condition" : "Gathering data from EnergyPlus SQL file and OSM model. Will report in IP Units", - "step_result" : "Success", - "step_values" : [], - "step_warnings" : [] - } - } - ], - "updated_at" : "20200207T091421Z", - "weather_file" : "../../USA_CO_Golden-NREL.724666_TMY3.epw" -} From 9bd77d1e1de107bdd8d2988632fb073704754a40 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Thu, 27 Jun 2024 12:03:58 -0600 Subject: [PATCH 18/41] v0.10.0.rc1 ChangeBuildingLocation --- measures/ChangeBuildingLocation/LICENSE.md | 28 +- measures/ChangeBuildingLocation/README.md | 51 + measures/ChangeBuildingLocation/README.md.erb | 5 + measures/ChangeBuildingLocation/measure.rb | 284 +- measures/ChangeBuildingLocation/measure.xml | 291 +- .../ChangeBuildingLocation/resources/epw.rb | 66 +- .../resources/stat_file.rb | 53 +- .../tests/CA_LOS-ANGELES-IAP_722950S_12.ddy | 731 ++ .../tests/CA_LOS-ANGELES-IAP_722950S_12.epw | 8792 ++++++++++++++++ .../tests/CA_LOS-ANGELES-IAP_722950S_12.stat | 553 ++ ...USA_MA_Boston-Logan.Intl.AP.725090_AMY.ddy | 536 + ...USA_MA_Boston-Logan.Intl.AP.725090_AMY.epw | 8768 ++++++++++++++++ ...SA_MA_Boston-Logan.Intl.AP.725090_AMY.stat | 553 ++ .../tests/change_building_location_test.rb | 73 +- .../tests/{test.osm => model_test.osm} | 0 .../tests/{test.osw => model_test.osw} | 0 .../tests/model_test_with_epw.osm | 8846 +++++++++++++++++ 17 files changed, 29416 insertions(+), 214 deletions(-) create mode 100644 measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.ddy create mode 100644 measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.epw create mode 100644 measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.stat create mode 100644 measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.ddy create mode 100644 measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.epw create mode 100644 measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.stat rename measures/ChangeBuildingLocation/tests/{test.osm => model_test.osm} (100%) rename measures/ChangeBuildingLocation/tests/{test.osw => model_test.osw} (100%) create mode 100644 measures/ChangeBuildingLocation/tests/model_test_with_epw.osm diff --git a/measures/ChangeBuildingLocation/LICENSE.md b/measures/ChangeBuildingLocation/LICENSE.md index 25d4945..185bacb 100644 --- a/measures/ChangeBuildingLocation/LICENSE.md +++ b/measures/ChangeBuildingLocation/LICENSE.md @@ -1,27 +1,13 @@ -OpenStudio(R), Copyright (c) 2008-2018, Alliance for Sustainable Energy, LLC. All rights reserved. +OpenStudio(R), Copyright (c) 2008, 2023 Alliance for Sustainable Energy, LLC. -Redistribution and use in source and binary forms, with or without modification, are permitted -provided that the following conditions are met: +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -(1) Redistributions of source code must retain the above copyright notice, this list of conditions -and the following disclaimer. +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -(2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions -and the following disclaimer in the documentation and/or other materials provided with the distribution. +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -(3) Neither the name of the copyright holder nor the names of any contributors may be used to endorse -or promote products derived from this software without specific prior written permission from the -respective party. +3. Redistribution of this software, without modification, must refer to the software by the same designation. Redistribution of a modified version of this software (i) may not refer to the modified version by the same designation, or by any confusingly similar designation, and (ii) must refer to the underlying software originally provided by Alliance as “OpenStudio®”. Except to comply with the foregoing, the term “OpenStudio®”, or any confusingly similar designation may not be used to refer to any modified version of this software or any modified version of the underlying software originally provided by Alliance without the prior written consent of Alliance. -(4) Other than as required in clauses (1) and (2), distributions in any form of modifications or other -derivative works may not use the "OpenStudio" trademark, "OS", "os", or any other confusingly similar -designation without specific prior written permission from Alliance for Sustainable Energy, LLC. +4. The name of the copyright holder(s), any contributors, the United States Government, the United States Department of Energy, or any of their employees may not be used to endorse or promote products derived from this software without specific prior written permission from the respective party. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER, THE UNITED STATES GOVERNMENT, -OR ANY CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/measures/ChangeBuildingLocation/README.md b/measures/ChangeBuildingLocation/README.md index e819c4d..7324efa 100644 --- a/measures/ChangeBuildingLocation/README.md +++ b/measures/ChangeBuildingLocation/README.md @@ -30,3 +30,54 @@ Name of the weather file to change to. This is the filename with the extension ( +### Climate Zone. + +**Name:** climate_zone, +**Type:** Choice, +**Units:** , +**Required:** true, +**Model Dependent:** false + + +**Choice Display Names** ["Lookup From Stat File", "ASHRAE 169-2013-1A", "ASHRAE 169-2013-1B", "ASHRAE 169-2013-2A", "ASHRAE 169-2013-2B", "ASHRAE 169-2013-3A", "ASHRAE 169-2013-3B", "ASHRAE 169-2013-3C", "ASHRAE 169-2013-4A", "ASHRAE 169-2013-4B", "ASHRAE 169-2013-4C", "ASHRAE 169-2013-5A", "ASHRAE 169-2013-5B", "ASHRAE 169-2013-5C", "ASHRAE 169-2013-6A", "ASHRAE 169-2013-6B", "ASHRAE 169-2013-7A", "ASHRAE 169-2013-8A", "CEC T24-CEC1", "CEC T24-CEC2", "CEC T24-CEC3", "CEC T24-CEC4", "CEC T24-CEC5", "CEC T24-CEC6", "CEC T24-CEC7", "CEC T24-CEC8", "CEC T24-CEC9", "CEC T24-CEC10", "CEC T24-CEC11", "CEC T24-CEC12", "CEC T24-CEC13", "CEC T24-CEC14", "CEC T24-CEC15", "CEC T24-CEC16"] + + + +### Set Calendar Year +This will impact the day of the week the simulation starts on. An input value of 0 will leave the year un-altered +**Name:** set_year, +**Type:** Integer, +**Units:** , +**Required:** true, +**Model Dependent:** false + + + + +### Use Upstream Argument Values +When true this will look for arguments or registerValues in upstream measures that match arguments from this measure, and will use the value from the upstream measure in place of what is entered for this measure. +**Name:** use_upstream_args, +**Type:** Boolean, +**Units:** , +**Required:** true, +**Model Dependent:** false + + + + +### Find and replace option from existing weather file name. +This will override what is entered in weather file name or from upstream measures, unless Do Nothing is selected. +**Name:** epw_gsub, +**Type:** Choice, +**Units:** , +**Required:** true, +**Model Dependent:** false + + +**Choice Display Names** ["Do Nothing", "TMY3,AMY", "AMY,TMY3"] + + + + + + diff --git a/measures/ChangeBuildingLocation/README.md.erb b/measures/ChangeBuildingLocation/README.md.erb index 4deb9ae..4eb848a 100644 --- a/measures/ChangeBuildingLocation/README.md.erb +++ b/measures/ChangeBuildingLocation/README.md.erb @@ -26,6 +26,11 @@ **Units:** <%= argument[:units] %>, **Required:** <%= argument[:required] %>, **Model Dependent:** <%= argument[:model_dependent] %> + +<% if argument[:type] == "Choice" && !argument[:model_dependent]%> +**Choice Display Names** <%= argument[:choice_display_names] %> +<% end %> + <% end %> <% if arguments.size == 0 %> diff --git a/measures/ChangeBuildingLocation/measure.rb b/measures/ChangeBuildingLocation/measure.rb index ad2f752..7933a0e 100644 --- a/measures/ChangeBuildingLocation/measure.rb +++ b/measures/ChangeBuildingLocation/measure.rb @@ -1,61 +1,303 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://openstudio.net/license +# ******************************************************************************* + +# Authors : Nicholas Long, David Goldwasser +# Simple measure to load the EPW file and DDY file + class ChangeBuildingLocation < OpenStudio::Measure::ModelMeasure + Dir[File.dirname(__FILE__) + '/resources/*.rb'].each { |file| require file } + require 'openstudio-standards' + # define the name that a user will see, this method may be deprecated as + # the display name in PAT comes from the name field in measure.xml def name 'ChangeBuildingLocation' end + # define the arguments that the user will input def arguments(model) args = OpenStudio::Measure::OSArgumentVector.new weather_file_name = OpenStudio::Measure::OSArgument.makeStringArgument('weather_file_name', true) weather_file_name.setDisplayName('Weather File Name') weather_file_name.setDescription('Name of the weather file to change to. This is the filename with the extension (e.g. NewWeather.epw). Optionally this can inclucde the full file path, but for most use cases should just be file name.') - args << weather_file_name + + # make choice argument for climate zone + #choices = OpenStudio::StringVector.new + choices = OpenstudioStandards::CreateTypical.get_climate_zones + choices << 'Lookup From Stat File' + + climate_zone = OpenStudio::Measure::OSArgument.makeChoiceArgument('climate_zone', choices, true) + climate_zone.setDisplayName('Climate Zone.') + climate_zone.setDefaultValue('Lookup From Stat File') + args << climate_zone + + set_year = OpenStudio::Measure::OSArgument.makeIntegerArgument('set_year', true) + set_year.setDisplayName('Set Calendar Year') + set_year.setDefaultValue 0 + set_year.setDescription('This will impact the day of the week the simulation starts on. An input value of 0 will leave the year un-altered') + args << set_year + + # make an argument for use_upstream_args + use_upstream_args = OpenStudio::Measure::OSArgument.makeBoolArgument('use_upstream_args', true) + use_upstream_args.setDisplayName('Use Upstream Argument Values') + use_upstream_args.setDescription('When true this will look for arguments or registerValues in upstream measures that match arguments from this measure, and will use the value from the upstream measure in place of what is entered for this measure.') + use_upstream_args.setDefaultValue(true) + args << use_upstream_args + + # make choice argument for climate zone + choices = OpenStudio::StringVector.new + choices << 'Do Nothing' + choices << 'TMY3,AMY' + choices << 'AMY,TMY3' + epw_gsub = OpenStudio::Measure::OSArgument.makeChoiceArgument('epw_gsub', choices, true) + epw_gsub.setDisplayName('Find and replace option from existing weather file name.') + epw_gsub.setDescription('This will override what is entered in weather file name or from upstream measures, unless Do Nothing is selected.') + epw_gsub.setDefaultValue('Do Nothing') + args << epw_gsub + args end + # Define what happens when the measure is run def run(model, runner, user_arguments) super(model, runner, user_arguments) - unless runner.validateUserArguments(arguments(model), user_arguments) - return false + # assign the user inputs to variables + args = runner.getArgumentValues(arguments(model), user_arguments) + args = Hash[args.collect{ |k, v| [k.to_s, v] }] + if !args then return false end + + # lookup and replace argument values from upstream measures + if args['use_upstream_args'] == true + args.each do |arg, value| + next if arg == 'use_upstream_args' # this argument should not be changed + value_from_osw = runner.getPastStepValuesForName(arg) + value_from_osw = value_from_osw.collect{ |k, v| Hash[:measure_name => k, :value => v] }.first if !value_from_osw.empty? + if !value_from_osw.empty? + runner.registerInfo("Replacing argument named #{arg} from current measure with a value of #{value_from_osw[:value]} from #{value_from_osw[:measure_name]}.") + new_val = value_from_osw[:value] + # TODO: - make code to handle non strings more robust. check_upstream_measure_for_arg coudl pass bakc the argument type + if arg == 'total_bldg_floor_area' + args[arg] = new_val.to_f + elsif arg == 'num_stories_above_grade' + args[arg] = new_val.to_f + elsif arg == 'zipcode' + args[arg] = new_val.to_i + else + args[arg] = new_val + end + end + end end - weather_file_name = runner.getStringArgumentValue("weather_file_name", user_arguments) - weather_file_path = runner.workflow.findFile(weather_file_name) + # create initial condition + if model.getWeatherFile.city != '' + runner.registerInitialCondition("The initial weather file is #{model.getWeatherFile.city} and the model has #{model.getDesignDays.size} design day objects") + else + runner.registerInitialCondition("No weather file is set. The model has #{model.getDesignDays.size} design day objects") + end + + # use gsub if requested + if args['epw_gsub'] != 'Do Nothing' + # get the orig weather file from OSM + file_name = model.getWeatherFile.url.get.split('/').last + runner.registerInfo(file_name) + + if model.getWeatherFile.file.is_initialized + orig_epw = model.getWeatherFile.url.get.split('/').last + gsub_array = args['epw_gsub'].split(',') + # updated line below so it doesn't matter what the user argument is, it always modifies what was in the seed OSM + args['weather_file_name'] = orig_epw.gsub(gsub_array[0], gsub_array[1]) + runner.registerInfo("Changing target weather file from #{orig_epw} to #{args['weather_file_name']}.") + end + end - if weather_file_path.empty? - runner.registerError("Could not find gbXML filename '#{gbxml_file_name}'.") + # find weather file, checking both the location specified in the osw + # and the path used by ComStock meta-measure + comstock_weather_file = File.absolute_path(File.join(Dir.pwd, '../../../weather', args['weather_file_name'])) + osw_weather_file = runner.workflow.findFile(args['weather_file_name']) + if File.file? comstock_weather_file + weather_file = comstock_weather_file + elsif osw_weather_file.is_initialized + weather_file = osw_weather_file.get.to_s + else + runner.registerError("Did not find #{args['weather_file_name']} in paths described in OSW file or in default ComStock workflow location of #{comstock_weather_file}.") return false end - weather_file_path = runner.workflow.findFile(weather_file_name).get + # Parse the EPW manually because OpenStudio can't handle multiyear weather files (or DATA PERIODS with YEARS) + epw_file = OpenStudio::Weather::Epw.load(weather_file) + + weather_file = model.getWeatherFile + weather_file.setCity(epw_file.city) + weather_file.setStateProvinceRegion(epw_file.state) + weather_file.setCountry(epw_file.country) + weather_file.setDataSource(epw_file.data_type) + weather_file.setWMONumber(epw_file.wmo.to_s) + weather_file.setLatitude(epw_file.lat) + weather_file.setLongitude(epw_file.lon) + weather_file.setTimeZone(epw_file.gmt) + weather_file.setElevation(epw_file.elevation) + weather_file.setString(10, epw_file.filename) + + weather_name = "#{epw_file.city}_#{epw_file.state}_#{epw_file.country}" + weather_lat = epw_file.lat + weather_lon = epw_file.lon + weather_time = epw_file.gmt + weather_elev = epw_file.elevation - epw_file = OpenStudio::EpwFile.load(weather_file_path).get - OpenStudio::Model::WeatherFile.setWeatherFile(model, epw_file) + # Add or update site data + site = model.getSite + site.setName(weather_name) + site.setLatitude(weather_lat) + site.setLongitude(weather_lon) + site.setTimeZone(weather_time) + site.setElevation(weather_elev) + runner.registerInfo("city is #{epw_file.city}. State is #{epw_file.state}") + + # actual year of start date + if args['set_year'].to_i > 0 + model.getYearDescription.setCalendarYear(args['set_year'].to_i) + runner.registerInfo("Changing Calendar Year to #{args['set_year']},") + end + + # Add SiteWaterMainsTemperature -- via parsing of STAT file. + stat_file = "#{File.join(File.dirname(epw_file.filename), File.basename(epw_file.filename, '.*'))}.stat" + unless File.exist? stat_file + runner.registerInfo 'Could not find STAT file by filename, looking in the directory' + stat_files = Dir["#{File.dirname(epw_file.filename)}/*.stat"] + if stat_files.size > 1 + runner.registerError('More than one stat file in the EPW directory') + return false + end + if stat_files.empty? + runner.registerError('Cound not find the stat file in the EPW directory') + return false + end + + runner.registerInfo "Using STAT file: #{stat_files.first}" + stat_file = stat_files.first + end + unless stat_file + runner.registerError 'Could not find stat file' + return false + end + + stat_model = EnergyPlus::StatFile.new(stat_file) water_temp = model.getSiteWaterMainsTemperature - # water_temp.setAnnualAverageOutdoorAirTemperature(15) - water_temp.setMaximumDifferenceInMonthlyAverageOutdoorAirTemperatures(10) + water_temp.setAnnualAverageOutdoorAirTemperature(stat_model.mean_dry_bulb) + water_temp.setMaximumDifferenceInMonthlyAverageOutdoorAirTemperatures(stat_model.delta_dry_bulb) + runner.registerInfo("mean dry bulb is #{stat_model.mean_dry_bulb}") - ddy_file = "#{File.join(File.dirname(weather_file_path.to_s), File.basename(weather_file_path.filename.to_s, '.*'))}.ddy" + # Remove all the Design Day objects that are in the file + model.getObjectsByType('OS:SizingPeriod:DesignDay'.to_IddObjectType).each(&:remove) + + # find the ddy files + ddy_file = "#{File.join(File.dirname(epw_file.filename), File.basename(epw_file.filename, '.*'))}.ddy" + unless File.exist? ddy_file + ddy_files = Dir["#{File.dirname(epw_file.filename)}/*.ddy"] + if ddy_files.size > 1 + runner.registerError('More than one ddy file in the EPW directory') + return false + end + if ddy_files.empty? + runner.registerError('could not find the ddy file in the EPW directory') + return false + end + + ddy_file = ddy_files.first + end unless ddy_file runner.registerError "Could not find DDY file for #{ddy_file}" - return false + return error end ddy_model = OpenStudio::EnergyPlus.loadAndTranslateIdf(ddy_file).get - all_ddys = ddy_model.getObjectsByType('OS:SizingPeriod:DesignDay'.to_IddObjectType) - htg_ddys = all_ddys.select {|ddy| ddy.name.get =~ /(99.6. Condns)/} - htg_ddys = all_ddys.select {|ddy| ddy.name.get =~ /(99. Condns)/} if htg_ddys.empty? - clg_ddys = all_ddys.select {|ddy| ddy.name.get =~ /(.4. Condns)/} - # clg_ddys = all_ddys.select {|ddy| ddy.name.get =~ /(1. Condns)/} if clg_ddys.empty? - clg_ddys = all_ddys.select {|ddy| ddy.name.get =~ /(2. Condns)/} if clg_ddys.empty? + # Warn if no design days are present in the ddy file + if ddy_model.getDesignDays.size.zero? + runner.registerWarning('No design days were found in the ddy file.') + end + + ddy_model.getDesignDays.sort.each do |d| + # grab only the ones that matter + ddy_list = [ + /Htg 99.6. Condns DB/, # Annual heating + /Clg .4. Condns WB=>MDB/, # Annual cooling + /Clg .4. Condns DB=>MWB/, # Annual humidity (for cooling towers and evap coolers) + /January .4. Condns DB=>MCWB/, # Monthly cooling (to handle solar-gain-driven cooling) + /February .4. Condns DB=>MCWB/, + /March .4. Condns DB=>MCWB/, + /April .4. Condns DB=>MCWB/, + /May .4. Condns DB=>MCWB/, + /June .4. Condns DB=>MCWB/, + /July .4. Condns DB=>MCWB/, + /August .4. Condns DB=>MCWB/, + /September .4. Condns DB=>MCWB/, + /October .4. Condns DB=>MCWB/, + /November .4. Condns DB=>MCWB/, + /December .4. Condns DB=>MCWB/ + ] + ddy_list.each do |ddy_name_regex| + if d.name.get.to_s.match?(ddy_name_regex) + runner.registerInfo("Adding object #{d.name}") + + # add the object to the existing model + model.addObject(d.clone) + break + end + end + end + + # Warn if no design days were added + if model.getDesignDays.size.zero? + runner.registerWarning('No design days were added to the model.') + end + + # Set climate zone + climateZones = model.getClimateZones + if args['climate_zone'] == 'Lookup From Stat File' + + # get climate zone from stat file + text = nil + File.open(stat_file) do |f| + text = f.read.force_encoding('iso-8859-1') + end + + # Get Climate zone. + # - Climate type "3B" (ASHRAE Standard 196-2006 Climate Zone)** + # - Climate type "6A" (ASHRAE Standards 90.1-2004 and 90.2-2004 Climate Zone)** + regex = /Climate type \"(.*?)\" \(ASHRAE Standards?(.*)\)\*\*/ + match_data = text.match(regex) + if match_data.nil? + runner.registerWarning("Can't find ASHRAE climate zone in stat file.") + else + args['climate_zone'] = match_data[1].to_s.strip + end + + end + + # report time zone for use in results.csv + runner.registerValue('reported_climate_zone', args['climate_zone']) + + # set climate zone + climateZones.clear + if args['climate_zone'].include?('CEC') + climateZones.setClimateZone('CEC', args['climate_zone'].gsub('CEC T24-CEC', '')) + runner.registerInfo("Setting CEC Climate Zone to #{climateZones.getClimateZones('CEC').first.value}") + else + climateZones.setClimateZone('ASHRAE', args['climate_zone'].gsub('ASHRAE 169-2013-', '')) + runner.registerInfo("Setting ASHRAE Climate Zone to #{climateZones.getClimateZones('ASHRAE').first.value}") + end - (htg_ddys + clg_ddys).each { |ddy| model.addObject(ddy) } + # add final condition + runner.registerFinalCondition("The final weather file is #{model.getWeatherFile.city} and the model has #{model.getDesignDays.size} design day objects.") true end diff --git a/measures/ChangeBuildingLocation/measure.xml b/measures/ChangeBuildingLocation/measure.xml index d0f2e05..71e342b 100644 --- a/measures/ChangeBuildingLocation/measure.xml +++ b/measures/ChangeBuildingLocation/measure.xml @@ -3,8 +3,8 @@ 3.0 change_building_location d4db4971-f5ba-11e3-a3ac-0800200c9a66 - cf2b2e93-90c1-4e8f-ab73-9938a84d9555 - 20220420T154859Z + 946ae086-8c8e-4aa7-9d53-f482ba39d7a5 + 20221115T223606Z 057E8D9D ChangeBuildingLocation ChangeBuildingLocation @@ -19,6 +19,203 @@ true false + + climate_zone + Climate Zone. + Choice + true + false + Lookup From Stat File + + + Lookup From Stat File + Lookup From Stat File + + + ASHRAE 169-2013-1A + ASHRAE 169-2013-1A + + + ASHRAE 169-2013-1B + ASHRAE 169-2013-1B + + + ASHRAE 169-2013-2A + ASHRAE 169-2013-2A + + + ASHRAE 169-2013-2B + ASHRAE 169-2013-2B + + + ASHRAE 169-2013-3A + ASHRAE 169-2013-3A + + + ASHRAE 169-2013-3B + ASHRAE 169-2013-3B + + + ASHRAE 169-2013-3C + ASHRAE 169-2013-3C + + + ASHRAE 169-2013-4A + ASHRAE 169-2013-4A + + + ASHRAE 169-2013-4B + ASHRAE 169-2013-4B + + + ASHRAE 169-2013-4C + ASHRAE 169-2013-4C + + + ASHRAE 169-2013-5A + ASHRAE 169-2013-5A + + + ASHRAE 169-2013-5B + ASHRAE 169-2013-5B + + + ASHRAE 169-2013-5C + ASHRAE 169-2013-5C + + + ASHRAE 169-2013-6A + ASHRAE 169-2013-6A + + + ASHRAE 169-2013-6B + ASHRAE 169-2013-6B + + + ASHRAE 169-2013-7A + ASHRAE 169-2013-7A + + + ASHRAE 169-2013-8A + ASHRAE 169-2013-8A + + + CEC T24-CEC1 + CEC T24-CEC1 + + + CEC T24-CEC2 + CEC T24-CEC2 + + + CEC T24-CEC3 + CEC T24-CEC3 + + + CEC T24-CEC4 + CEC T24-CEC4 + + + CEC T24-CEC5 + CEC T24-CEC5 + + + CEC T24-CEC6 + CEC T24-CEC6 + + + CEC T24-CEC7 + CEC T24-CEC7 + + + CEC T24-CEC8 + CEC T24-CEC8 + + + CEC T24-CEC9 + CEC T24-CEC9 + + + CEC T24-CEC10 + CEC T24-CEC10 + + + CEC T24-CEC11 + CEC T24-CEC11 + + + CEC T24-CEC12 + CEC T24-CEC12 + + + CEC T24-CEC13 + CEC T24-CEC13 + + + CEC T24-CEC14 + CEC T24-CEC14 + + + CEC T24-CEC15 + CEC T24-CEC15 + + + CEC T24-CEC16 + CEC T24-CEC16 + + + + + set_year + Set Calendar Year + This will impact the day of the week the simulation starts on. An input value of 0 will leave the year un-altered + Integer + true + false + 0 + + + use_upstream_args + Use Upstream Argument Values + When true this will look for arguments or registerValues in upstream measures that match arguments from this measure, and will use the value from the upstream measure in place of what is entered for this measure. + Boolean + true + false + true + + + true + true + + + false + false + + + + + epw_gsub + Find and replace option from existing weather file name. + This will override what is entered in weather file name or from upstream measures, unless Do Nothing is selected. + Choice + true + false + Do Nothing + + + Do Nothing + Do Nothing + + + TMY3,AMY + TMY3,AMY + + + AMY,TMY3 + AMY,TMY3 + + + @@ -57,7 +254,7 @@ E8C83421 - test.osm + model_test.osm osm test 0B8479BC @@ -117,57 +314,99 @@ 7C51425E - test.osw + model_test.osw osw test F5FABCCF - stat_file.rb - rb - resource - FA04CAFA + README.md.erb + erb + readmeerb + 232D0477 - epw.rb - rb - resource - 75D1E203 + CA_LOS-ANGELES-IAP_722950S_12.ddy + ddy + test + 6664A3D4 + + + CA_LOS-ANGELES-IAP_722950S_12.epw + epw + test + E8072B82 + + + CA_LOS-ANGELES-IAP_722950S_12.stat + stat + test + 12BCA842 + + + USA_MA_Boston-Logan.Intl.AP.725090_AMY.ddy + ddy + test + E4CBEAF0 + + + USA_MA_Boston-Logan.Intl.AP.725090_AMY.epw + epw + test + B65824C3 + + + USA_MA_Boston-Logan.Intl.AP.725090_AMY.stat + stat + test + 8657DDB9 + + + model_test_with_epw.osm + osm + test + D1551F9A + + + README.md + md + readme + D6556B8E LICENSE.md md license - 9640B6CB + 64FFEBDE - README.md.erb - erb - readmeerb - 703C9964 + stat_file.rb + rb + resource + 22D1FE2F + + + epw.rb + rb + resource + 95B8F1F7 change_building_location_test.rb rb test - AE167642 + B7124724 OpenStudio 2.0.0 - 2.0.0 + 3.8.0 measure.rb rb script - 0CC47986 - - - README.md - md - readme - C5F12607 + 2753B0E4 diff --git a/measures/ChangeBuildingLocation/resources/epw.rb b/measures/ChangeBuildingLocation/resources/epw.rb index c170969..b6a2138 100644 --- a/measures/ChangeBuildingLocation/resources/epw.rb +++ b/measures/ChangeBuildingLocation/resources/epw.rb @@ -1,57 +1,8 @@ # ******************************************************************************* -# OpenStudio(R), Copyright (c) 2008-2018, Alliance for Sustainable Energy, LLC. -# All rights reserved. -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# (1) Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# (2) Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# (3) Neither the name of the copyright holder nor the names of any contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission from the respective party. -# -# (4) Other than as required in clauses (1) and (2), distributions in any form -# of modifications or other derivative works may not use the "OpenStudio" -# trademark, "OS", "os", or any other confusingly similar designation without -# specific prior written permission from Alliance for Sustainable Energy, LLC. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE -# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF -# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://openstudio.net/license # ******************************************************************************* -###################################################################### -# Copyright (c) 2008-2013, Alliance for Sustainable Energy. -# All rights reserved. -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -###################################################################### - require 'csv' # TODO: this should its own gem because this file may be useful in various workflows module OpenStudio @@ -92,7 +43,7 @@ def initialize(filename) end def self.load(filename) - raise "EPW file does not exist: #{filename}" unless File.exist?(filename) + raise "EPW file does not exist: #{filename}" unless File.file?(filename) f = OpenStudio::Weather::Epw.new(filename) end @@ -175,11 +126,12 @@ def process_header header_section = true row_count = 0 - CSV.foreach(@filename, 'r') do |row| + # this breaks in Ruby 2.5.x + CSV.foreach(@filename) do |row| row_count += 1 if header_section - if row[0] =~ /data.periods/i + if row[0].match?(/data.periods/i) @data_period = { count: row[1].to_i, records_per_hour: row[2].to_i, @@ -208,11 +160,11 @@ def process_header @state = row[2] @country = row[3] @data_type = row[4] - if @data_type =~ /TMY3/i + if @data_type.match?(/TMY3/i) @data_type = 'TMY3' - elsif @data_type =~ /TMY2/i + elsif @data_type.match?(/TMY2/i) @data_type = 'TMY2' - elsif @data_type =~ /TMY/i + elsif @data_type.match?(/TMY/i) @data_type = 'TMY' end @wmo = row[5] diff --git a/measures/ChangeBuildingLocation/resources/stat_file.rb b/measures/ChangeBuildingLocation/resources/stat_file.rb index a750860..27fa64d 100644 --- a/measures/ChangeBuildingLocation/resources/stat_file.rb +++ b/measures/ChangeBuildingLocation/resources/stat_file.rb @@ -1,57 +1,8 @@ # ******************************************************************************* -# OpenStudio(R), Copyright (c) 2008-2018, Alliance for Sustainable Energy, LLC. -# All rights reserved. -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# (1) Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# (2) Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# (3) Neither the name of the copyright holder nor the names of any contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission from the respective party. -# -# (4) Other than as required in clauses (1) and (2), distributions in any form -# of modifications or other derivative works may not use the "OpenStudio" -# trademark, "OS", "os", or any other confusingly similar designation without -# specific prior written permission from Alliance for Sustainable Energy, LLC. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE -# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF -# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://openstudio.net/license # ******************************************************************************* -###################################################################### -# Copyright (c) 2008-2013, Alliance for Sustainable Energy. -# All rights reserved. -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -###################################################################### - require 'pathname' module EnergyPlus diff --git a/measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.ddy b/measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.ddy new file mode 100644 index 0000000..30c93fa --- /dev/null +++ b/measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.ddy @@ -0,0 +1,731 @@ + ! The following Location and Design Day data are produced as possible from the indicated data source. + ! Wind Speeds follow the indicated design conditions rather than traditional values (6.7 m/s heating, 3.35 m/s cooling) + ! No special attempts at re-creating or determining missing data parts (e.g. Wind speed or direction) + ! are done. Therefore, you should look at the data and fill in any incorrect values as you desire. + + Site:Location, + CA_LOS-ANGELES-IAP_USA Design_Conditions, !- Location Name + 33.94, !- Latitude {N+ S-} + -118.41, !- Longitude {W- E+} + -8.00, !- Time Zone Relative to GMT {GMT+/-} + 99.00; !- Elevation {m} + + ! WMO=722950 Time Zone=NAP: (GMT-08:00) Pacific Time (US & Canada); Tijuana + ! Data Source=ASHRAE 2009 Annual Design Conditions + RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- StartDate + 1st Sunday in November; !- EndDate + + ! Using Design Conditions from "Climate Design Data 2013 ASHRAE Handbook" + ! CA_LOS-ANGELES-IAP_USA Extreme Annual Wind Speeds, 1%=8.9m/s, 2.5%=7.8m/s, 5%=7.1m/s + ! CA_LOS-ANGELES-IAP_USA Extreme Annual Temperatures, Max Drybulb=4.3°C Min Drybulb=34.5°C + + ! CA_LOS-ANGELES-IAP_USA Annual Heating Design Conditions Wind Speed=2.2m/s Wind Dir=80 + ! Coldest Month=DEC + ! CA_LOS-ANGELES-IAP_USA Annual Heating 99.6%, MaxDB=7°C + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Htg 99.6% Condns DB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 7, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 7, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 2.2, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! CA_LOS-ANGELES-IAP_USA Annual Heating 99%, MaxDB=8°C + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Htg 99% Condns DB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 8, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 8, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 2.2, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! CA_LOS-ANGELES-IAP_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-11.3°C + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Hum_n 99.6% Condns DP=>MCDB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 15.4, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Dewpoint, !- Humidity Condition Type + -11.3, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 2.2, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! CA_LOS-ANGELES-IAP_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-8°C + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Hum_n 99% Condns DP=>MCDB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 15.3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Dewpoint, !- Humidity Condition Type + -8, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 2.2, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! CA_LOS-ANGELES-IAP_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=11.2m/s + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 12.8, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 12.8, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 11.2, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! CA_LOS-ANGELES-IAP_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=9.3m/s + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Htg Wind 99% Condns WS=>MCDB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 13.5, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 13.5, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 9.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! CA_LOS-ANGELES-IAP Annual Cooling Design Conditions Wind Speed=4m/s Wind Dir=250 + ! Hottest Month=AUG + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (DB=>MWB) .4%, MaxDB=28.7°C MWB=17.4°C + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg .4% Condns DB=>MWB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 28.7, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 17.4, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (DB=>MWB) 1%, MaxDB=26.9°C MWB=17.5°C + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg 1% Condns DB=>MWB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 26.9, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 17.5, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (DB=>MWB) 2%, MaxDB=25.3°C MWB=17.9°C + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg 2% Condns DB=>MWB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 25.3, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 17.9, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (WB=>MDB) .4%, MDB=25.1°C WB=21.1°C + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg .4% Condns WB=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 25.1, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 21.1, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (WB=>MDB) 1%, MDB=24.2°C WB=20.4°C + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg 1% Condns WB=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 24.2, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 20.4, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (WB=>MDB) 2%, MDB=23.4°C WB=19.8°C + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg 2% Condns WB=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 23.4, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 19.8, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (DP=>MDB) .4%, MDB=23.2°C DP=19.6°C HR=0.0145 + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg .4% Condns DP=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 23.2, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Dewpoint, !- Humidity Condition Type + 19.6, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (DP=>MDB) 1%, MDB=22.5°C DP=18.9°C HR=0.0139 + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg 1% Condns DP=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 22.5, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Dewpoint, !- Humidity Condition Type + 18.9, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (DP=>MDB) 2%, MDB=21.8°C DP=18.3°C HR=0.0133 + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg 2% Condns DP=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 21.8, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Dewpoint, !- Humidity Condition Type + 18.3, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=25.3°C Enthalpy=61400.0J/kg + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg .4% Condns Enth=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 25.3, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 61400.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=24.1°C Enthalpy=58900.0J/kg + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg 1% Condns Enth=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 24.1, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 58900.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! CA_LOS-ANGELES-IAP_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=23.5°C Enthalpy=56800.0J/kg + SizingPeriod:DesignDay, + CA_LOS-ANGELES-IAP Ann Clg 2% Condns Enth=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 23.5, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 56800.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Los Angeles Intl CA USA April (DB=>MCWB) .4%, MaxDB=29.4°C MWB=15.2°C taub=0.326 taud=2.512 + SizingPeriod:DesignDay, + Los Angeles Intl April .4% Condns DB=>MCWB, !- Name + 4, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 29.4, !- Maximum Dry-Bulb Temperature {C} + 6.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 15.2, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.326, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.512; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Los Angeles Intl CA USA May (DB=>MCWB) .4%, MaxDB=26.5°C MWB=17.6°C taub=0.338 taud=2.448 + SizingPeriod:DesignDay, + Los Angeles Intl May .4% Condns DB=>MCWB, !- Name + 5, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 26.5, !- Maximum Dry-Bulb Temperature {C} + 6, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 17.6, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.338, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.448; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Los Angeles Intl CA USA June (DB=>MCWB) .4%, MaxDB=27.1°C MWB=19.2°C taub=0.337 taud=2.413 + SizingPeriod:DesignDay, + Los Angeles Intl June .4% Condns DB=>MCWB, !- Name + 6, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 27.1, !- Maximum Dry-Bulb Temperature {C} + 5.6, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 19.2, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.337, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.413; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Los Angeles Intl CA USA July (DB=>MCWB) .4%, MaxDB=27.7°C MWB=21.4°C taub=0.349 taud=2.428 + SizingPeriod:DesignDay, + Los Angeles Intl July .4% Condns DB=>MCWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 27.7, !- Maximum Dry-Bulb Temperature {C} + 5.6, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 21.4, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.349, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.428; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Los Angeles Intl CA USA August (DB=>MCWB) .4%, MaxDB=29.1°C MWB=20.8°C taub=0.359 taud=2.444 + SizingPeriod:DesignDay, + Los Angeles Intl August .4% Condns DB=>MCWB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 29.1, !- Maximum Dry-Bulb Temperature {C} + 5.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 20.8, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.359, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.444; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Los Angeles Intl CA USA September (DB=>MCWB) .4%, MaxDB=30.6°C MWB=18.7°C taub=0.346 taud=2.535 + SizingPeriod:DesignDay, + Los Angeles Intl September .4% Condns DB=>MCWB, !- Name + 9, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.6, !- Maximum Dry-Bulb Temperature {C} + 6.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 18.7, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.346, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.535; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Los Angeles Intl CA USA October (DB=>MCWB) .4%, MaxDB=31.8°C MWB=15.9°C taub=0.344 taud=2.542 + SizingPeriod:DesignDay, + Los Angeles Intl October .4% Condns DB=>MCWB, !- Name + 10, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 31.8, !- Maximum Dry-Bulb Temperature {C} + 7.1, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 15.9, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 100141., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 250, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.344, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.542; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) diff --git a/measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.epw b/measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.epw new file mode 100644 index 0000000..2c61d25 --- /dev/null +++ b/measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.epw @@ -0,0 +1,8792 @@ +LOCATION,CA_LOS-ANGELES-IAP,-,USA,Custom-722950,722950,33.94,-118.41,-8.0,99.0 +DESIGN CONDITIONS,1,Climate Design Data 2013 ASHRAE Handbook,,Heating,12,7,8,-11.3,1.4,15.4,-8,1.9,15.3,11.2,12.8,9.3,13.5,2.2,80,Cooling,8,5.9,28.7,17.4,26.9,17.5,25.3,17.9,21.1,25.1,20.4,24.2,19.8,23.4,4,250,19.6,14.5,23.2,18.9,13.9,22.5,18.3,13.3,21.8,61.4,25.3,58.9,24.1,56.8,23.5,1874,Extremes,8.9,7.8,7.1,24,4.3,34.5,1.5,2.7,3.2,36.4,2.4,38,1.5,39.5,0.5,41.4 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,9/14,9/20,Summer - Week Nearest Average Temperature For Period,Typical,10/ 5,10/11,Winter - Week Nearest Min Temperature For Period,Extreme,3/14,3/20,Winter - Week Nearest Average Temperature For Period,Typical,4/18,4/24,Autumn - Week Nearest Average Temperature For Period,Typical,2/16,2/22,Spring - Week Nearest Average Temperature For Period,Typical,7/19,7/25 +GROUND TEMPERATURES,3,.5,,,,15.09,13.82,13.48,13.78,15.48,17.40,19.19,20.50,20.88,20.27,18.79,16.93,2,,,,16.22,15.04,14.47,14.45,15.35,16.66,18.07,19.28,19.90,19.78,18.95,17.67,4,,,,16.96,16.05,15.48,15.31,15.64,16.40,17.35,18.28,18.90,19.05,18.69,17.94 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#722950 +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +2012,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.6,8.3,92,100700,0,0,306,0,0,0,0,0,0,0,260,1.5,3,3,3.4,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,8.6,98,100700,0,0,336,0,0,0,0,0,0,0,270,1.7,10,10,0.4,30,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.4,7.8,96,100700,0,0,323,0,0,0,0,0,0,0,310,1.3,9,9,1.1,30,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,8.3,96,100700,0,0,291,0,0,0,0,0,0,0,280,0.0,0,0,8.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.4,8.2,99,100700,0,0,301,0,0,0,0,0,0,0,280,0.7,3,3,8.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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.3,9.3,100,100800,0,0,338,0,0,0,0,0,0,0,310,1.0,10,10,0.3,30,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,8.2,100,100900,0,13,311,0,0,0,0,0,0,0,310,0.0,7,7,1.6,30,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,9.1,93,100900,124,1411,310,77,656,19,8790,0,2195,82,60,0.0,3,3,10.4,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,9.9,65,101000,355,1411,339,286,1046,23,35357,19645,2837,108,60,0.2,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,4.4,35,101100,549,1411,352,494,1226,17,65210,47592,2267,87,60,1.5,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.6,-0.2,20,101000,685,1411,362,616,1217,25,81118,59161,3352,134,40,2.0,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.8,-4.2,13,100900,754,1411,351,678,1215,29,89486,63507,3843,156,270,1.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,10.2,45,100800,750,1411,369,622,1060,59,77747,54578,7354,315,270,4.6,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,11.8,67,100800,675,1411,349,466,719,122,54269,43138,14251,639,280,4.7,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,12.2,76,100800,533,1411,342,342,621,108,39145,33565,12402,542,270,5.6,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100800,334,1411,335,203,580,66,22994,17244,7517,310,270,4.6,3,3,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,12.2,85,100800,105,1330,333,63,290,41,6635,0,4375,175,270,4.9,3,3,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,12.1,87,100800,0,0,336,0,0,0,0,0,0,0,270,5.1,5,5,12.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.7,90,100900,0,0,329,0,0,0,0,0,0,0,280,3.5,4,4,12.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.7,90,100900,0,0,326,0,0,0,0,0,0,0,260,3.0,3,3,9.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.7,90,101000,0,0,323,0,0,0,0,0,0,0,280,1.9,2,2,7.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.7,90,100900,0,0,313,0,0,0,0,0,0,0,260,0.4,0,0,7.6,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,11.8,93,101000,0,0,330,0,0,0,0,0,0,0,250,4.0,5,5,9.6,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,12.2,96,101000,0,0,359,0,0,0,0,0,0,0,280,4.0,10,10,0.4,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,12.0,96,101000,0,0,358,0,0,0,0,0,0,0,290,3.2,10,10,0.4,30,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,10.7,94,101000,0,0,352,0,0,0,0,0,0,0,270,3.8,10,10,0.4,30,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,11.1,97,101000,0,0,352,0,0,0,0,0,0,0,280,5.3,10,10,0.4,30,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,11.0,100,101000,0,0,349,0,0,0,0,0,0,0,270,2.4,10,10,0.6,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,11.1,100,101000,0,0,349,0,0,0,0,0,0,0,260,2.7,10,10,0.4,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.9,10.8,99,101000,0,0,348,0,0,0,0,0,0,0,260,0.0,10,10,0.5,56,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,9.0,94,101100,0,9,341,0,0,0,0,0,0,0,140,0.2,10,10,0.7,30,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,9.2,100,101100,123,1411,310,61,373,28,6758,0,3150,121,140,0.8,5,5,0.8,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.5,84,101200,355,1411,324,226,642,65,25790,21174,7397,304,100,2.3,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.0,69,101200,549,1411,340,414,898,65,49538,41798,7789,328,270,3.6,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.0,82,101200,686,1411,360,445,612,147,51202,39490,17028,776,260,3.6,9,9,16.1,4300,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,10.3,59,101000,755,1411,375,499,635,159,57863,42936,18553,857,260,1.3,9,9,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,8.5,40,100900,752,1411,387,586,938,86,71245,53336,10494,462,260,0.6,8,8,16.1,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,9.7,59,100900,677,1411,351,574,1105,44,72408,52395,5503,229,260,4.8,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,8.3,53,100900,536,1411,350,417,958,54,50504,42420,6492,269,260,2.8,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,11.7,72,100900,337,1411,347,199,535,71,22414,17245,8056,334,260,4.1,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,11.7,75,100900,107,1341,344,62,268,42,6568,0,4431,177,260,4.9,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.7,78,100900,0,0,342,0,0,0,0,0,0,0,260,5.3,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.6,81,100900,0,0,336,0,0,0,0,0,0,0,270,2.7,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,10.6,77,101000,0,0,330,0,0,0,0,0,0,0,260,2.9,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,10.6,75,101000,0,0,358,0,0,0,0,0,0,0,270,1.6,9,9,16.1,4572,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.5,72,101000,0,0,361,0,0,0,0,0,0,0,50,2.3,9,9,16.1,4572,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.0,69,101000,0,0,353,0,0,0,0,0,0,0,50,0.0,8,8,16.1,4572,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,9.3,65,101000,0,0,341,0,0,0,0,0,0,0,140,0.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,4.9,43,101000,0,0,344,0,0,0,0,0,0,0,140,0.2,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.8,80,101000,0,0,320,0,0,0,0,0,0,0,140,1.3,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,8.3,83,101000,0,0,312,0,0,0,0,0,0,0,140,0.0,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,8.3,86,100900,0,0,311,0,0,0,0,0,0,0,60,0.0,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,7.1,77,100900,0,0,298,0,0,0,0,0,0,0,60,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,0.9,40,101000,0,0,319,0,0,0,0,0,0,0,60,1.7,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,-2.0,29,101000,0,5,346,0,0,0,0,0,0,0,300,0.2,9,9,16.1,7620,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,-0.4,32,101100,123,1411,344,64,441,26,7228,0,2934,112,300,1.5,8,8,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,0.8,30,101100,355,1411,341,250,806,47,29309,24870,5553,222,90,1.6,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,-1.7,21,101100,550,1411,350,432,973,53,52676,47381,6459,267,90,2.6,3,3,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,-1.8,19,101100,687,1411,361,533,936,77,64837,54558,9442,408,140,1.7,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,-1.8,18,101000,757,1411,366,585,921,91,71067,56721,11072,488,270,3.6,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,5.5,36,101000,754,1411,383,430,409,211,48810,32061,24080,1134,260,3.7,9,9,16.1,7620,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,4.6,33,100900,680,1411,384,402,471,175,45768,34575,20017,921,260,4.0,9,9,16.1,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.4,6.6,41,100900,539,1411,380,297,403,143,33350,26326,16169,721,260,3.0,9,9,16.1,7620,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,10.6,59,100900,340,1411,370,190,460,79,21253,16569,8897,371,270,2.6,8,8,16.0,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,8.5,51,100900,109,1351,357,56,435,22,6248,0,2464,93,250,2.6,6,6,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,7.0,47,101000,0,0,348,0,0,0,0,0,0,0,250,2.5,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,9.3,62,101000,0,0,335,0,0,0,0,0,0,0,250,1.5,2,2,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,8.5,60,101000,0,0,322,0,0,0,0,0,0,0,260,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,10.0,65,101000,0,0,325,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.9,69,101100,0,0,321,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,9.2,66,101100,0,0,320,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.8,63,101100,0,0,316,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.1,64,101100,0,0,310,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,1.7,45,101100,0,0,303,0,0,0,0,0,0,0,100,1.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,-1.6,30,101000,0,0,310,0,0,0,0,0,0,0,50,2.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,-1.1,34,101100,0,0,304,0,0,0,0,0,0,0,50,1.5,0,0,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,1.2,45,101100,0,0,300,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,1.4,49,101100,0,0,296,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,-5.0,21,101100,0,3,331,0,0,0,0,0,0,0,10,0.3,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,-4.8,18,101200,122,1411,341,80,734,16,9292,0,1878,69,10,2.3,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,-3.2,19,101300,355,1411,352,280,1007,27,34347,25216,3264,125,10,0.2,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,-2.2,18,101300,550,1411,362,402,837,75,47686,44989,8977,380,50,1.6,5,5,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.4,-4.0,13,101200,688,1411,375,536,942,76,65274,55263,9332,403,50,2.2,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.8,-3.3,13,101100,759,1411,383,601,971,79,73886,58424,9776,427,30,2.9,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,4.6,29,101000,757,1411,374,558,831,112,66610,52269,13441,603,270,5.0,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,1.8,25,101000,683,1411,362,483,761,114,56867,48426,13522,602,270,4.1,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,3.2,30,101000,542,1411,355,370,717,94,42987,40095,10978,473,270,4.1,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,6.1,39,101000,344,1411,354,234,752,51,27194,21724,5927,239,270,4.1,3,3,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,8.8,51,101000,112,1364,350,63,558,19,7218,0,2168,81,260,3.8,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.2,66,101000,0,0,346,0,0,0,0,0,0,0,260,3.4,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.1,72,101000,0,0,344,0,0,0,0,0,0,0,310,1.3,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,11.6,71,101000,0,0,342,0,0,0,0,0,0,0,80,0.2,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,10.3,64,101000,0,0,369,0,0,0,0,0,0,0,80,1.5,9,9,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,7.7,52,101000,0,0,369,0,0,0,0,0,0,0,80,1.3,9,9,16.1,6096,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,2.8,37,101000,0,0,363,0,0,0,0,0,0,0,80,0.0,9,9,16.1,6273,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,-1.1,25,101000,0,0,364,0,0,0,0,0,0,0,80,0.3,9,9,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,-4.9,16,101000,0,0,370,0,0,0,0,0,0,0,20,2.3,9,9,16.1,7371,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,-3.9,22,100900,0,0,356,0,0,0,0,0,0,0,20,0.2,9,9,16.1,5557,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,-4.0,23,100900,0,0,351,0,0,0,0,0,0,0,20,1.6,9,9,16.1,5989,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-4.4,21,100900,0,0,348,0,0,0,0,0,0,0,50,2.1,8,8,16.0,5182,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,-4.0,23,100900,0,0,349,0,0,0,0,0,0,0,60,2.3,9,9,16.1,5182,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,-5.0,21,100900,0,0,342,0,0,0,0,0,0,0,60,0.0,8,8,16.1,5182,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,-5.0,21,100900,0,1,334,0,0,0,0,0,0,0,40,0.0,6,6,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,-4.7,19,100900,122,1411,337,71,560,22,8025,0,2517,95,40,0.2,4,4,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,-2.9,19,101000,355,1411,347,256,845,43,30243,25804,5111,203,40,2.3,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,-3.9,15,100900,551,1411,357,439,999,49,53881,48372,6014,247,60,3.6,3,3,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.8,-5.1,12,100800,689,1411,365,566,1044,56,70596,57799,7010,296,90,2.2,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.9,-4.7,12,100700,760,1411,371,623,1034,65,77672,60297,8179,352,120,2.8,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,2.7,24,100600,759,1411,369,595,947,85,72585,56193,10414,458,270,4.7,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,6.3,38,100500,686,1411,357,490,782,110,57886,47853,13075,581,270,5.1,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,2.4,28,100500,545,1411,354,382,765,87,44807,41834,10186,436,280,4.9,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,3.9,34,100500,347,1411,357,212,581,69,24109,21225,7891,325,270,3.6,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,5.7,41,100500,115,1376,353,63,512,21,7139,0,2421,91,270,3.6,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,7.3,49,100500,0,0,347,0,0,0,0,0,0,0,270,3.6,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,8.2,56,100500,0,0,337,0,0,0,0,0,0,0,270,3.4,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,7.2,53,100400,0,0,323,0,0,0,0,0,0,0,260,2.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,7.2,53,100400,0,0,324,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,7.1,57,100400,0,0,318,0,0,0,0,0,0,0,90,1.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,6.6,52,100400,0,0,322,0,0,0,0,0,0,0,120,2.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.0,53,100400,0,0,317,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.3,5.5,52,100300,0,0,315,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,5.0,58,100300,0,0,305,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,4.8,61,100300,0,0,301,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,3.3,55,100300,0,0,299,0,0,0,0,0,0,0,120,0.0,0,0,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,2.7,54,100300,0,0,297,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,2.1,50,100300,0,0,298,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,1.8,47,100400,0,1,314,0,0,0,0,0,0,0,120,0.0,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,2.5,45,100400,122,1411,320,75,640,19,8576,0,2228,83,120,0.3,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,0.3,33,100500,355,1411,330,262,889,39,31288,25046,4600,181,120,2.6,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,2.2,33,100500,552,1411,341,436,985,51,53317,46562,6279,259,120,2.5,3,3,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,-0.1,25,100500,691,1411,347,569,1051,55,71059,56686,6859,289,260,2.0,3,3,14.3,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,0.8,26,100400,763,1411,351,608,983,77,74898,57763,9517,415,260,1.9,3,3,12.5,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,10.9,60,100300,762,1411,351,597,949,85,72720,52561,10353,457,260,5.1,3,3,10.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,9.3,56,100300,689,1411,346,530,918,82,63936,50181,9889,431,240,4.9,3,3,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,9.2,58,100300,549,1411,343,408,871,69,48557,41777,8276,350,280,3.6,3,3,15.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,11.1,72,100300,351,1411,338,246,799,47,28745,20603,5534,222,260,3.6,3,3,12.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.1,75,100300,118,1391,328,73,666,17,8397,0,1986,74,260,3.3,1,1,12.5,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.0,77,100300,0,0,319,0,0,0,0,0,0,0,260,3.0,0,0,13.3,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.7,76,100300,0,0,329,0,0,0,0,0,0,0,270,2.2,2,2,15.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,11.7,86,100300,0,0,316,0,0,0,0,0,0,0,260,2.3,0,0,12.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.6,84,100300,0,0,317,0,0,0,0,0,0,0,260,0.0,0,0,12.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.7,81,100300,0,0,314,0,0,0,0,0,0,0,260,0.0,0,0,12.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,11.7,87,100300,0,0,315,0,0,0,0,0,0,0,100,0.0,0,0,12.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.6,90,100300,0,0,326,0,0,0,0,0,0,0,100,0.0,3,3,9.8,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,10.4,91,100300,0,0,318,0,0,0,0,0,0,0,100,0.2,3,3,11.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,90,100300,0,0,314,0,0,0,0,0,0,0,120,2.0,6,6,7.5,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,10.2,97,100300,0,0,346,0,0,0,0,0,0,0,110,2.3,10,10,0.5,30,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,11.1,96,100300,0,0,352,0,0,0,0,0,0,0,120,3.1,10,10,0.4,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,11.6,99,100300,0,0,353,0,0,0,0,0,0,0,100,2.9,10,10,2.4,136,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.9,86,100400,0,0,353,0,0,0,0,0,0,0,180,2.2,10,10,6.4,220,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.4,86,100400,0,1,350,0,0,0,0,0,0,0,90,2.5,10,10,6.2,266,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,9.4,85,100500,122,1411,351,42,125,31,4601,0,3413,132,50,1.6,10,10,4.8,216,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,9.3,81,100500,356,1411,344,166,267,99,18327,11931,10945,465,90,2.1,9,9,5.3,260,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.0,77,100500,553,1411,344,315,439,143,35386,27937,16099,720,150,0.0,8,8,6.0,335,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,9.5,70,100500,693,1411,334,516,856,95,61521,48813,11430,504,270,0.3,4,4,8.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,9.9,72,100400,765,1411,332,595,934,89,72297,52922,10796,478,270,2.8,3,3,8.2,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,9.5,72,100300,765,1411,329,613,991,75,75335,54310,9306,407,270,4.7,3,3,9.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,10.0,74,100300,692,1411,330,569,1047,56,70741,52169,6934,294,270,5.6,3,3,9.8,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.0,73,100300,552,1411,332,462,1089,36,57776,43875,4458,180,270,4.4,3,3,11.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.0,77,100300,355,1411,327,266,915,36,31781,21056,4276,168,270,3.1,3,3,9.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,10.0,79,100300,121,1407,326,76,672,18,8711,0,2073,77,270,3.1,3,3,7.6,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.9,80,100300,0,0,324,0,0,0,0,0,0,0,270,3.0,3,3,7.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.5,78,100400,0,0,321,0,0,0,0,0,0,0,280,2.1,2,2,11.3,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,10.0,81,100400,0,0,310,0,0,0,0,0,0,0,320,1.9,0,0,11.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.0,83,100500,0,0,309,0,0,0,0,0,0,0,30,0.2,0,0,9.5,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.0,84,100500,0,0,308,0,0,0,0,0,0,0,30,1.3,0,0,8.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.0,86,100500,0,0,306,0,0,0,0,0,0,0,30,0.0,0,0,7.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.9,86,100600,0,0,306,0,0,0,0,0,0,0,30,0.0,0,0,6.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,9.3,89,100600,0,0,300,0,0,0,0,0,0,0,30,0.0,0,0,6.4,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,8.2,89,100600,0,0,295,0,0,0,0,0,0,0,100,0.0,0,0,6.4,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,7.2,89,100600,0,0,290,0,0,0,0,0,0,0,100,0.0,0,0,6.4,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,7.2,89,100600,0,0,290,0,0,0,0,0,0,0,100,0.0,0,0,6.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,5.7,86,100600,0,0,284,0,0,0,0,0,0,0,100,1.3,0,0,11.5,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.4,6.8,90,100700,0,0,287,0,0,0,0,0,0,0,100,0.0,0,0,13.3,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.1,85,100700,0,2,292,0,0,0,0,0,0,0,360,0.2,0,0,15.9,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,6.8,78,100800,123,1411,296,100,485,58,10477,1602,6098,249,360,1.3,0,0,14.5,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,6.0,57,100900,356,1411,325,276,971,30,33441,22804,3681,143,200,0.4,3,3,14.5,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,-3.3,23,101000,554,1411,335,439,986,51,53666,48293,6295,259,200,3.1,5,5,14.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,-5.5,18,101000,694,1411,339,574,1055,54,71728,58311,6826,288,200,1.9,5,5,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,-0.7,26,100900,767,1411,366,478,536,186,55046,40995,21569,1005,240,4.5,9,9,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,-0.8,26,100800,768,1411,365,466,495,196,53418,38650,22605,1058,260,4.3,9,9,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,0.9,30,100800,695,1411,365,422,506,173,48287,37563,19827,912,270,5.6,9,9,16.1,7620,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,-0.7,27,100800,556,1411,363,338,532,129,38537,34648,14720,650,250,4.7,9,9,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,-1.1,26,100800,359,1411,355,205,484,82,23078,21044,9248,386,260,2.1,8,8,16.0,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,-0.5,28,100800,124,1411,355,57,297,30,6281,0,3384,131,260,1.0,8,8,16.0,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,-0.1,29,100800,0,8,353,0,0,0,0,0,0,0,50,0.0,8,8,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,-1.6,27,100800,0,0,335,0,0,0,0,0,0,0,50,0.4,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,-4.9,19,100800,0,0,334,0,0,0,0,0,0,0,50,2.7,4,4,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,-3.8,24,100800,0,0,311,0,0,0,0,0,0,0,190,0.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,-3.2,25,100900,0,0,311,0,0,0,0,0,0,0,190,2.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,-2.2,29,100900,0,0,307,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,-2.1,31,100900,0,0,304,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,-1.6,36,100900,0,0,297,0,0,0,0,0,0,0,60,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,-0.8,45,101000,0,0,289,0,0,0,0,0,0,0,60,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.5,-2.1,38,101000,0,0,291,0,0,0,0,0,0,0,60,2.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,-1.7,44,100900,0,0,285,0,0,0,0,0,0,0,150,2.1,0,0,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,-0.6,50,100900,0,0,283,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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.0,-0.7,51,100900,0,0,282,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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.7,-1.8,44,101000,0,2,296,0,0,0,0,0,0,0,120,0.0,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,-2.5,35,101000,123,1411,306,76,654,19,8745,0,2188,81,130,0.2,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,-4.5,24,101000,357,1411,320,279,987,29,34061,26104,3524,136,130,1.6,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-5.0,20,101100,556,1411,335,441,991,51,54027,48848,6231,256,150,2.1,5,5,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,-5.5,16,101000,696,1411,343,606,1155,36,78128,60253,4657,191,240,0.3,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,-5.4,15,100900,770,1411,348,645,1078,57,81388,61715,7190,307,240,2.7,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,-8.3,11,100900,771,1411,348,668,1144,43,86034,63711,5592,234,210,3.6,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,-8.0,12,100800,699,1411,346,581,1065,53,72851,59229,6656,280,250,3.7,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,-4.3,17,100900,560,1411,346,443,986,52,54240,48948,6388,264,250,4.3,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,5.6,43,100900,363,1411,342,231,637,67,26361,23248,7667,316,270,6.2,3,3,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,7.0,50,100900,128,1411,340,65,409,28,7285,0,3165,122,260,4.8,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,8.3,58,100900,0,22,338,0,0,0,0,0,0,0,260,3.7,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,8.1,60,101000,0,0,331,0,0,0,0,0,0,0,280,4.5,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,6.7,55,101000,0,0,318,0,0,0,0,0,0,0,280,3.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,6.6,54,101000,0,0,333,0,0,0,0,0,0,0,280,1.5,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,5.7,54,101000,0,0,327,0,0,0,0,0,0,0,120,1.6,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,6.7,60,101000,0,0,325,0,0,0,0,0,0,0,130,1.9,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,6.6,62,101000,0,0,323,0,0,0,0,0,0,0,130,0.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,5.9,62,101000,0,0,343,0,0,0,0,0,0,0,110,0.2,9,9,16.1,6706,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,4.3,64,101000,0,0,331,0,0,0,0,0,0,0,110,1.3,9,9,16.1,6706,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,3.8,66,100900,0,0,326,0,0,0,0,0,0,0,80,0.2,9,9,16.1,6706,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,2.8,61,100900,0,0,318,0,0,0,0,0,0,0,80,2.1,8,8,16.0,6706,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,1.1,53,100900,0,0,307,0,0,0,0,0,0,0,80,1.5,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,1.2,57,100900,0,0,303,0,0,0,0,0,0,0,90,1.5,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.3,2.4,58,100900,0,3,305,0,0,0,0,0,0,0,80,1.6,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,3.8,54,100900,123,1411,316,76,659,19,8792,0,2177,81,100,2.1,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,2.9,47,101000,358,1411,321,266,896,38,31727,24731,4568,180,100,1.9,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,3.9,44,101000,557,1411,330,437,968,55,53148,46120,6650,276,100,0.0,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,4.1,40,100900,698,1411,344,519,853,97,62114,51183,11639,513,250,0.3,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,5.5,42,100800,772,1411,351,590,896,99,71258,54272,11975,533,250,2.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,4.5,39,100700,774,1411,349,605,942,88,73792,55874,10760,475,270,2.7,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,1.4,31,100600,703,1411,345,546,936,80,66374,54341,9705,421,270,3.6,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,3.4,39,100600,564,1411,363,333,489,138,37752,32213,15690,698,270,3.5,9,9,16.1,7620,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,4.4,44,100600,367,1411,351,197,404,92,21943,18352,10274,434,270,3.1,8,8,16.0,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,5.9,51,100600,131,1411,341,64,351,31,7052,0,3435,133,270,3.6,6,6,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,7.6,59,100700,0,36,337,0,0,0,0,0,0,0,270,4.1,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.7,79,100700,0,0,355,0,0,0,0,0,0,0,270,4.1,9,9,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.2,82,100700,0,0,365,0,0,0,0,0,0,0,280,4.1,10,10,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,100600,0,0,364,0,0,0,0,0,0,0,270,3.9,10,10,15.7,6096,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.6,86,100700,0,0,354,0,0,0,0,0,0,0,260,1.9,9,9,12.9,6096,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,11.1,84,100700,0,0,345,0,0,0,0,0,0,0,240,0.2,8,8,12.7,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.1,87,100600,0,0,331,0,0,0,0,0,0,0,240,1.3,5,5,12.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,10.5,88,100600,0,0,326,0,0,0,0,0,0,0,70,0.2,5,5,14.8,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,9.3,91,100600,0,0,336,0,0,0,0,0,0,0,70,1.6,9,9,5.4,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,8.6,85,100500,0,0,337,0,0,0,0,0,0,0,80,1.9,9,9,10.2,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,7.0,76,100500,0,0,327,0,0,0,0,0,0,0,110,0.0,8,8,14.0,6273,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,5.1,69,100500,0,0,330,0,0,0,0,0,0,0,110,1.5,9,9,15.9,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,5.6,71,100500,0,0,331,0,0,0,0,0,0,0,50,1.3,9,9,14.7,7620,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,2.3,53,100500,0,3,332,0,0,0,0,0,0,0,110,0.2,9,9,16.1,7620,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.9,2.7,57,100600,124,1411,329,47,174,32,5192,0,3515,136,110,2.0,9,9,16.1,7620,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,2.5,49,100600,359,1411,339,178,318,97,19707,15028,10773,456,120,1.6,9,9,15.9,7620,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,4.4,51,100600,559,1411,340,321,449,143,36181,29856,16184,722,110,2.1,8,8,14.0,7299,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,4.5,46,100600,701,1411,357,428,516,172,48974,37531,19775,911,110,1.3,9,9,8.4,4877,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,5.0,43,100500,775,1411,366,478,517,193,54822,39053,22294,1045,240,0.2,9,9,11.1,4877,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,5.1,43,100400,777,1411,366,507,610,171,58802,43914,19929,925,240,1.9,9,9,9.8,4877,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,5.3,49,100400,706,1411,358,436,529,171,49909,38224,19652,905,270,4.5,9,9,11.5,4877,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,3.7,42,100300,568,1411,358,335,485,140,37933,32130,15890,709,270,4.2,9,9,13.3,5019,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.7,56,100400,371,1411,366,166,231,106,18343,11370,11687,499,270,4.6,10,10,16.0,6096,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.3,7.0,58,100400,135,1411,355,55,213,35,6061,0,3829,150,260,3.3,9,9,16.0,6096,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.6,62,100400,0,51,354,0,0,0,0,0,0,0,260,2.2,9,9,16.1,6096,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.7,79,100400,0,0,355,0,0,0,0,0,0,0,270,2.7,9,9,16.1,5918,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.2,81,100400,0,0,356,0,0,0,0,0,0,0,280,2.9,9,9,16.1,4572,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.3,81,100400,0,0,366,0,0,0,0,0,0,0,360,1.3,10,10,16.1,4572,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.3,64,100300,0,0,365,0,0,0,0,0,0,0,150,0.2,10,10,16.1,4572,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.4,65,100400,0,0,355,0,0,0,0,0,0,0,150,2.0,9,9,16.1,4572,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,9.7,73,100400,0,0,354,0,0,0,0,0,0,0,280,1.3,9,9,16.1,4572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.4,83,100400,0,0,355,0,0,0,0,0,0,0,90,0.2,9,9,16.1,4572,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.8,71,100400,0,0,350,0,0,0,0,0,0,0,90,1.9,9,9,16.1,4572,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.8,67,100400,0,0,349,0,0,0,0,0,0,0,90,0.0,9,9,16.1,4749,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.8,69,100400,0,0,339,0,0,0,0,0,0,0,230,0.0,8,8,16.0,6273,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,7.0,68,100300,0,0,343,0,0,0,0,0,0,0,230,0.2,9,9,16.1,7442,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,5.7,64,100400,0,0,339,0,0,0,0,0,0,0,230,1.9,9,9,16.1,6259,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.8,67,100500,0,4,343,0,0,0,0,0,0,0,40,0.2,9,9,16.1,7514,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,6.2,62,100500,124,1410,344,48,187,32,5329,0,3522,137,40,2.1,9,9,16.1,7620,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,-1.6,27,100500,361,1410,355,198,436,87,22243,19812,9773,410,50,2.2,9,9,16.1,7620,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,-5.6,17,100600,561,1410,355,369,653,109,42636,40620,12656,552,60,2.6,8,8,16.0,7620,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,-5.3,15,100500,703,1410,348,613,1157,36,79070,60529,4647,191,100,1.6,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,-7.8,11,100500,778,1410,349,636,1029,68,79336,61344,8519,369,100,2.3,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,-6.1,14,100400,780,1410,346,626,992,77,77407,60204,9530,416,260,3.6,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,7.0,40,100300,710,1410,359,556,950,78,67640,52801,9478,412,280,3.7,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,9.4,57,100300,572,1410,343,412,812,83,48591,42030,9848,423,270,4.0,2,2,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,9.4,58,100400,375,1410,330,295,997,30,35929,23769,3605,140,260,3.6,0,0,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,7.6,53,100400,139,1410,332,77,501,28,8636,0,3111,119,250,3.3,1,1,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,5.9,49,100400,0,66,335,0,0,0,0,0,0,0,250,3.0,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,4.7,47,100400,0,0,328,0,0,0,0,0,0,0,260,2.6,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,6.4,54,100500,0,0,318,0,0,0,0,0,0,0,280,2.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,4.5,45,100500,0,0,319,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,5.4,56,100600,0,0,309,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,3.8,47,100600,0,0,312,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,3.1,43,100600,0,0,314,0,0,0,0,0,0,0,70,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,1.0,38,100600,0,0,310,0,0,0,0,0,0,0,70,1.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,-3.5,30,100600,0,0,297,0,0,0,0,0,0,0,70,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,-1.0,45,100600,0,0,288,0,0,0,0,0,0,0,70,1.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,-4.4,34,100600,0,0,285,0,0,0,0,0,0,0,40,2.1,0,0,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,-10.1,19,100700,0,0,285,0,0,0,0,0,0,0,70,2.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,-10.5,18,100700,0,0,284,0,0,0,0,0,0,0,20,2.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,-9.5,20,100800,0,7,302,0,0,0,0,0,0,0,90,2.2,5,5,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,-10.5,16,100900,125,1410,308,72,551,23,8179,0,2626,99,20,3.1,4,4,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,-10.7,13,100900,362,1410,320,270,905,38,32385,28117,4526,178,20,3.2,3,3,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,-15.6,7,101000,562,1410,327,471,1091,36,59346,52413,4537,182,20,3.6,3,3,16.0,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,-15.4,6,101000,706,1410,335,596,1096,47,75491,61180,6020,251,350,1.6,3,3,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.5,-18.4,5,100900,781,1410,336,639,1032,68,79910,62836,8515,368,20,2.6,3,3,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,-19.4,4,100800,784,1410,342,664,1099,53,84550,64607,6803,289,20,2.5,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,-19.7,4,100700,714,1410,344,614,1130,42,78631,62648,5346,221,20,2.2,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,-21.7,3,100700,576,1410,343,486,1104,35,61519,54177,4441,178,20,2.3,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,-21.7,3,100700,379,1410,343,275,851,46,32643,31284,5471,218,250,0.0,3,3,16.0,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,-18.2,5,100700,142,1410,331,73,401,32,8116,0,3600,139,250,1.6,3,3,16.0,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,-13.0,10,100700,0,82,322,0,0,0,0,0,0,0,250,3.0,3,3,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,3.2,39,100700,0,0,331,0,0,0,0,0,0,0,260,2.5,2,2,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,1.4,34,100800,0,0,320,0,0,0,0,0,0,0,330,1.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,-9.2,13,100800,0,0,313,0,0,0,0,0,0,0,360,2.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,-11.5,12,100800,0,0,318,0,0,0,0,0,0,0,360,0.0,3,3,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,-10.1,16,100900,0,0,310,0,0,0,0,0,0,0,40,0.5,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,-11.7,12,100900,0,0,320,0,0,0,0,0,0,0,40,4.5,5,5,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,-15.6,9,100800,0,0,315,0,0,0,0,0,0,0,360,3.6,5,5,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,-12.0,16,100800,0,0,302,0,0,0,0,0,0,0,70,0.3,5,5,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,-10.5,19,100800,0,0,299,0,0,0,0,0,0,0,70,2.5,5,5,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,-10.0,20,100800,0,0,300,0,0,0,0,0,0,0,100,2.1,5,5,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,-11.6,17,100800,0,0,299,0,0,0,0,0,0,0,60,2.5,5,5,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,-10.8,20,100900,0,0,293,0,0,0,0,0,0,0,90,1.5,5,5,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,-12.2,16,100900,0,10,315,0,0,0,0,0,0,0,70,1.7,9,9,16.1,7620,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,-12.1,15,100900,126,1410,321,48,173,32,5296,0,3596,139,50,3.1,9,9,16.1,7620,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,-11.9,14,101000,364,1410,328,192,384,93,21416,18982,10389,437,60,3.0,9,9,16.1,7620,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,-13.3,11,101000,565,1410,326,332,482,139,37760,33718,15870,705,90,2.6,8,8,16.0,7442,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,-11.0,13,101000,708,1410,340,393,383,201,44633,31203,22925,1066,120,0.2,9,9,16.1,6096,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,-10.9,12,100900,784,1410,344,441,387,225,50241,32666,25825,1222,120,1.5,9,9,16.1,6096,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,-11.4,9,100800,788,1410,361,529,659,161,62007,49137,18949,874,70,2.0,9,9,16.1,6096,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,0.0,29,100800,718,1410,374,433,494,182,49536,37470,20883,966,240,5.5,10,10,16.1,6096,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,3.7,41,100800,580,1410,361,348,506,140,39502,33612,15921,711,270,3.9,9,9,16.1,6096,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,-1.7,27,100800,384,1410,346,180,267,108,19995,14331,11984,512,310,2.1,8,8,16.0,6096,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,0.7,34,100800,147,1410,346,59,200,38,6478,0,4200,165,240,2.6,8,8,16.0,6096,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,2.7,41,100800,1,100,354,0,0,0,0,0,0,0,240,2.7,9,9,16.1,6096,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,2.4,40,100800,0,0,353,0,0,0,0,0,0,0,240,0.0,9,9,16.1,6096,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,3.9,48,100800,0,0,350,0,0,0,0,0,0,0,330,0.2,9,9,16.1,6096,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,3.6,47,100800,0,0,349,0,0,0,0,0,0,0,330,1.9,9,9,16.1,6096,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,0.9,40,100800,0,0,336,0,0,0,0,0,0,0,120,0.3,8,8,16.1,6096,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,-0.4,39,100800,0,0,315,0,0,0,0,0,0,0,120,2.3,4,4,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,1.4,45,100800,0,0,315,0,0,0,0,0,0,0,120,0.0,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,3.8,56,100800,0,0,314,0,0,0,0,0,0,0,100,0.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,1,15,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,2.9,62,100800,0,0,307,0,0,0,0,0,0,0,100,0.3,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,0.0,52,100700,0,0,320,0,0,0,0,0,0,0,100,2.5,9,9,16.1,3658,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,0.0,50,100700,0,0,315,0,0,0,0,0,0,0,80,1.5,8,8,16.0,3586,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,-1.9,42,100700,0,0,322,0,0,0,0,0,0,0,100,1.6,9,9,16.1,3083,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,-3.6,37,100800,0,0,318,0,0,0,0,0,0,0,50,2.1,9,9,16.1,3353,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,-5.5,30,100800,0,13,320,0,0,0,0,0,0,0,70,2.2,9,9,16.1,3317,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,-3.6,34,100800,127,1410,324,49,176,33,5365,0,3625,141,100,2.3,9,9,16.1,3030,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,2.3,47,100900,365,1410,340,186,349,96,20722,16586,10722,454,130,0.2,9,9,16.1,2860,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,3.3,49,100900,567,1410,337,323,440,147,36487,29835,16617,744,130,2.1,8,8,16.0,2591,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,8.0,58,100900,711,1410,361,431,502,178,49176,36196,20399,944,100,3.5,9,9,16.1,2573,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,5.9,49,100800,788,1410,360,460,437,216,52391,34232,24714,1170,120,2.7,9,9,16.1,2438,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,7.9,58,100700,791,1410,361,498,550,190,57402,40401,21934,1029,250,3.7,9,9,16.1,2509,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,9.0,61,100600,722,1410,364,452,549,171,51807,38605,19683,910,280,3.9,9,9,16.1,2959,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,8.7,62,100600,584,1410,361,353,515,139,40044,33047,15864,710,230,2.6,9,9,16.1,2286,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,3.3,43,100600,388,1410,347,220,470,91,24770,22188,10282,434,250,2.6,8,8,16.0,2286,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,6.0,52,100600,151,1410,356,59,186,39,6486,0,4320,170,250,2.3,9,9,16.0,2286,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,8.6,64,100700,1,117,368,0,0,0,0,0,0,0,250,2.2,10,10,16.1,2303,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.5,75,100700,0,0,367,0,0,0,0,0,0,0,250,3.2,10,10,16.1,2455,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,6.4,59,100700,0,0,360,0,0,0,0,0,0,0,210,4.0,10,10,16.1,2591,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,8.6,69,100800,0,0,362,0,0,0,0,0,0,0,240,3.7,10,10,16.1,2555,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,6.3,60,100800,0,0,357,0,0,0,0,0,0,0,250,4.1,10,10,16.1,2286,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.7,67,100800,0,0,359,0,0,0,0,0,0,0,250,3.9,10,10,16.1,2374,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.1,66,100800,0,0,355,0,0,0,0,0,0,0,260,2.3,10,10,16.1,3083,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,6.0,62,100800,0,0,343,0,0,0,0,0,0,0,260,0.0,9,9,16.1,3353,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.5,5.7,68,100800,0,0,317,0,0,0,0,0,0,0,100,0.2,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,6.0,76,100700,0,0,310,0,0,0,0,0,0,0,100,1.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,5.6,74,100700,0,0,321,0,0,0,0,0,0,0,110,1.5,8,8,16.0,2809,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,6.2,77,100700,0,0,329,0,0,0,0,0,0,0,120,0.2,9,9,16.1,1006,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,7.2,82,100700,0,0,330,0,0,0,0,0,0,0,120,2.2,9,9,16.1,1055,9,999999999,150,0.0000,0,88,999.000,3.0,1.0 +2012,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,11.1,7.5,79,100800,0,17,335,0,0,0,0,0,0,0,100,2.9,9,9,14.9,1107,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,8.4,82,100800,128,1410,337,53,221,33,5820,0,3616,141,120,2.2,9,9,10.4,552,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,8.6,76,100900,367,1410,345,190,362,96,21057,16193,10645,452,300,3.3,9,9,15.8,726,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.2,69,100900,569,1410,336,317,410,152,35684,27619,17144,771,260,3.6,8,8,14.0,1319,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.1,64,100900,714,1410,342,383,340,211,43159,26730,23854,1118,260,4.7,9,9,16.1,799,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,6.1,63,100900,791,1410,330,480,494,203,55038,37696,23423,1104,260,5.5,7,7,16.1,853,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,5.5,61,100800,795,1410,323,577,798,127,68694,51887,15175,690,260,3.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,5.0,57,100800,726,1410,324,559,915,88,67646,53465,10633,467,290,3.5,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,5.0,58,100800,589,1410,321,466,980,56,56832,48049,6900,288,270,3.2,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,5.0,59,100800,392,1410,317,285,852,48,33733,28686,5672,228,260,3.6,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,5.0,60,100900,155,1410,315,91,575,28,10324,0,3174,121,260,3.3,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,4.9,62,100900,1,136,314,0,0,0,0,0,0,0,260,3.0,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,4.3,61,101000,0,0,311,0,0,0,0,0,0,0,200,1.9,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,3.4,57,101000,0,0,310,0,0,0,0,0,0,0,100,0.3,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,3.9,62,101100,0,0,308,0,0,0,0,0,0,0,100,2.5,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,3.9,66,101100,0,0,304,0,0,0,0,0,0,0,90,2.1,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,3.8,63,101100,0,0,322,0,0,0,0,0,0,0,80,2.2,8,8,16.1,1006,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,3.3,63,101200,0,0,307,0,0,0,0,0,0,0,100,2.7,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,3.3,64,101200,0,0,318,0,0,0,0,0,0,0,100,2.7,8,8,16.1,6096,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.8,3.3,69,101200,0,0,302,0,0,0,0,0,0,0,100,0.0,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,3.2,71,101200,0,0,300,0,0,0,0,0,0,0,100,0.0,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,2.8,71,101200,0,0,297,0,0,0,0,0,0,0,30,0.0,5,5,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,2.8,71,101200,0,0,297,0,0,0,0,0,0,0,30,0.0,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,2.8,70,101300,0,0,298,0,0,0,0,0,0,0,30,0.2,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.5,2.7,67,101300,0,22,300,0,0,0,0,0,0,0,30,2.0,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,2.2,58,101400,130,1410,325,55,235,33,6035,0,3655,142,30,1.6,9,9,16.1,1242,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,2.3,54,101500,369,1410,324,207,458,87,23244,20611,9823,413,350,2.1,8,8,16.1,1189,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,3.3,53,101500,572,1410,320,404,776,90,47512,43433,10564,455,200,2.2,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,2.7,49,101400,717,1410,319,527,829,106,62854,51572,12632,561,200,2.5,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,2.3,46,101300,794,1410,319,602,880,106,72706,55502,12864,577,200,1.9,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,3.3,49,101300,799,1410,320,634,970,85,77963,57694,10422,460,270,4.7,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,3.4,48,101300,730,1410,322,601,1045,60,75005,57039,7481,320,270,5.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,4.5,54,101200,593,1410,321,476,1005,53,58416,48914,6478,269,260,4.3,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,5.0,57,101300,397,1410,319,283,821,52,33360,29087,6148,249,260,5.7,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,5.3,60,101200,159,1410,318,92,549,30,10378,0,3391,130,260,5.1,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,5.7,63,101200,2,155,317,0,0,0,0,0,0,0,260,4.5,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,6.1,66,101300,0,0,318,0,0,0,0,0,0,0,270,4.1,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,6.2,67,101300,0,0,302,0,0,0,0,0,0,0,270,4.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.1,71,101400,0,0,303,0,0,0,0,0,0,0,280,3.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,6.6,69,101400,0,0,302,0,0,0,0,0,0,0,290,3.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,6.0,68,101400,0,0,300,0,0,0,0,0,0,0,360,1.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,5.6,67,101400,0,0,299,0,0,0,0,0,0,0,360,1.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.4,5.5,72,101400,0,0,294,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.7,4.9,77,101300,0,0,286,0,0,0,0,0,0,0,100,1.9,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.3,3.9,79,101300,0,0,280,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,3.9,77,101300,0,0,282,0,0,0,0,0,0,0,100,0.0,0,0,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.3,3.8,79,101300,0,0,280,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,3.3,73,101300,0,0,282,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.4,3.4,71,101400,0,27,298,0,0,0,0,0,0,0,90,0.0,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.2,3.9,70,101400,131,1410,300,80,623,22,9095,0,2470,93,90,0.2,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,4.0,61,101500,371,1410,309,265,827,47,31235,26234,5593,224,90,1.3,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,4.4,55,101500,574,1410,318,438,914,66,52755,46304,7941,335,90,0.0,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,5.7,56,101400,720,1410,325,575,988,71,70698,54583,8723,377,260,0.4,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.1,55,101300,798,1410,328,628,952,89,76811,56145,10892,483,260,3.2,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.2,56,101200,803,1410,328,646,995,79,79774,57215,9785,430,280,3.7,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.3,61,101200,735,1410,329,598,1022,65,74078,55056,8091,348,270,4.2,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,7.8,65,101200,598,1410,329,460,928,67,55521,46573,8058,342,240,4.6,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,7.8,67,101100,402,1410,325,283,796,56,33097,28412,6565,268,270,4.6,3,3,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,7.5,67,101100,163,1410,323,94,545,31,10609,0,3509,135,260,4.3,3,3,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,7.1,67,101100,2,174,321,0,0,0,0,0,0,0,260,4.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.6,66,101100,0,0,315,0,0,0,0,0,0,0,270,3.5,2,2,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,5.7,62,101000,0,0,304,0,0,0,0,0,0,0,260,2.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,6.2,65,101000,0,0,304,0,0,0,0,0,0,0,260,2.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,7.2,71,101000,0,0,304,0,0,0,0,0,0,0,260,2.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.6,7.1,69,101000,0,0,305,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,6.7,74,101000,0,0,298,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.9,6.6,75,101000,0,0,297,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,5.6,77,100900,0,0,290,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.3,5.5,77,100800,0,0,289,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,5.0,80,100800,0,0,285,0,0,0,0,0,0,0,140,0.0,0,0,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,5.5,83,100800,0,0,285,0,0,0,0,0,0,0,140,1.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.3,4.3,81,100800,0,0,280,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,4.0,77,100900,0,32,299,0,0,0,0,0,0,0,80,2.1,5,5,15.7,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.6,4.4,75,100900,133,1409,303,70,449,28,7889,0,3161,121,100,2.1,5,5,12.7,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,4.5,63,100900,373,1409,312,264,810,50,31025,26289,5827,235,100,1.9,4,4,11.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,5.6,60,100900,577,1409,320,448,945,61,54209,46492,7376,309,170,0.0,3,3,9.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,5.1,51,100800,723,1409,332,563,938,82,68523,53861,9977,436,170,1.8,5,5,9.7,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,6.2,52,100700,802,1409,338,610,888,105,73761,54523,12736,572,250,4.1,5,5,9.8,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.8,58,100600,807,1409,353,493,501,206,56620,38222,23790,1125,250,4.0,9,9,11.6,7620,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.3,60,100600,739,1409,354,448,497,187,51191,36698,21492,1002,280,3.7,9,9,14.7,7620,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.2,64,100600,602,1409,347,378,571,134,43243,36340,15382,688,260,4.1,8,8,16.1,7620,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,7.2,62,100600,406,1409,331,269,690,70,30961,27946,8063,335,240,4.1,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.5,66,100600,167,1409,329,88,431,37,9823,0,4136,162,250,3.8,5,5,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.8,69,100600,3,193,327,0,0,0,0,0,0,0,250,3.7,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,7.9,70,100600,0,0,324,0,0,0,0,0,0,0,270,3.9,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.8,76,100600,0,0,318,0,0,0,0,0,0,0,250,2.3,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,8.3,72,100600,0,0,309,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.2,77,100600,0,0,317,0,0,0,0,0,0,0,130,2.1,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,7.9,78,100600,0,0,332,0,0,0,0,0,0,0,100,2.1,8,8,16.1,6096,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.3,80,100600,0,0,315,0,0,0,0,0,0,0,100,2.2,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,8.2,81,100600,0,0,319,0,0,0,0,0,0,0,100,2.5,5,5,15.9,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,7.3,87,100600,0,0,309,0,0,0,0,0,0,0,110,1.6,5,5,14.3,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.6,7.9,89,100700,0,0,329,0,0,0,0,0,0,0,80,2.6,9,9,12.3,4090,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,8.3,89,100600,0,0,324,0,0,0,0,0,0,0,110,2.1,8,8,11.0,399,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,8.3,89,100600,0,0,332,0,0,0,0,0,0,0,90,2.2,9,9,11.3,430,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,8.1,82,100700,0,0,336,0,0,0,0,0,0,0,40,2.9,9,9,11.1,674,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,7.3,80,100700,0,37,333,0,0,0,0,0,0,0,90,0.2,9,9,9.7,2382,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,8.3,79,100800,134,1409,340,56,224,34,6127,0,3793,148,70,1.5,9,9,9.8,4267,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.3,74,100800,376,1409,345,183,299,103,20229,14343,11453,489,80,1.3,9,9,11.5,4267,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.3,69,100900,580,1409,342,336,457,148,37920,30200,16739,752,310,0.0,8,8,12.0,4267,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.9,63,100900,727,1409,355,410,401,204,46473,30618,23169,1086,310,2.5,9,9,11.3,2836,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,7.8,62,100700,806,1409,355,450,377,235,51128,30200,26784,1280,290,1.8,9,9,16.1,4267,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,7.8,60,100700,812,1409,357,494,494,209,56640,37644,24118,1143,250,4.1,9,9,16.1,4267,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.9,63,100600,744,1409,355,453,502,187,51741,36928,21526,1004,270,4.1,9,9,16.1,4267,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.4,65,100600,607,1409,347,392,615,127,45064,38260,14651,653,260,4.0,8,8,16.1,4267,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.9,70,100600,411,1409,333,267,660,75,30619,27303,8570,358,280,3.6,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,8.9,71,100600,172,1409,332,91,441,38,10181,0,4205,165,250,3.3,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.0,72,100600,3,212,331,0,0,0,0,0,0,0,250,3.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,9.4,75,100600,0,0,331,0,0,0,0,0,0,0,260,3.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,9.5,77,100700,0,0,329,0,0,0,0,0,0,0,250,2.6,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.1,78,100700,0,0,362,0,0,0,0,0,0,0,260,2.3,10,10,16.1,1333,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.7,81,100600,0,0,363,0,0,0,0,0,0,0,200,0.0,10,10,16.1,1022,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.7,81,100700,0,0,363,0,0,0,0,0,0,0,200,1.3,10,10,15.3,753,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.7,82,100700,0,0,362,0,0,0,0,0,0,0,150,0.2,10,10,10.9,335,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100700,0,0,358,0,0,0,0,0,0,0,150,2.1,10,10,7.5,340,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.7,88,100600,0,0,357,0,0,0,0,0,0,0,130,1.6,10,10,2.4,366,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,11.0,94,100500,0,0,353,0,0,0,0,0,0,0,100,3.0,10,10,2.4,305,9,999999999,200,0.0000,0,88,999.000,5.0,1.0 +2012,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,12.2,11.7,97,100400,0,0,355,0,0,0,0,0,0,0,250,0.0,10,10,2.4,126,9,999999999,209,0.0000,0,88,999.000,15.0,1.0 +2012,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,13.3,12.7,96,100400,0,0,362,0,0,0,0,0,0,0,250,4.3,10,10,3.2,335,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,12.3,93,100400,0,0,362,0,0,0,0,0,0,0,240,5.7,10,10,3.2,335,9,999999999,220,0.0000,0,88,999.000,38.0,1.0 +2012,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,14.0,13.0,94,100400,0,42,366,0,0,0,0,0,0,0,230,4.6,10,10,3.2,152,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.8,93,100500,136,1409,365,49,141,35,5330,0,3845,151,220,5.2,10,10,2.8,152,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,13.0,94,100500,378,1409,356,181,285,105,20007,13048,11607,498,230,6.2,9,9,11.3,469,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,100500,583,1409,357,333,438,152,37420,27733,17126,774,240,8.2,8,8,14.0,7442,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.6,85,100500,730,1409,353,433,465,191,49146,33253,21853,1022,260,11.2,8,8,13.1,6096,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,10.9,73,100400,810,1409,342,588,798,130,69902,49928,15477,708,270,13.9,5,5,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,9.2,64,100400,816,1409,342,614,864,114,73821,52866,13701,621,260,13.6,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,7.7,58,100400,748,1409,339,590,958,81,72004,54036,9905,434,270,11.5,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.7,56,100400,612,1409,336,468,913,71,56303,47596,8612,367,270,12.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.7,56,100400,416,1409,336,278,706,70,32121,29274,8080,336,280,9.8,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.7,56,100400,176,1409,343,85,336,43,9396,0,4764,188,280,9.0,7,7,16.0,4572,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.6,55,100400,4,232,356,0,0,0,0,0,0,0,280,7.8,9,9,16.1,4572,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,4.9,49,100500,0,0,354,0,0,0,0,0,0,0,300,5.2,9,9,16.1,4572,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,-0.5,34,100500,0,0,340,0,0,0,0,0,0,0,330,5.8,8,8,16.1,4572,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,0.1,37,100600,0,0,326,0,0,0,0,0,0,0,330,6.3,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,1.3,42,100600,0,0,324,0,0,0,0,0,0,0,320,3.5,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.7,67,100600,0,0,321,0,0,0,0,0,0,0,360,2.6,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,99.0,1.0 +2012,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,12.8,6.7,67,100700,0,0,319,0,0,0,0,0,0,0,360,2.7,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,6.5,67,100700,0,0,317,0,0,0,0,0,0,0,20,2.7,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,5.0,69,100800,0,0,307,0,0,0,0,0,0,0,80,0.2,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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.3,5.1,75,100800,0,0,306,0,0,0,0,0,0,0,80,1.6,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,5.6,80,100800,0,0,305,0,0,0,0,0,0,0,50,2.1,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,5.6,74,100800,0,0,328,0,0,0,0,0,0,0,40,1.6,9,9,16.1,6096,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,6.0,76,100900,0,0,338,0,0,0,0,0,0,0,60,3.1,10,10,16.1,366,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,5.7,71,100900,0,50,341,0,0,0,0,0,0,0,50,3.5,10,10,16.1,373,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,6.8,74,100900,138,1409,345,49,138,35,5391,0,3916,153,90,2.8,10,10,16.1,419,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,7.0,72,101000,381,1409,349,170,224,109,18721,11375,12093,519,80,3.1,10,10,16.1,3658,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.3,69,101100,586,1409,360,292,283,175,32583,20245,19558,891,110,4.6,10,10,16.0,3341,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,9.0,72,101000,734,1409,351,409,382,210,46205,29278,23841,1122,150,2.1,9,9,16.1,851,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.8,67,100900,814,1409,356,471,421,228,53651,33002,26053,1243,100,2.6,9,9,16.1,1417,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,8.4,64,100800,820,1409,356,484,446,224,55230,34731,25697,1225,130,0.4,9,9,16.1,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,9.0,63,100900,753,1409,353,521,712,140,60993,46475,16483,753,230,3.7,8,8,16.1,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,9.3,69,100900,617,1409,336,461,871,80,55046,45850,9553,412,250,4.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.9,70,100900,421,1409,333,275,667,76,31551,28294,8723,365,240,3.6,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,8.9,71,100900,181,1409,332,91,378,43,10090,0,4728,187,260,3.3,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,8.9,72,100800,5,253,331,0,0,0,0,0,0,0,260,3.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.0,76,100800,0,0,328,0,0,0,0,0,0,0,250,3.0,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.4,80,100800,0,0,326,0,0,0,0,0,0,0,260,2.5,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.4,80,100900,0,0,326,0,0,0,0,0,0,0,280,1.3,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.4,79,100900,0,0,327,0,0,0,0,0,0,0,280,0.2,5,5,15.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.4,78,100900,0,0,348,0,0,0,0,0,0,0,130,1.5,9,9,14.7,2644,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.4,79,100800,0,0,346,0,0,0,0,0,0,0,130,1.3,9,9,16.1,2976,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,9.4,78,100800,0,0,347,0,0,0,0,0,0,0,120,0.3,9,9,16.1,2438,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.4,86,100700,0,0,350,0,0,0,0,0,0,0,120,2.5,10,10,16.1,2420,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.4,86,100700,0,0,350,0,0,0,0,0,0,0,80,1.9,10,10,16.1,2321,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.4,86,100600,0,0,350,0,0,0,0,0,0,0,140,0.0,10,10,16.0,2484,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.4,86,100600,0,0,350,0,0,0,0,0,0,0,140,1.6,10,10,12.5,1604,9,999999999,179,0.0000,0,88,999.000,2.0,1.0 +2012,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,12.0,9.0,82,100500,0,0,351,0,0,0,0,0,0,0,80,2.6,10,10,8.1,886,9,999999999,170,0.0000,0,88,999.000,16.0,1.0 +2012,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,11.1,8.9,86,100500,0,57,347,0,0,0,0,0,0,0,90,3.5,10,10,4.4,800,9,999999999,170,0.0000,0,88,999.000,1.0,1.0 +2012,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,10.7,9.6,93,100600,140,1408,345,43,90,35,4796,0,3820,149,90,1.7,10,10,2.7,457,9,999999999,179,0.0000,0,88,999.000,10.0,1.0 +2012,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,11.1,10.0,93,100500,384,1408,348,150,144,111,16526,7174,12265,528,130,3.9,10,10,2.9,829,9,999999999,189,0.0000,0,88,999.000,41.0,1.0 +2012,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,11.1,10.0,93,100500,590,1408,348,260,182,183,28827,13201,20459,937,100,6.2,10,10,2.4,284,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,10.0,95,100400,738,1408,346,344,203,238,38499,16379,26726,1271,90,6.0,10,10,2.4,254,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,10.6,96,100300,818,1408,339,435,316,251,49133,25507,28546,1375,80,4.9,9,9,5.8,627,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,10.8,94,100100,825,1408,343,500,485,216,57193,36455,24798,1181,90,6.8,9,9,12.9,1201,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.9,82,100100,758,1408,347,500,629,161,57899,42838,18785,869,100,3.4,9,9,16.1,801,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.6,79,100100,622,1408,358,377,515,150,42830,34016,17088,773,100,4.6,10,10,15.6,755,9,999999999,179,0.0000,0,88,999.000,79.0,1.0 +2012,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,12.8,10.0,83,100100,425,1408,327,296,770,63,34472,29754,7396,306,30,3.6,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.7,81,100100,185,1408,327,101,467,40,11273,0,4434,174,30,2.5,5,5,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.4,80,100100,6,274,326,0,0,0,0,0,0,0,30,1.6,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,9.3,80,100200,0,0,338,0,0,0,0,0,0,0,260,2.1,8,8,16.1,1036,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.0,81,100300,0,0,318,0,0,0,0,0,0,0,260,1.9,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,9.5,83,100300,0,0,319,0,0,0,0,0,0,0,260,0.2,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.0,84,100400,0,0,324,0,0,0,0,0,0,0,350,2.1,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.9,86,100400,0,0,319,0,0,0,0,0,0,0,350,2.1,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,8.8,85,100400,0,0,319,0,0,0,0,0,0,0,310,2.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,8.0,78,100500,0,0,318,0,0,0,0,0,0,0,290,2.5,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,5.5,61,100600,0,0,305,0,0,0,0,0,0,0,320,1.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,5.6,64,100600,0,0,302,0,0,0,0,0,0,0,70,3.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,7.2,86,100600,0,0,304,0,0,0,0,0,0,0,120,1.5,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,6.6,90,100700,0,0,298,0,0,0,0,0,0,0,100,1.3,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.0,6.2,88,100700,0,0,297,0,0,0,0,0,0,0,80,0.3,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.8,83,100800,0,66,327,0,0,0,0,0,0,0,80,2.5,9,9,16.1,7500,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,7.2,80,100900,142,1408,333,61,240,36,6680,0,4019,157,150,1.6,9,9,16.1,7500,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.9,7.3,79,100900,387,1408,334,198,346,103,21975,16978,11464,490,120,2.3,9,9,16.1,7514,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,8.3,72,101000,593,1408,340,355,499,144,40228,32721,16441,739,120,3.6,8,8,16.0,7620,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,8.3,61,101000,742,1408,360,448,491,189,51141,36154,21705,1013,80,1.3,9,9,16.1,7620,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,7.8,50,101000,822,1408,372,546,634,176,63625,45095,20588,964,200,0.2,9,9,16.1,7299,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,4.5,39,100900,830,1408,362,597,777,139,70948,52189,16589,762,200,1.7,8,8,16.1,4877,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,5.7,42,100900,763,1408,350,611,989,75,75259,56065,9300,406,230,3.8,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,6.3,46,100900,627,1408,348,460,834,89,54596,46811,10550,458,220,5.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,7.8,54,100900,430,1408,358,223,351,116,24807,19231,12932,560,240,4.6,8,8,16.0,6096,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,7.2,51,100900,190,1408,359,75,186,50,8288,1126,5556,222,240,2.2,8,8,16.0,6096,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,7.0,50,100900,6,294,366,1,93,1,133,0,77,2,90,0.2,9,9,16.1,6096,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,9.3,66,101000,0,0,360,0,0,0,0,0,0,0,90,1.7,9,9,16.1,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,8.2,58,101000,0,0,355,0,0,0,0,0,0,0,90,3.4,8,8,16.1,6096,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,7.5,61,101100,0,0,335,0,0,0,0,0,0,0,70,1.5,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,5.7,52,101100,0,0,336,0,0,0,0,0,0,0,330,1.3,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,6.1,52,101100,0,0,350,0,0,0,0,0,0,0,330,0.0,8,8,16.1,6096,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,5.9,56,101100,0,0,330,0,0,0,0,0,0,0,70,0.2,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,4.6,50,101100,0,0,329,0,0,0,0,0,0,0,70,1.9,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,6.0,69,101100,0,0,312,0,0,0,0,0,0,0,70,0.0,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,5.5,70,101100,0,0,308,0,0,0,0,0,0,0,120,0.2,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,5.0,66,101000,0,0,309,0,0,0,0,0,0,0,120,2.1,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,4.3,65,101100,0,0,307,0,0,0,0,0,0,0,20,1.3,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,3.8,61,101000,0,0,308,0,0,0,0,0,0,0,120,0.2,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,3.4,58,101100,0,75,314,0,0,0,0,0,0,0,120,1.9,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,3.8,52,101100,145,1408,324,82,524,28,9235,0,3168,121,80,0.2,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,3.3,42,101100,390,1408,337,270,768,57,31496,28417,6685,273,80,1.3,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,3.3,35,101100,597,1408,350,458,923,67,55345,48236,8133,344,80,0.0,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.5,1.2,23,101100,746,1408,362,655,1168,37,84962,60632,4741,196,230,0.2,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.7,2.5,24,101000,827,1408,366,728,1170,41,94763,62833,5349,225,230,1.9,2,2,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,5.1,32,100800,834,1408,348,751,1211,33,99179,62593,4407,183,260,4.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,5.8,35,100800,768,1408,359,568,835,113,67929,52250,13503,607,230,3.8,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,4.4,31,100800,632,1408,359,472,866,83,56394,48534,9957,430,230,4.9,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,8.3,41,100700,435,1408,349,370,1127,21,46927,32428,2676,102,240,3.6,0,0,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,8.6,43,100700,194,1408,347,142,902,18,16999,0,2098,77,240,1.7,0,0,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,9.0,47,100700,7,315,344,1,150,0,141,0,31,1,130,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,9.4,54,100800,0,0,335,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,9.3,53,100800,0,0,336,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,8.3,49,100800,0,0,335,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,8.1,52,100800,0,0,330,0,0,0,0,0,0,0,100,1.9,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,6.7,45,100800,0,0,333,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,6.6,51,100800,0,0,323,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,6.2,50,100800,0,0,322,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,6.6,62,100800,0,0,323,0,0,0,0,0,0,0,120,1.3,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,6.2,61,100700,0,0,322,0,0,0,0,0,0,0,100,0.4,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,6.7,74,100700,0,0,311,0,0,0,0,0,0,0,100,3.1,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,6.0,66,100700,0,0,320,0,0,0,0,0,0,0,40,1.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,5.6,64,100700,0,0,320,0,0,0,0,0,0,0,130,1.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,5.6,63,100700,1,84,321,0,0,0,0,0,0,0,90,2.3,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.3,5.5,52,100800,147,1408,334,84,529,28,9435,0,3206,123,90,0.0,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,5.2,44,100800,393,1408,341,280,819,52,32989,28563,6089,247,300,0.2,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,7.0,40,100800,600,1408,357,499,1073,42,62425,49104,5252,215,300,1.5,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,9.3,52,100800,750,1408,358,544,800,118,64544,49240,14041,633,260,4.5,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,8.2,46,100700,831,1408,357,605,798,134,72060,51617,15975,733,260,3.8,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,7.5,43,100500,839,1408,356,623,837,124,74783,53330,14987,685,270,5.7,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,9.5,49,100500,773,1408,358,625,1007,72,77238,54845,8967,391,270,5.6,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,10.5,56,100400,637,1408,354,491,924,73,59173,47259,8775,377,260,5.1,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,10.0,51,100400,440,1408,359,309,780,65,36039,31332,7567,314,280,5.1,3,3,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,10.3,55,100400,199,1408,357,108,454,44,12012,869,4869,193,270,4.8,4,4,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,10.7,59,100400,8,337,356,1,102,0,136,0,54,2,270,4.6,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.2,64,100400,0,0,351,0,0,0,0,0,0,0,260,4.4,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.6,67,100400,0,0,347,0,0,0,0,0,0,0,250,2.3,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,10.2,60,100400,0,0,346,0,0,0,0,0,0,0,250,0.0,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,7.7,48,100400,0,0,345,0,0,0,0,0,0,0,100,0.3,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,11.1,76,100400,0,0,321,0,0,0,0,0,0,0,100,2.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.2,84,100400,0,0,328,0,0,0,0,0,0,0,80,3.1,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,11.6,87,100400,0,0,331,0,0,0,0,0,0,0,90,3.1,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.5,86,100400,0,0,323,0,0,0,0,0,0,0,90,3.1,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.9,82,100300,0,0,322,0,0,0,0,0,0,0,60,2.7,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.4,77,100300,0,0,324,0,0,0,0,0,0,0,60,0.0,3,3,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.4,79,100300,0,0,322,0,0,0,0,0,0,0,230,0.0,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,9.4,77,100400,0,0,329,0,0,0,0,0,0,0,230,0.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.5,75,100400,1,94,351,0,0,0,0,0,0,0,230,1.9,9,9,16.1,4572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,10.7,80,100500,150,1407,354,59,185,39,6438,0,4295,169,230,0.0,9,9,16.1,4572,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,11.6,77,100500,396,1407,363,193,297,110,21381,14641,12177,525,230,0.0,9,9,16.1,4572,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,11.1,72,100600,604,1407,356,333,388,166,37325,26492,18741,854,270,0.0,8,8,16.0,4572,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,11.0,63,100600,754,1407,374,429,407,211,48626,30697,24053,1136,270,0.0,9,9,16.1,4927,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,10.5,52,100500,836,1407,379,542,591,191,62787,42349,22192,1048,270,0.4,8,8,16.1,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,9.9,49,100400,844,1407,367,687,1017,78,85431,56691,9672,428,270,3.5,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,9.3,43,100400,778,1407,370,662,1107,51,84056,56782,6462,275,270,2.6,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.1,8.1,36,100300,642,1407,374,541,1095,42,68148,51321,5260,217,270,2.8,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,6.7,37,100400,445,1407,363,317,807,62,37271,33502,7268,300,270,4.1,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,4.6,30,100400,204,1407,356,124,611,36,14140,745,4082,159,290,4.1,1,1,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,2.1,24,100400,9,358,350,2,297,0,336,0,2,0,290,4.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,-2.9,18,100500,0,0,338,0,0,0,0,0,0,0,350,3.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,-3.4,18,100500,0,0,332,0,0,0,0,0,0,0,360,3.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,0.2,28,100600,0,0,327,0,0,0,0,0,0,0,80,1.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,1.2,30,100600,0,0,327,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,-2.1,22,100700,0,0,328,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,-1.8,26,100700,0,0,319,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,-3.0,24,100700,0,0,315,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,-4.5,24,100700,0,0,305,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,-5.1,24,100800,0,0,302,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,-1.1,41,100800,0,0,293,0,0,0,0,0,0,0,100,0.0,0,0,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,-0.5,50,100800,0,0,284,0,0,0,0,0,0,0,100,1.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,-0.8,46,100900,0,0,288,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,-6.7,22,100900,1,105,310,0,0,0,0,0,0,0,150,1.3,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,-3.5,31,101000,153,1407,309,94,641,25,10802,0,2826,107,140,0.2,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,-5.7,21,101100,400,1407,321,297,889,44,35517,32548,5319,213,140,1.6,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,-11.1,11,101100,608,1407,330,461,896,74,55529,51362,8912,379,150,2.6,3,3,16.0,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,-14.3,7,101100,758,1407,333,661,1152,40,85492,64322,5227,217,230,2.2,2,2,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,-13.6,7,101000,841,1407,328,756,1209,34,100179,68014,4488,186,250,2.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,-15.4,6,101000,849,1407,325,764,1210,34,101350,68484,4508,187,240,3.0,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,-13.3,7,100900,783,1407,342,608,926,92,74277,59501,11329,501,250,2.8,3,3,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,-7.7,12,100900,647,1407,346,479,848,89,57271,51574,10701,465,210,3.9,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,1.1,27,100900,450,1407,350,283,599,91,32352,31105,10474,445,250,2.1,3,3,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,2.9,33,100900,209,1407,348,96,282,54,10548,3613,5955,239,260,2.4,4,4,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,4.3,39,100900,11,380,344,2,233,0,283,0,34,1,260,2.3,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,2.3,33,100900,0,0,342,0,0,0,0,0,0,0,330,0.4,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,-6.9,15,101000,0,0,338,0,0,0,0,0,0,0,330,3.3,4,4,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,-17.2,6,101000,0,0,322,0,0,0,0,0,0,0,350,4.5,3,3,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,-19.1,6,101000,0,0,318,0,0,0,0,0,0,0,350,3.9,3,3,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,-7.1,18,101100,0,0,317,0,0,0,0,0,0,0,130,2.5,2,2,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,-2.4,28,101100,0,0,310,0,0,0,0,0,0,0,30,1.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,-4.3,24,101000,0,0,306,0,0,0,0,0,0,0,30,2.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,-7.2,23,101000,0,0,290,0,0,0,0,0,0,0,80,1.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,-7.5,24,101000,0,0,286,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,-9.4,19,101000,0,0,288,0,0,0,0,0,0,0,120,0.0,0,0,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,-9.7,20,101000,0,0,284,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,-11.7,16,101000,0,0,284,0,0,0,0,0,0,0,50,2.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,-12.0,15,101100,1,117,304,0,0,0,0,0,0,0,50,3.2,5,5,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,-13.6,11,101100,156,1407,316,92,573,28,10423,0,3211,122,20,4.0,5,5,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,-12.1,11,101100,403,1407,327,281,777,59,33001,32777,6878,280,60,3.2,5,5,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,-15.0,7,101100,612,1407,347,401,635,124,46415,43088,14466,641,40,3.6,8,8,16.0,7620,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.5,-13.6,7,101100,763,1407,369,470,516,190,54101,40974,21971,1023,50,2.2,9,9,16.1,7620,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,-16.2,5,101000,845,1407,373,524,518,213,60716,42543,24787,1174,90,2.6,9,9,16.1,7620,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,-16.8,5,100800,854,1407,375,540,547,208,62702,44452,24253,1147,90,2.5,9,9,16.1,7620,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.8,-12.7,7,100800,788,1407,376,466,454,212,53446,37400,24411,1150,270,3.1,9,9,16.1,7620,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,-0.3,25,100700,652,1407,372,304,215,205,34059,17307,23031,1068,270,5.1,9,9,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,-2.2,22,100700,455,1407,359,183,147,136,20328,9545,15100,662,270,5.1,8,8,16.0,7620,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,-1.0,25,100700,213,1407,358,62,64,52,6848,880,5795,232,260,4.6,8,8,16.0,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,-0.1,28,100700,12,402,364,3,32,3,360,0,327,11,260,4.0,9,9,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,-1.0,28,100700,0,0,350,0,0,0,0,0,0,0,260,3.6,8,8,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,0.2,31,100700,0,0,335,0,0,0,0,0,0,0,260,3.4,4,4,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.2,54,100700,0,0,327,0,0,0,0,0,0,0,270,1.3,2,2,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.6,55,100600,0,0,317,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,6.0,53,100600,0,0,316,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,4.5,52,100600,0,0,310,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,0.5,39,100600,0,0,305,0,0,0,0,0,0,0,110,1.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,-3.9,30,100500,0,0,294,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,0.0,53,100400,0,0,284,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,0.0,56,100400,0,0,280,0,0,0,0,0,0,0,90,1.5,0,0,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,-2.8,39,100400,0,0,286,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,-2.9,41,100400,0,0,282,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,-3.8,35,100400,1,130,303,0,0,0,0,0,0,0,90,2.9,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.5,-2.5,37,100400,159,1406,308,81,402,36,9077,0,4031,157,90,1.6,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,-1.0,34,100500,407,1406,323,277,733,64,32186,30901,7519,310,100,2.1,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,-3.9,24,100500,616,1406,329,442,793,94,52292,47889,11206,487,110,2.1,5,5,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,-1.4,27,100500,767,1406,338,580,874,103,69955,55526,12444,555,140,2.2,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,5.5,41,100400,850,1406,352,626,819,131,75038,53709,15731,722,120,2.8,5,5,15.9,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,9.0,57,100400,859,1406,370,497,415,244,56727,33030,27951,1347,260,4.5,9,9,14.7,7620,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,9.5,61,100300,793,1406,367,450,397,226,51112,31008,25800,1229,270,4.1,9,9,16.1,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,10.7,68,100300,657,1406,366,346,328,193,38804,24110,21751,1009,290,4.0,9,9,16.1,7442,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.1,75,100400,461,1406,354,231,311,129,25632,17948,14393,632,260,3.6,8,8,16.0,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100300,218,1406,351,83,159,59,9149,2063,6461,262,240,3.3,8,8,16.0,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.2,82,100300,13,424,348,3,80,2,364,0,273,9,240,2.9,8,8,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.6,86,100400,0,0,334,0,0,0,0,0,0,0,250,1.6,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,11.1,84,100400,0,0,353,0,0,0,0,0,0,0,230,2.1,9,9,16.1,5918,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.1,87,100400,0,0,350,0,0,0,0,0,0,0,260,1.9,9,9,16.1,4572,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.1,87,100400,0,0,350,0,0,0,0,0,0,0,260,0.0,9,9,15.9,4572,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.0,87,100400,0,0,350,0,0,0,0,0,0,0,110,0.2,9,9,14.3,4572,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,10.8,92,100400,0,0,344,0,0,0,0,0,0,0,110,2.0,9,9,11.5,2814,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.6,11.0,90,100400,0,0,347,0,0,0,0,0,0,0,90,2.0,9,9,9.7,244,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,9.9,92,100500,0,0,319,0,0,0,0,0,0,0,40,1.6,5,5,9.5,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,9.3,89,100400,0,0,321,0,0,0,0,0,0,0,50,2.6,6,6,8.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,8.9,89,100400,0,0,328,0,0,0,0,0,0,0,90,2.6,8,8,9.0,427,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,8.9,92,100500,0,0,332,0,0,0,0,0,0,0,70,2.0,9,9,9.7,427,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,8.8,88,100500,0,0,328,0,0,0,0,0,0,0,80,1.5,8,8,9.7,427,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.8,8.4,85,100600,2,143,316,0,0,0,0,0,0,0,80,2.1,5,5,9.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,8.9,82,100700,162,1406,340,65,198,42,7157,0,4666,185,40,1.6,9,9,11.3,1119,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.4,79,100700,411,1406,346,200,289,115,22087,15299,12789,553,110,1.6,9,9,11.5,3459,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.4,74,100700,620,1406,344,355,431,164,40009,29781,18617,848,110,1.9,8,8,12.0,4267,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,8.7,65,100700,772,1406,337,539,725,141,63332,47537,16579,759,160,0.4,5,5,14.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,7.5,55,100700,855,1406,342,620,790,140,73969,52058,16751,773,160,3.5,5,5,15.9,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,9.3,65,100600,864,1406,361,520,469,231,59603,36411,26689,1282,240,2.9,9,9,14.7,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.9,67,100600,798,1406,356,468,441,218,53413,33994,24975,1187,260,5.2,9,9,16.1,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,9.0,68,100700,662,1406,356,364,375,187,40983,27574,21180,980,260,6.1,9,9,16.1,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,9.4,72,100700,466,1406,346,240,335,129,26647,19684,14359,630,270,5.7,8,8,16.0,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,9.7,75,100700,223,1406,336,109,333,56,11997,4318,6177,249,270,6.8,6,6,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,9.9,77,100700,15,446,332,4,167,2,487,0,275,9,270,7.0,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,9.3,76,100700,0,0,327,0,0,0,0,0,0,0,350,1.6,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,8.8,72,100800,0,0,312,0,0,0,0,0,0,0,130,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,8.3,72,100800,0,0,309,0,0,0,0,0,0,0,100,1.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.4,78,100800,0,0,305,0,0,0,0,0,0,0,100,2.2,0,0,15.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100900,0,0,305,0,0,0,0,0,0,0,80,2.5,0,0,14.5,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.8,79,100900,0,0,311,0,0,0,0,0,0,0,60,2.2,1,1,14.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.2,74,100900,0,0,344,0,0,0,0,0,0,0,250,2.6,9,9,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,8.1,78,100900,0,0,339,0,0,0,0,0,0,0,250,2.6,9,9,16.1,7620,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.9,86,100900,0,0,343,0,0,0,0,0,0,0,260,2.3,9,9,16.1,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,9.4,89,100800,0,0,331,0,0,0,0,0,0,0,90,0.0,8,8,16.0,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,7.8,82,100800,0,0,334,0,0,0,0,0,0,0,90,2.2,9,9,16.1,7224,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.8,8.4,85,100800,0,0,335,0,0,0,0,0,0,0,150,2.7,9,9,14.8,3986,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,9.6,89,101000,2,156,339,0,0,0,0,0,0,0,100,0.0,9,9,6.4,295,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,9.0,86,100900,165,1406,319,102,635,27,11621,0,3102,118,100,3.0,5,5,8.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,9.5,79,101000,415,1406,327,295,805,57,34534,29265,6689,274,100,2.0,5,5,8.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.0,75,101000,625,1406,334,470,878,80,56170,46054,9537,412,120,1.5,5,5,8.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,10.1,67,101000,777,1406,340,640,1039,65,79672,55167,8144,353,250,2.7,4,4,8.6,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,10.6,66,100900,860,1406,342,751,1151,47,97074,58878,6049,259,250,3.8,3,3,13.3,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.7,73,100800,869,1406,336,755,1139,50,97152,58836,6467,278,270,5.6,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.9,74,100700,804,1406,333,689,1118,50,87853,56695,6427,275,270,5.2,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,9.5,68,100700,668,1406,320,601,1214,24,78966,53281,3191,127,250,5.8,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.0,72,100600,471,1406,332,383,1044,34,47399,35945,4151,165,250,6.7,3,3,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.3,76,100600,228,1406,332,161,834,26,18922,0,3022,115,270,6.4,4,4,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.6,81,100600,16,467,330,4,325,0,565,0,38,1,270,6.0,4,4,15.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.6,84,100700,0,0,325,0,0,0,0,0,0,0,260,3.8,3,3,14.5,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.6,84,100700,0,0,325,0,0,0,0,0,0,0,170,1.8,3,3,14.7,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.7,84,100600,0,0,328,0,0,0,0,0,0,0,260,4.2,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.1,87,100600,0,0,325,0,0,0,0,0,0,0,260,4.5,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,11.0,89,100700,0,0,323,0,0,0,0,0,0,0,110,0.2,3,3,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.9,86,100700,0,0,319,0,0,0,0,0,0,0,110,2.2,3,3,14.3,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.5,9.3,86,100700,0,0,316,0,0,0,0,0,0,0,90,2.6,3,3,10.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,9.6,93,100600,0,0,320,0,0,0,0,0,0,0,90,2.6,6,6,4.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,9.9,93,100600,0,0,331,0,0,0,0,0,0,0,110,3.0,8,8,4.1,152,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,8.9,89,100500,0,0,316,0,0,0,0,0,0,0,60,2.1,5,5,4.8,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,8.8,92,100500,0,0,313,0,0,0,0,0,0,0,90,2.1,5,5,4.8,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,8.4,89,100500,0,0,313,0,0,0,0,0,0,0,120,2.0,5,5,4.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,8.4,89,100500,2,171,313,0,0,0,0,0,0,0,60,2.7,5,5,4.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,9.0,88,100500,169,1405,313,112,747,22,13002,0,2580,97,90,0.0,3,3,4.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,9.5,83,100500,419,1405,320,318,923,43,38163,30174,5138,206,110,2.0,3,3,5.2,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.0,77,100500,629,1405,327,514,1034,51,63584,48738,6328,265,110,1.5,3,3,8.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,9.0,62,100400,782,1405,337,658,1083,56,83061,56705,7058,303,250,0.4,3,3,8.2,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,9.5,63,100300,865,1405,339,756,1151,47,97745,59721,6077,260,250,3.3,3,3,9.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,10.1,68,100200,875,1405,337,772,1171,43,100545,59841,5622,239,270,5.0,3,3,10.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.6,72,100200,809,1405,338,659,1016,74,81728,55343,9164,402,260,4.6,4,4,12.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.6,73,100100,673,1405,335,555,1049,53,69042,50881,6558,276,260,4.7,3,3,13.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.6,75,100100,476,1405,333,380,1009,39,46598,36071,4726,190,260,5.1,3,3,14.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,10.3,75,100100,233,1405,331,169,878,23,20041,0,2765,104,270,5.1,3,3,15.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,10.1,76,100100,18,489,329,5,389,0,756,0,14,0,270,4.7,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.7,82,100200,0,0,324,0,0,0,0,0,0,0,280,2.2,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,11.1,86,100200,0,0,312,0,0,0,0,0,0,0,270,2.5,0,0,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,11.0,83,100200,0,0,314,0,0,0,0,0,0,0,150,1.3,0,0,14.3,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.9,82,100300,0,0,309,0,0,0,0,0,0,0,150,0.2,0,0,12.9,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.3,77,100300,0,0,310,0,0,0,0,0,0,0,20,2.0,0,0,12.9,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.6,8.8,78,100300,0,0,307,0,0,0,0,0,0,0,20,1.6,0,0,13.3,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,7.8,80,100300,0,0,299,0,0,0,0,0,0,0,140,1.9,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,7.8,80,100300,0,0,299,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,7.7,80,100300,0,0,312,0,0,0,0,0,0,0,60,0.2,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,6.7,77,100300,0,0,309,0,0,0,0,0,0,0,60,1.5,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.0,5.5,79,100300,0,0,305,0,0,0,0,0,0,0,80,1.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,4.1,66,100300,0,0,309,0,0,0,0,0,0,0,60,1.5,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,1.3,49,100400,3,186,314,0,0,0,0,0,0,0,10,1.5,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,-1.7,35,100500,172,1405,318,116,767,22,13549,0,2548,95,320,1.3,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,-1.8,30,100500,423,1405,327,319,910,45,38336,34761,5410,217,320,0.0,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,-2.2,26,100500,634,1405,333,491,930,71,59528,52033,8598,367,130,0.0,5,5,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,-2.3,24,100500,786,1405,339,603,899,99,73192,57015,12109,540,130,0.3,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,-3.8,20,100500,870,1405,342,688,955,96,84895,60891,11931,535,130,2.3,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,-7.5,14,100400,880,1405,343,731,1051,72,92248,64319,9120,401,130,0.3,5,5,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,-9.3,11,100300,814,1405,345,716,1163,41,93151,65614,5383,226,260,2.3,4,4,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,-7.8,12,100300,678,1405,345,591,1152,35,76250,59783,4459,182,260,0.5,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,0.6,30,100300,481,1405,339,362,899,54,43465,40066,6541,268,260,4.6,3,3,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,1.8,34,100300,238,1405,337,148,630,41,16874,7256,4719,185,260,4.1,3,3,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,3.1,40,100300,19,511,334,6,435,0,1027,0,1,0,260,3.4,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,4.8,49,100300,0,0,329,0,0,0,0,0,0,0,260,1.5,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,3.0,43,100400,0,0,327,0,0,0,0,0,0,0,360,1.5,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,0.9,36,100400,0,0,327,0,0,0,0,0,0,0,360,1.3,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,-0.6,32,100400,0,0,325,0,0,0,0,0,0,0,360,0.2,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,-0.9,32,100400,0,0,324,0,0,0,0,0,0,0,30,1.6,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,-3.1,28,100500,0,0,317,0,0,0,0,0,0,0,30,2.6,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.7,-5.2,26,100500,0,0,309,0,0,0,0,0,0,0,30,2.5,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,-6.8,25,100500,0,0,301,0,0,0,0,0,0,0,60,2.1,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,-7.2,24,100500,0,0,301,0,0,0,0,0,0,0,20,2.1,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,-7.2,24,100500,0,0,301,0,0,0,0,0,0,0,20,2.1,3,3,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,-7.7,24,100500,0,0,298,0,0,0,0,0,0,0,40,2.9,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,-6.7,28,100500,0,0,294,0,0,0,0,0,0,0,50,1.7,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,-6.8,27,100500,3,201,301,0,0,0,0,0,0,0,50,3.2,5,5,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,-7.4,21,100600,176,1404,314,110,648,28,12592,0,3271,125,30,3.5,5,5,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,-8.9,16,100600,428,1404,323,328,939,42,39687,36779,5056,202,20,3.3,5,5,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,-8.9,15,100600,639,1404,328,518,1019,55,64210,55431,6776,284,40,4.6,5,5,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,-8.3,13,100600,791,1404,334,663,1071,59,83804,62744,7482,321,40,2.7,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,-8.2,13,100500,876,1404,339,739,1083,64,94074,65087,8111,353,110,0.2,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,-7.5,13,100400,885,1404,342,785,1180,41,103237,67336,5448,230,110,2.5,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,-5.7,15,100400,820,1404,350,660,993,80,81944,61164,9981,439,230,5.0,5,5,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,-6.2,15,100400,684,1404,346,522,901,84,63179,54388,10146,441,240,4.1,5,5,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,-6.7,15,100400,486,1404,353,290,514,112,32966,31273,12802,555,260,4.1,8,8,16.0,8480,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,-5.2,18,100400,242,1404,351,121,356,60,13504,8285,6688,270,280,4.4,8,8,16.0,8023,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,-3.8,22,100400,21,533,348,7,178,4,822,0,509,18,280,4.4,8,8,16.1,7620,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,-2.1,27,100400,0,0,330,0,0,0,0,0,0,0,260,3.1,4,4,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,3.2,44,100500,0,0,324,0,0,0,0,0,0,0,260,3.1,2,2,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,2.3,43,100500,0,0,310,0,0,0,0,0,0,0,270,2.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,2.6,44,100500,0,0,323,0,0,0,0,0,0,0,240,1.6,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,1.0,42,100500,0,0,317,0,0,0,0,0,0,0,130,2.3,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,0.4,40,100500,0,0,314,0,0,0,0,0,0,0,130,0.0,2,2,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,-1.0,36,100500,0,0,302,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,-0.8,43,100500,0,0,291,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,-2.2,37,100500,0,0,293,0,0,0,0,0,0,0,70,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,-2.2,39,100400,0,0,289,0,0,0,0,0,0,0,70,1.5,0,0,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,-3.2,36,100500,0,0,288,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,-2.9,38,100500,0,0,287,0,0,0,0,0,0,0,70,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,-3.4,35,100500,4,218,301,0,0,0,0,0,0,0,70,1.9,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,-3.8,28,100600,180,1404,312,121,764,23,14143,0,2690,101,90,0.3,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,-3.1,27,100600,432,1404,320,339,978,38,41341,36474,4584,182,90,2.5,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,-5.0,19,100600,643,1404,333,558,1144,33,71676,57101,4292,174,50,1.5,3,3,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,-5.9,15,100600,797,1404,328,717,1209,31,94862,65288,4141,170,60,1.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,-7.7,12,100500,881,1404,347,793,1207,35,105315,67892,4705,197,60,2.7,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,-6.7,13,100400,891,1404,348,782,1161,46,102144,66868,6034,257,270,0.7,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,-5.0,15,100400,825,1404,347,688,1060,65,86827,62797,8182,355,270,4.6,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,0.1,25,100300,689,1404,355,508,835,99,60726,51409,11809,520,260,4.7,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,5.0,42,100300,492,1404,360,270,402,129,30253,24857,14510,638,260,5.7,8,8,16.0,7673,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,3.2,37,100300,247,1404,358,118,307,64,13033,7182,7084,288,260,4.6,8,8,16.0,8130,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,2.5,36,100300,23,555,363,8,153,6,923,0,636,23,260,3.5,9,9,16.1,8534,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,8.1,60,100300,0,0,352,0,0,0,0,0,0,0,270,3.2,8,8,16.1,8534,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,7.2,58,100300,0,0,336,0,0,0,0,0,0,0,250,3.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.5,75,100400,0,0,357,0,0,0,0,0,0,0,250,3.0,9,9,16.1,4572,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,9.1,70,100400,0,0,354,0,0,0,0,0,0,0,260,2.5,9,9,16.1,4572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.6,57,100400,0,0,353,0,0,0,0,0,0,0,240,1.3,9,9,16.1,4749,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,6.2,56,100400,0,0,339,0,0,0,0,0,0,0,240,0.0,7,7,16.1,6096,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,7.1,65,100400,0,0,309,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,6.4,75,100400,0,0,313,0,0,0,0,0,0,0,90,0.2,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,4.2,65,100400,0,0,311,0,0,0,0,0,0,0,90,2.1,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,2.8,61,100300,0,0,307,0,0,0,0,0,0,0,90,2.1,5,5,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,0.9,53,100300,0,0,306,0,0,0,0,0,0,0,80,2.3,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,-0.9,41,100300,0,0,330,0,0,0,0,0,0,0,50,3.4,9,9,16.1,6096,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,-3.4,29,100400,4,235,336,0,0,0,0,0,0,0,40,2.0,9,9,16.1,5953,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,-4.0,26,100500,184,1404,341,96,412,42,10702,1537,4689,184,40,1.7,9,9,16.1,4877,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,-4.4,23,100500,437,1404,346,254,486,102,28661,27070,11624,497,40,3.5,9,9,16.1,4877,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-4.4,21,100500,648,1404,348,420,612,138,48583,42356,15979,718,60,3.1,8,8,16.0,4877,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,-4.4,20,100500,802,1404,359,482,476,211,55432,38377,24322,1148,40,3.4,9,9,16.1,4877,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,-3.2,21,100400,886,1404,364,559,538,219,64875,43169,25570,1220,120,1.7,9,9,16.1,4877,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,5.5,44,100300,896,1404,367,550,493,234,63416,39153,27200,1309,270,3.5,9,9,16.1,4877,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,4.7,38,100300,831,1404,372,526,552,200,60903,41905,23201,1097,270,2.6,9,9,16.1,4877,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,6.6,45,100200,694,1404,373,423,509,171,48347,36524,19675,907,240,2.3,9,9,16.1,4841,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,5.6,42,100200,497,1404,382,279,430,127,31356,26288,14321,629,240,0.0,10,10,16.0,4572,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,4.4,37,100200,252,1404,384,116,277,67,12840,6889,7380,302,270,0.0,10,10,16.0,4572,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,3.8,36,100100,25,577,383,9,138,7,1027,0,750,27,270,0.4,10,10,16.1,4572,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,7.5,57,100100,0,0,369,0,0,0,0,0,0,0,270,3.4,10,10,16.1,4572,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.2,66,100100,0,0,369,0,0,0,0,0,0,0,10,1.5,10,10,16.1,4572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,7.3,57,100100,0,0,369,0,0,0,0,0,0,0,70,1.3,10,10,16.1,4572,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,4.2,41,100100,0,0,374,0,0,0,0,0,0,0,70,0.0,10,10,16.1,4572,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,5.8,48,100200,0,0,373,0,0,0,0,0,0,0,100,0.2,10,10,16.1,4572,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,3.8,43,100100,0,0,368,0,0,0,0,0,0,0,100,1.7,10,10,16.1,4572,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,4.2,47,100200,0,0,363,0,0,0,0,0,0,0,100,3.1,10,10,16.1,4572,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,10.5,78,100100,0,0,364,0,0,0,0,0,0,0,310,3.1,10,10,16.1,4572,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.9,77,100100,0,0,362,0,0,0,0,0,0,0,260,3.0,10,10,16.1,4572,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.9,72,100000,0,0,360,0,0,0,0,0,0,0,60,2.6,10,10,16.0,4572,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.2,73,100000,0,0,355,0,0,0,0,0,0,0,100,2.7,10,10,16.1,4429,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,7.1,66,100000,0,0,346,0,0,0,0,0,0,0,90,3.5,9,9,16.1,3281,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,7.0,63,100100,5,252,349,0,0,0,0,0,0,0,160,3.0,9,9,16.1,2707,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,9.1,71,100200,188,1403,363,79,219,50,8662,958,5458,218,90,3.0,10,10,15.7,2402,9,999999999,179,0.0000,0,88,999.000,5.0,1.0 +2012,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,14.4,10.6,78,100100,441,1403,365,215,285,125,23795,16073,13918,608,60,6.0,10,10,13.1,2098,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.6,78,100100,653,1403,365,326,271,199,36407,20321,22395,1041,90,4.1,10,10,14.0,1864,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,9.1,65,100100,807,1403,360,454,383,234,51533,30284,26682,1276,40,3.2,9,9,16.1,2205,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,7.4,56,100100,892,1403,360,550,502,230,63411,39167,26728,1285,160,3.8,9,9,16.1,2778,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,9.0,61,100000,902,1403,364,612,663,186,71899,47128,21972,1041,170,5.2,9,9,16.1,3030,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,10.6,70,100100,836,1403,363,546,601,188,63339,42720,21911,1034,130,5.3,9,9,16.1,1557,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,10.5,69,100100,700,1403,374,416,474,180,47350,33711,20585,955,130,5.6,10,10,16.1,3012,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,9.4,65,100100,502,1403,372,276,402,132,30893,24388,14842,656,150,5.1,10,10,16.0,2725,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,9.7,68,100100,257,1403,370,121,290,67,13284,6755,7460,306,140,5.4,10,10,16.0,2572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.0,73,100100,27,599,367,10,145,7,1132,0,821,30,140,5.6,10,10,16.1,2402,9,999999999,189,0.0000,0,88,999.000,3.0,1.0 +2012,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,14.4,10.0,75,100200,0,0,364,0,0,0,0,0,0,0,110,4.5,10,10,16.1,2116,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,9.9,75,100200,0,0,354,0,0,0,0,0,0,0,110,3.5,9,9,16.1,2052,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,8.8,71,100200,0,0,351,0,0,0,0,0,0,0,50,2.7,9,9,16.1,2573,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.3,65,100300,0,0,355,0,0,0,0,0,0,0,210,3.0,9,9,16.1,2420,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.4,67,100300,0,0,352,0,0,0,0,0,0,0,210,2.5,9,9,16.1,2286,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,9.3,72,100400,0,0,353,0,0,0,0,0,0,0,340,1.7,9,9,16.1,2232,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,9.0,71,100400,0,0,352,0,0,0,0,0,0,0,340,2.9,9,9,16.1,2149,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.1,78,100400,0,0,345,0,0,0,0,0,0,0,320,1.5,9,9,16.1,4572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.4,65,100400,0,0,342,0,0,0,0,0,0,0,260,1.6,9,9,16.1,4927,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,4.4,57,100400,0,0,333,0,0,0,0,0,0,0,320,2.6,8,8,16.0,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,3.8,56,100400,0,0,330,0,0,0,0,0,0,0,280,1.6,8,8,16.1,7620,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,3.4,52,100400,0,0,322,0,0,0,0,0,0,0,310,2.5,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,3.9,56,100500,6,271,319,0,0,0,0,0,0,0,10,1.6,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,3.8,48,100600,192,1403,329,119,627,33,13536,0,3719,144,310,2.3,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,2.7,37,100700,446,1403,341,324,839,57,38375,35367,6807,279,310,3.9,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,1.7,30,100700,658,1403,351,541,1040,53,67334,54316,6564,275,340,2.6,5,5,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,1.2,24,100700,812,1403,361,700,1123,49,89738,61979,6334,270,270,1.7,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,2.5,27,100700,897,1403,356,792,1170,44,103647,64373,5792,247,270,3.2,2,2,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,5.0,35,100600,907,1403,340,816,1204,37,108147,64092,4910,207,230,4.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,5.2,36,100600,842,1403,340,757,1205,34,99973,62556,4505,188,250,5.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,6.5,41,100500,705,1403,338,635,1211,26,83619,57051,3454,139,210,1.9,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,5.0,35,100500,507,1403,340,456,1219,15,60278,43176,1996,75,250,4.6,0,0,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,5.3,37,100500,262,1403,338,223,1150,8,28972,0,1060,37,250,2.2,0,0,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,5.6,39,100600,29,621,336,11,539,0,2147,0,0,0,250,0.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,6.1,44,100600,0,0,331,0,0,0,0,0,0,0,250,3.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,10.1,63,100700,0,0,328,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,10.5,67,100800,0,0,326,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,9.7,65,100800,0,0,324,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,8.0,53,100900,0,0,328,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,9.3,64,100900,0,0,322,0,0,0,0,0,0,0,110,1.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,8.2,61,100900,0,0,320,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,7.4,67,100900,0,0,309,0,0,0,0,0,0,0,60,0.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,4.3,49,100900,0,0,312,0,0,0,0,0,0,0,60,2.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,3.3,47,100900,0,0,309,0,0,0,0,0,0,0,60,1.5,0,0,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,3.2,53,100900,0,0,301,0,0,0,0,0,0,0,100,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,2.7,52,100900,0,0,299,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,1.8,42,100900,6,290,326,1,205,0,152,0,10,0,50,1.3,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,2.0,38,101000,197,1402,333,130,736,27,15128,0,3148,120,50,0.0,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.4,0.5,27,101000,451,1402,346,379,1103,24,47937,38120,3086,119,70,0.2,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,0.0,22,101000,663,1402,360,589,1185,28,76821,57429,3643,146,70,1.5,3,3,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,0.4,21,101000,818,1402,365,710,1137,46,91520,62663,5985,254,260,0.5,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,3.0,27,101000,903,1402,363,735,1012,84,91940,60936,10558,471,260,4.2,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,1.3,25,100900,913,1402,358,719,944,104,88603,59920,12911,585,260,5.1,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,2.6,29,100800,847,1402,352,655,910,105,79873,57378,12840,579,260,5.0,2,2,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,1.5,27,100800,711,1402,339,639,1207,27,84185,59635,3555,143,250,4.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,4.4,35,100800,512,1402,337,458,1208,16,60268,43961,2160,82,250,4.6,0,0,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,5.6,39,100800,267,1402,336,219,1087,12,27710,2546,1546,56,260,4.3,0,0,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,6.9,45,100800,31,643,334,12,544,0,1938,0,6,0,260,4.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,8.4,54,100800,0,0,329,0,0,0,0,0,0,0,240,4.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,9.0,57,100800,0,0,329,0,0,0,0,0,0,0,230,1.7,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,9.4,62,100900,0,0,325,0,0,0,0,0,0,0,240,2.7,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,9.4,63,100800,0,0,325,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,9.5,65,100800,0,0,322,0,0,0,0,0,0,0,270,1.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.1,70,100900,0,0,335,0,0,0,0,0,0,0,240,2.0,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,10.5,75,100900,0,0,349,0,0,0,0,0,0,0,260,1.3,8,8,16.1,4877,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.3,77,100800,0,0,326,0,0,0,0,0,0,0,70,0.2,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.9,81,100800,0,0,318,0,0,0,0,0,0,0,70,1.3,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.9,83,100800,0,0,316,0,0,0,0,0,0,0,70,0.0,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,7.6,74,100800,0,0,316,0,0,0,0,0,0,0,110,0.2,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,6.0,70,100800,0,0,311,0,0,0,0,0,0,0,110,1.5,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,5.1,63,100900,7,309,313,1,153,0,142,0,29,1,90,1.7,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,6.0,61,100900,201,1402,321,129,687,31,14883,0,3538,136,70,3.1,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.3,9.0,66,101000,456,1402,332,354,956,43,42855,34735,5201,210,90,3.1,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,10.0,63,101000,669,1402,342,557,1064,49,69550,51244,6158,258,90,3.1,3,3,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,11.2,62,101000,823,1402,336,741,1206,33,97652,58237,4306,179,260,0.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.1,72,100900,908,1402,331,817,1204,37,107961,59449,4907,208,260,4.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,11.2,65,100800,918,1402,333,826,1203,37,109273,60341,4965,210,240,3.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,11.7,64,100700,853,1402,336,767,1204,35,101073,58593,4568,191,280,3.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,11.7,73,100700,716,1402,347,546,894,90,65778,49317,10819,477,260,4.0,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.7,78,100700,518,1402,342,359,746,84,41827,36176,9778,418,260,3.6,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100700,272,1402,339,158,526,56,17776,10013,6338,257,260,4.4,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,11.9,83,100600,33,665,345,14,263,8,1588,0,887,33,270,5.4,7,7,16.1,213,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.6,83,100600,0,0,356,0,0,0,0,0,0,0,280,0.4,9,9,14.7,7442,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.0,80,100600,0,0,356,0,0,0,0,0,0,0,240,3.4,9,9,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.1,73,100600,0,0,357,0,0,0,0,0,0,0,240,5.7,9,9,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.2,81,100700,0,0,356,0,0,0,0,0,0,0,250,5.9,9,9,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.8,85,100600,0,0,366,0,0,0,0,0,0,0,280,7.3,10,10,16.1,4867,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,100600,0,0,364,0,0,0,0,0,0,0,250,4.2,10,10,16.1,305,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,100600,0,0,364,0,0,0,0,0,0,0,250,4.6,10,10,16.1,318,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.6,86,100500,0,0,364,0,0,0,0,0,0,0,230,3.5,10,10,16.1,488,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.4,85,100500,0,0,353,0,0,0,0,0,0,0,210,3.5,9,9,14.9,443,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.6,81,100500,0,0,345,0,0,0,0,0,0,0,220,2.6,8,8,12.0,373,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,11.0,88,100500,0,0,358,0,0,0,0,0,0,0,250,3.1,10,10,16.0,701,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.6,89,100500,0,0,351,0,0,0,0,0,0,0,260,3.6,9,9,12.9,766,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,11.0,85,100500,8,329,351,1,105,0,137,0,51,2,260,3.8,9,9,16.1,1196,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,10.5,79,100500,206,1401,353,93,274,53,10280,2364,5879,237,270,5.7,9,9,16.1,1239,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,10.0,74,100500,461,1401,355,243,361,124,27071,20645,13896,608,260,5.7,9,9,16.1,1150,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.0,72,100500,674,1401,350,410,509,165,46754,35115,18918,869,200,5.7,8,8,16.0,979,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,9.9,72,100500,829,1401,357,461,367,244,52376,29271,27904,1343,260,5.0,9,9,16.1,756,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,9.5,69,100400,914,1401,357,542,442,254,62248,35167,29295,1423,260,5.8,9,9,16.1,1289,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,10.0,68,100400,924,1401,362,603,590,213,70228,43532,25007,1200,270,7.3,9,9,16.1,845,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.0,65,100300,858,1401,339,685,972,90,84486,56456,11101,497,270,7.5,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,9.4,67,100200,722,1401,339,569,955,77,69404,52069,9380,409,260,6.3,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,9.4,69,100200,523,1401,349,325,568,113,37079,32351,12977,568,260,7.2,8,8,16.0,457,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,9.2,71,100200,277,1401,337,168,581,53,18986,11527,6011,242,260,6.9,6,6,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,9.0,71,100200,35,686,333,15,290,8,1711,0,879,32,250,6.5,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.5,78,100200,0,0,348,0,0,0,0,0,0,0,240,5.1,9,9,16.1,1254,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.0,80,100200,0,0,342,0,0,0,0,0,0,0,250,5.0,8,8,16.1,1524,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.9,80,100200,0,0,329,0,0,0,0,0,0,0,250,3.6,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.4,78,100200,0,0,328,0,0,0,0,0,0,0,120,0.3,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,9.4,80,100200,0,0,326,0,0,0,0,0,0,0,120,2.7,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.5,84,100300,0,0,336,0,0,0,0,0,0,0,110,3.0,8,8,16.1,1494,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.8,86,100300,0,0,319,0,0,0,0,0,0,0,110,2.6,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,8.3,83,100200,0,0,312,0,0,0,0,0,0,0,70,2.3,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,8.3,89,100200,0,0,308,0,0,0,0,0,0,0,60,0.2,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,8.3,86,100200,0,0,311,0,0,0,0,0,0,0,60,2.1,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,8.3,86,100200,0,0,315,0,0,0,0,0,0,0,70,2.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,8.3,85,100300,0,0,316,0,0,0,0,0,0,0,40,2.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,8.3,82,100300,9,350,318,2,299,0,377,0,0,0,70,2.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,8.4,77,100400,211,1401,324,127,596,38,14462,1305,4313,169,50,2.5,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,9.4,74,100400,466,1401,332,330,788,68,38637,34074,7947,332,50,1.9,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,9.4,69,100500,679,1401,337,505,848,94,60270,48096,11229,494,250,0.0,5,5,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,8.9,67,100500,834,1401,337,610,803,132,72822,51459,15774,724,250,3.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,8.9,64,100400,919,1401,339,692,854,132,83732,54487,15978,739,250,4.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.0,65,100400,930,1401,339,725,922,113,88818,56492,13865,634,260,5.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,9.3,67,100300,864,1401,339,680,943,98,83335,55749,12077,544,270,5.2,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.9,67,100300,727,1401,336,553,886,93,66589,51018,11234,497,270,6.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.9,72,100300,528,1401,343,318,516,123,36004,30740,14017,618,260,5.7,8,8,16.0,1524,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.6,70,100300,282,1401,334,165,536,58,18643,12255,6527,264,250,5.4,6,6,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,8.4,70,100300,38,708,330,17,268,10,1908,0,1104,41,250,5.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,8.9,75,100400,0,0,328,0,0,0,0,0,0,0,270,5.0,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.0,76,100400,0,0,328,0,0,0,0,0,0,0,270,3.9,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.4,79,100400,0,0,346,0,0,0,0,0,0,0,250,2.9,9,9,16.1,1524,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.4,78,100500,0,0,348,0,0,0,0,0,0,0,280,4.8,9,9,16.1,1524,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.3,79,100500,0,0,346,0,0,0,0,0,0,0,230,1.9,9,9,16.1,1208,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100500,0,0,335,0,0,0,0,0,0,0,160,2.5,8,8,16.1,549,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100500,0,0,323,0,0,0,0,0,0,0,130,1.3,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.9,81,100500,0,0,352,0,0,0,0,0,0,0,130,0.0,10,10,16.1,823,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.9,83,100400,0,0,350,0,0,0,0,0,0,0,90,0.2,10,10,16.1,860,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100400,0,0,352,0,0,0,0,0,0,0,100,2.1,10,10,16.0,1097,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100400,0,0,352,0,0,0,0,0,0,0,100,0.0,10,10,16.1,1093,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.9,80,100400,0,0,353,0,0,0,0,0,0,0,100,0.0,10,10,16.1,1059,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.3,74,100400,11,371,355,2,81,1,251,0,174,6,200,0.0,10,10,16.1,889,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,8.2,72,100500,215,1400,356,83,162,58,9101,2263,6388,258,200,0.0,10,10,16.1,852,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,8.7,74,100400,471,1400,357,218,235,139,24133,14548,15452,683,200,2.7,10,10,15.4,958,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.0,80,100400,685,1400,359,333,244,214,37281,18892,24064,1129,270,3.1,10,10,8.0,634,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.5,78,100400,840,1400,348,447,313,260,50650,25653,29563,1430,290,4.3,9,9,11.3,455,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,7.9,67,100300,925,1400,349,546,435,259,62799,35138,29972,1459,260,5.6,9,9,11.8,1095,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,8.2,68,100200,935,1400,350,595,546,230,69096,41891,26841,1295,240,4.8,9,9,16.1,1318,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,6.8,61,100100,870,1400,350,572,611,193,66779,44911,22659,1073,240,7.6,9,9,16.1,1201,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,3.3,47,100100,732,1400,339,497,676,143,58062,46247,16785,765,260,8.2,8,8,16.1,1219,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,3.3,47,100100,533,1400,322,426,997,46,52260,44885,5665,231,250,11.8,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,4.2,53,100100,286,1400,320,199,793,37,23337,13494,4332,169,270,12.9,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,4.9,57,100000,40,729,318,18,634,0,3545,0,0,0,270,13.6,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,3.9,55,100000,0,0,315,0,0,0,0,0,0,0,280,11.1,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,3.8,57,100000,0,0,313,0,0,0,0,0,0,0,280,8.9,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,2.9,54,100100,0,0,311,0,0,0,0,0,0,0,280,5.9,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,3.4,57,100100,0,0,310,0,0,0,0,0,0,0,280,7.6,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,3.8,61,100100,0,0,312,0,0,0,0,0,0,0,290,6.7,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,3.3,61,100100,0,0,310,0,0,0,0,0,0,0,20,2.7,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.4,3.3,62,100100,0,0,321,0,0,0,0,0,0,0,310,3.4,8,8,16.1,3353,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,3.3,68,100100,0,0,303,0,0,0,0,0,0,0,50,1.9,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.8,3.4,69,100100,0,0,302,0,0,0,0,0,0,0,50,0.0,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,3.9,74,100100,0,0,301,0,0,0,0,0,0,0,30,0.0,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,3.8,74,100100,0,0,298,0,0,0,0,0,0,0,30,2.2,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,3.2,72,100200,0,0,294,0,0,0,0,0,0,0,70,3.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.5,2.4,66,100300,12,393,300,3,359,0,577,0,0,0,70,2.0,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,3.9,65,100300,220,1400,309,132,573,41,14913,4550,4698,185,60,1.6,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,3.9,58,100400,477,1400,316,340,799,68,40019,37231,7999,334,110,2.6,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,3.9,53,100400,690,1400,323,525,890,86,63341,51825,10461,457,40,2.6,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,1.4,41,100400,845,1400,325,631,840,123,76007,55502,14925,681,260,0.5,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,3.2,46,100400,931,1400,329,719,904,118,88090,58410,14499,664,260,4.6,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,2.7,46,100300,941,1400,326,730,912,117,89622,58948,14418,661,290,4.4,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,2.1,44,100300,875,1400,326,662,865,121,80253,56673,14747,674,260,3.5,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,2.0,44,100400,738,1400,323,571,919,87,69451,54899,10614,467,260,6.8,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,3.9,51,100400,538,1400,320,413,920,59,49762,44070,7111,296,260,7.2,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,3.3,51,100400,291,1400,317,192,705,45,22194,15216,5260,209,250,5.3,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,2.7,51,100400,42,751,314,20,665,0,3948,0,0,0,250,3.5,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,2.5,50,100500,0,0,316,0,0,0,0,0,0,0,280,2.9,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,5.1,60,100500,0,0,304,0,0,0,0,0,0,0,250,1.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,5.2,60,100500,0,0,303,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,2.3,53,100600,0,0,306,0,0,0,0,0,0,0,100,0.2,2,2,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,3.1,56,100700,0,0,297,0,0,0,0,0,0,0,100,2.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,1.8,53,100600,0,0,293,0,0,0,0,0,0,0,110,1.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,2.3,59,100700,0,0,301,0,0,0,0,0,0,0,90,2.5,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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.3,3.3,66,100700,0,0,304,0,0,0,0,0,0,0,80,1.3,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.0,3.4,68,100700,0,0,303,0,0,0,0,0,0,0,100,0.2,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,3.9,69,100600,0,0,317,0,0,0,0,0,0,0,100,1.5,8,8,16.0,7620,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,3.4,73,100600,0,0,310,0,0,0,0,0,0,0,90,1.5,8,8,16.1,7620,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.4,3.9,73,100600,0,0,301,0,0,0,0,0,0,0,50,1.6,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,4.5,68,100600,13,415,327,3,149,2,375,0,198,7,90,3.0,9,9,16.1,853,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,5.0,68,100600,225,1399,331,106,299,58,11716,5060,6418,259,130,2.4,9,9,16.1,921,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,6.2,68,100600,482,1399,338,271,435,122,30516,25773,13724,600,110,4.0,9,9,16.1,1487,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,6.7,64,100500,696,1399,338,437,552,162,50139,38712,18723,859,150,3.1,8,8,16.0,1747,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.7,5.9,59,100400,851,1399,346,504,447,233,57834,35624,26811,1286,200,6.3,9,9,15.7,1935,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.3,65,100300,937,1399,348,578,499,244,66941,39432,28407,1377,260,7.5,9,9,13.9,1658,9,999999999,150,0.0000,0,88,999.000,20.0,1.0 +2012,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,12.7,8.1,74,100200,947,1399,344,574,471,256,66279,37562,29684,1445,270,5.3,9,9,10.4,1495,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,9.5,83,100100,881,1399,343,527,457,239,60459,35744,27603,1332,240,3.2,9,9,16.1,1218,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,4.9,62,100100,743,1399,337,432,435,202,49251,33545,23069,1082,330,5.4,9,9,16.1,1263,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,-0.6,40,100000,543,1399,327,337,557,121,38516,35214,13834,608,350,6.2,8,8,16.0,1981,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,2.7,52,100100,296,1399,320,179,570,58,20279,15709,6622,268,70,5.0,6,6,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.5,5.3,66,100100,45,772,311,22,285,13,2441,0,1431,54,70,2.7,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,3.3,63,100100,0,0,303,0,0,0,0,0,0,0,100,3.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,3.4,64,100200,0,0,303,0,0,0,0,0,0,0,190,2.1,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,3.8,66,100200,0,0,303,0,0,0,0,0,0,0,190,2.1,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,3.4,66,100300,0,0,300,0,0,0,0,0,0,0,80,1.9,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,4.3,70,100300,0,0,302,0,0,0,0,0,0,0,310,0.4,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,3.0,1.0 +2012,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,10.1,3.4,63,100400,0,0,303,0,0,0,0,0,0,0,310,3.2,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,-0.9,43,100300,0,0,305,0,0,0,0,0,0,0,330,4.0,4,4,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,-2.1,41,100300,0,0,300,0,0,0,0,0,0,0,10,3.0,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.1,2.9,75,100300,0,0,290,0,0,0,0,0,0,0,120,2.5,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.1,3.3,82,100400,0,0,286,0,0,0,0,0,0,0,100,1.5,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,5.7,2.9,82,100400,0,0,284,0,0,0,0,0,0,0,100,0.2,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.8,3.0,77,100500,0,0,289,0,0,0,0,0,0,0,320,2.3,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,0.7,47,100500,15,438,313,4,384,0,771,0,0,0,320,3.8,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,-2.3,33,100600,231,1399,317,165,848,25,19541,2869,2936,111,320,5.1,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,-2.9,28,100700,488,1399,324,391,1012,39,48281,42781,4796,192,330,5.3,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-3.3,23,100600,702,1399,337,553,956,74,67788,55912,9062,391,360,7.2,5,5,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,-3.9,21,100600,857,1399,340,659,898,109,80457,58843,13336,603,70,4.9,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,-4.0,19,100600,942,1399,344,744,944,107,92019,61663,13330,606,30,3.4,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,-4.4,18,100600,952,1399,344,732,892,125,89702,60234,15345,706,20,1.9,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,-4.5,17,100600,886,1399,349,704,959,96,87076,61302,11954,537,20,5.0,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,-5.0,16,100600,748,1399,348,605,1001,70,75114,59074,8645,374,30,8.4,4,4,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,-5.0,16,100600,549,1399,343,430,959,54,52433,47866,6569,272,20,9.8,3,3,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,-5.3,16,100600,301,1399,342,199,707,47,23053,18374,5454,217,30,6.5,3,3,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,-4.7,17,100600,47,793,341,24,353,12,2694,0,1353,51,30,3.8,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,2.5,38,100700,0,0,330,0,0,0,0,0,0,0,260,4.9,2,2,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,4.6,48,100700,0,0,315,0,0,0,0,0,0,0,250,3.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,6.1,56,100700,0,0,314,0,0,0,0,0,0,0,250,3.7,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,5.8,56,100700,0,0,312,0,0,0,0,0,0,0,270,4.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,2.3,40,100800,0,0,314,0,0,0,0,0,0,0,290,4.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,-5.6,20,100800,0,0,324,0,0,0,0,0,0,0,290,0.4,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,-5.6,22,100800,0,0,319,0,0,0,0,0,0,0,360,3.2,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,-5.6,22,100800,0,0,317,0,0,0,0,0,0,0,360,3.4,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,-5.5,24,100700,0,0,313,0,0,0,0,0,0,0,340,1.3,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,-5.0,28,100700,0,0,306,0,0,0,0,0,0,0,140,0.0,3,3,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,-3.5,37,100800,0,0,284,0,0,0,0,0,0,0,140,1.9,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,-5.3,28,100800,0,0,290,0,0,0,0,0,0,0,350,0.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,-7.3,20,100800,16,461,316,4,318,0,566,0,40,1,350,2.5,5,5,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,-3.8,30,100900,236,1398,313,139,555,46,15799,8458,5208,206,150,1.5,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,-3.6,26,100900,493,1398,326,337,721,83,39256,38492,9649,409,220,1.6,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-6.1,18,100900,707,1398,334,502,757,119,59359,50552,14111,631,240,2.1,5,5,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,-0.2,27,100900,863,1398,346,676,933,100,83023,59103,12322,554,250,3.2,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,-0.8,26,100900,948,1398,365,586,500,247,68088,41064,28877,1398,240,4.2,9,9,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,5.3,44,100800,958,1398,366,566,429,271,65180,35567,31441,1537,250,4.5,9,9,16.1,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,3.4,38,100800,892,1398,365,513,401,257,58816,33396,29673,1438,270,3.7,9,9,16.1,7620,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,4.5,45,100700,754,1398,351,444,449,202,50667,34690,23137,1086,280,4.6,8,8,16.1,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,5.6,50,100700,554,1398,337,373,688,101,43273,39199,11716,509,250,4.6,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,6.4,54,100700,306,1398,337,175,496,67,19698,15178,7531,309,270,4.1,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,7.3,59,100700,50,814,334,26,248,17,2832,0,1871,72,270,3.6,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.2,69,100800,0,0,322,0,0,0,0,0,0,0,240,3.4,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,7.3,65,100800,0,0,311,0,0,0,0,0,0,0,250,1.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,8.3,70,100800,0,0,311,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.3,74,100800,0,0,307,0,0,0,0,0,0,0,150,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,8.2,72,100800,0,0,309,0,0,0,0,0,0,0,50,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.3,69,100800,0,0,306,0,0,0,0,0,0,0,50,0.4,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,8.2,75,100800,0,0,306,0,0,0,0,0,0,0,50,2.9,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.3,83,100800,0,0,307,0,0,0,0,0,0,0,90,1.3,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.8,86,100800,0,0,324,0,0,0,0,0,0,0,70,0.6,8,8,15.7,335,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,7.8,90,100700,0,0,305,0,0,0,0,0,0,0,70,1.5,3,3,14.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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.7,6.9,83,100800,0,0,321,0,0,0,0,0,0,0,60,2.1,8,8,16.1,305,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.0,5.9,81,100800,0,0,301,0,0,0,0,0,0,0,60,1.5,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,7.9,86,100800,18,485,313,5,378,0,745,0,18,1,40,1.6,5,5,15.5,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,8.3,82,100900,241,1398,318,140,533,49,15821,7005,5481,219,40,2.2,5,5,11.6,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,8.3,76,100900,499,1398,324,349,760,78,40764,36675,9094,385,120,3.0,5,5,14.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.3,67,100900,713,1398,333,531,845,100,63467,49742,11972,531,120,2.1,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,8.4,63,100800,868,1398,338,651,847,125,78505,53635,15118,694,140,1.9,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.9,67,100800,954,1398,336,726,872,131,88362,55424,15975,740,260,4.4,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.8,67,100700,964,1398,336,734,873,132,89371,55600,16159,750,270,3.3,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.4,65,100600,897,1398,336,673,846,130,81291,54095,15744,726,270,5.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,8.9,68,100600,759,1398,335,572,863,103,68709,51378,12436,556,250,5.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.9,72,100600,559,1398,343,333,495,135,37702,31103,15354,684,230,5.1,8,8,16.0,460,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,8.9,73,100500,310,1398,342,154,330,81,17073,11629,8997,375,260,4.0,8,8,16.0,491,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,8.9,75,100500,53,835,348,22,165,15,2390,0,1709,65,260,3.3,9,9,16.1,521,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,8.8,75,100600,0,0,347,0,0,0,0,0,0,0,280,4.8,9,9,16.1,545,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,8.3,74,100600,0,0,345,0,0,0,0,0,0,0,300,1.9,9,9,16.1,542,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.1,73,100500,0,0,328,0,0,0,0,0,0,0,300,0.9,6,6,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.3,75,100600,0,0,344,0,0,0,0,0,0,0,110,0.3,9,9,16.1,884,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.2,77,100600,0,0,341,0,0,0,0,0,0,0,110,2.5,9,9,16.1,899,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,7.8,77,100600,0,0,332,0,0,0,0,0,0,0,110,2.1,8,8,16.1,945,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,7.7,77,100500,0,0,320,0,0,0,0,0,0,0,90,1.9,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,7.1,74,100500,0,0,330,0,0,0,0,0,0,0,90,0.0,8,8,16.1,1036,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,6.8,75,100400,0,0,316,0,0,0,0,0,0,0,90,0.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,7.2,77,100400,0,0,328,0,0,0,0,0,0,0,90,0.0,8,8,16.0,975,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,6.6,74,100400,0,0,327,0,0,0,0,0,0,0,90,0.0,8,8,16.1,975,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,6.2,77,100400,0,0,311,0,0,0,0,0,0,0,270,0.0,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,6.8,80,100500,20,509,312,6,415,0,912,0,14,0,270,0.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,7.7,79,100600,247,1397,318,134,447,56,15014,7895,6228,251,270,0.0,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,7.3,69,100600,504,1397,325,339,693,89,39306,35895,10348,443,270,0.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,7.8,67,100500,719,1397,330,522,797,112,61915,48745,13290,595,270,0.0,5,5,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,8.4,69,100500,874,1397,331,631,775,146,75299,51366,17525,814,270,5.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,8.8,70,100500,960,1397,352,571,440,269,65790,35544,31123,1523,250,5.7,9,9,16.1,7620,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.2,69,100400,969,1397,350,591,475,261,68329,37943,30400,1484,280,6.0,9,9,16.1,5166,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,7.7,66,100400,903,1397,342,596,611,201,69684,45045,23654,1127,280,7.1,8,8,16.1,7620,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,7.1,64,100400,765,1397,326,590,909,93,71601,53521,11278,501,270,6.3,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,6.9,64,100400,564,1397,325,415,843,75,49390,43305,8975,382,270,6.6,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.0,66,100400,315,1397,324,201,648,55,23050,17529,6331,256,260,5.8,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,7.3,70,100400,55,856,319,30,324,17,3288,0,1884,72,260,4.9,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.9,75,100500,0,0,317,0,0,0,0,0,0,0,240,3.5,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.2,77,100500,0,0,317,0,0,0,0,0,0,0,250,3.2,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.7,74,100600,0,0,322,0,0,0,0,0,0,0,280,3.9,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.3,72,100600,0,0,321,0,0,0,0,0,0,0,270,2.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.9,75,100700,0,0,322,0,0,0,0,0,0,0,30,1.3,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.2,77,100700,0,0,351,0,0,0,0,0,0,0,120,0.2,10,10,16.1,1524,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,7.2,78,100700,0,0,335,0,0,0,0,0,0,0,120,1.5,9,9,16.1,1524,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.2,83,100700,0,0,307,0,0,0,0,0,0,0,50,1.3,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.2,83,100600,0,0,307,0,0,0,0,0,0,0,50,0.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.2,83,100700,0,0,312,0,0,0,0,0,0,0,120,0.0,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,6.8,83,100600,0,0,309,0,0,0,0,0,0,0,120,2.0,5,5,12.9,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.1,82,100700,0,0,314,0,0,0,0,0,0,0,30,1.8,6,6,12.9,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.3,6.8,79,100800,22,534,331,7,115,5,809,0,601,22,80,2.1,9,9,13.3,1603,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,6.8,74,100800,252,1396,336,110,230,68,12072,5683,7533,309,50,2.1,9,9,14.2,3605,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,7.2,71,100800,510,1396,351,243,251,151,26971,16687,16867,753,80,2.3,10,10,12.9,644,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.8,72,100900,725,1396,354,371,285,223,41732,22694,25217,1191,120,2.1,10,10,14.0,1083,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,7.7,66,100800,880,1396,349,498,380,259,56848,31062,29700,1441,80,2.0,9,9,16.1,811,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.3,60,100800,966,1396,354,584,465,263,67563,37523,30548,1491,80,1.6,9,9,16.1,1146,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.9,63,100700,975,1396,355,628,564,235,73375,43234,27550,1334,250,2.4,9,9,16.1,1879,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.3,64,100700,908,1396,348,616,656,189,72356,47031,22321,1060,260,4.7,8,8,16.1,4572,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.3,65,100600,770,1396,335,575,848,108,69070,51504,13012,585,260,5.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.3,67,100600,569,1396,333,399,752,92,46661,40928,10835,469,260,5.7,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,8.3,70,100600,320,1396,330,191,545,66,21535,16849,7468,307,260,4.9,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,8.3,72,100600,58,876,327,31,272,20,3387,0,2161,84,260,4.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,8.3,74,100700,0,0,325,0,0,0,0,0,0,0,280,4.5,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.4,75,100700,0,0,325,0,0,0,0,0,0,0,270,4.0,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.0,81,100700,0,0,323,0,0,0,0,0,0,0,280,3.5,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.4,84,100700,0,0,323,0,0,0,0,0,0,0,270,3.1,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,9.4,85,100700,0,0,319,0,0,0,0,0,0,0,250,2.7,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.3,83,100700,0,0,305,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,8.8,81,100700,0,0,304,0,0,0,0,0,0,0,100,1.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,7.8,87,100700,0,0,294,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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.3,7.8,90,100600,0,0,292,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,7.8,93,100700,0,0,290,0,0,0,0,0,0,0,100,0.0,0,0,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.8,6.6,86,100700,0,0,289,0,0,0,0,0,0,0,80,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.4,5.5,82,100700,0,0,298,0,0,0,0,0,0,0,80,1.6,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.6,5.1,74,100800,24,558,308,8,125,6,920,0,674,24,60,2.2,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,5.6,68,100800,258,1396,335,115,250,69,12717,6608,7663,314,100,2.3,9,9,16.1,7620,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,5.5,56,100900,516,1396,341,322,571,111,36792,33243,12728,555,90,0.2,8,8,16.1,7620,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,4.4,44,100900,731,1396,339,575,949,79,70373,54514,9644,421,90,2.1,5,5,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,1.2,29,100900,886,1396,349,722,1007,83,90230,61023,10353,461,250,1.7,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,-2.2,20,100900,971,1396,355,818,1071,73,104575,64872,9329,414,250,3.5,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,-1.3,21,100800,981,1396,377,676,682,197,80379,51487,23569,1124,260,3.5,9,9,16.1,6096,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,5.6,43,100800,914,1396,370,528,404,264,60607,33408,30448,1482,270,6.2,9,9,16.1,6096,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,5.7,48,100800,775,1396,361,378,233,249,42581,19486,28179,1349,280,6.0,9,9,16.1,6273,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,6.7,50,100800,574,1396,375,235,138,178,26101,10094,19885,906,260,4.1,10,10,16.0,7531,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,7.3,54,100800,325,1396,362,138,201,92,15232,8290,10125,427,270,5.2,9,9,16.0,6769,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,7.7,58,100800,61,897,359,25,100,20,2685,0,2214,86,270,6.0,9,9,16.1,6096,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.8,56,100800,0,0,356,0,0,0,0,0,0,0,270,4.7,9,9,16.1,6096,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,7.4,59,100800,0,0,357,0,0,0,0,0,0,0,280,5.0,9,9,16.1,6096,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,8.8,69,100800,0,0,353,0,0,0,0,0,0,0,270,3.9,9,9,16.1,5918,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.3,64,100800,0,0,355,0,0,0,0,0,0,0,240,2.6,9,9,16.1,4749,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.3,65,100800,0,0,347,0,0,0,0,0,0,0,110,2.3,8,8,16.1,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,8.2,67,100800,0,0,332,0,0,0,0,0,0,0,130,0.2,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.7,67,100800,0,0,349,0,0,0,0,0,0,0,130,1.5,9,9,16.1,6096,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.1,66,100800,0,0,338,0,0,0,0,0,0,0,70,1.3,8,8,16.1,6096,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,6.6,65,100700,0,0,325,0,0,0,0,0,0,0,70,0.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,5.6,66,100700,0,0,317,0,0,0,0,0,0,0,100,0.0,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,4.9,66,100700,0,0,314,0,0,0,0,0,0,0,100,2.6,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,4.3,67,100700,0,0,309,0,0,0,0,0,0,0,70,2.6,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,3.4,56,100800,26,584,335,9,126,7,1029,0,757,28,100,2.5,9,9,16.1,7620,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,4.2,51,100800,263,1395,346,119,253,71,13081,7189,7841,322,40,2.1,9,9,16.1,7620,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,6.6,52,100800,522,1395,361,309,495,124,35055,30166,14133,622,110,1.9,9,9,16.1,7620,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,5.6,41,100800,736,1395,366,504,688,141,58966,46136,16546,755,110,0.0,8,8,16.0,7620,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,4.7,34,100700,892,1395,374,608,666,182,71556,48377,21537,1017,250,0.2,8,8,16.1,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,7.5,40,100600,977,1395,367,777,958,107,96431,58599,13279,607,250,2.4,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,9.5,54,100600,987,1395,356,717,780,165,86128,52448,19963,943,270,5.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,5.8,39,100500,919,1395,357,654,744,164,77999,51764,19639,922,260,4.1,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,4.7,36,100400,780,1395,356,541,706,146,63609,48186,17238,792,270,4.0,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,10.6,65,100400,579,1395,348,383,653,112,44216,37586,12993,573,270,3.6,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,8.5,56,100300,329,1395,347,181,433,78,20168,15730,8784,366,260,3.3,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,6.9,50,100300,64,917,343,33,217,23,3561,0,2498,98,260,3.0,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,8.4,61,100300,0,0,335,0,0,0,0,0,0,0,250,2.1,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.5,67,100300,0,0,334,0,0,0,0,0,0,0,280,2.1,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.1,70,100200,0,0,335,0,0,0,0,0,0,0,240,1.9,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.7,76,100200,0,0,338,0,0,0,0,0,0,0,240,0.0,5,5,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.6,83,100200,0,0,334,0,0,0,0,0,0,0,240,0.0,4,4,14.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.1,81,100100,0,0,330,0,0,0,0,0,0,0,240,0.2,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,11.0,87,100100,0,0,330,0,0,0,0,0,0,0,240,1.3,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,10.0,89,100000,0,0,323,0,0,0,0,0,0,0,260,0.2,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,9.7,86,99900,0,0,323,0,0,0,0,0,0,0,260,2.1,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,8.0,87,99900,0,0,312,0,0,0,0,0,0,0,100,2.1,5,5,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,8.0,79,99900,0,0,317,0,0,0,0,0,0,0,30,2.1,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,5.9,70,99900,0,0,311,0,0,0,0,0,0,0,80,2.3,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,4.5,59,99900,29,609,319,11,261,6,1277,0,655,24,110,3.5,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,5.3,55,100000,269,1395,329,156,522,56,17635,11542,6302,254,120,2.7,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,7.0,51,100000,528,1395,343,400,899,60,48056,41741,7234,302,100,3.5,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,5.6,42,100000,742,1395,345,606,1016,65,75311,55836,8095,349,110,3.1,3,3,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,3.6,31,100000,898,1395,355,742,1034,76,93374,60978,9649,428,110,0.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,2.3,25,99900,983,1395,362,827,1067,75,105578,63466,9540,424,260,0.4,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,7.2,36,99800,992,1395,369,858,1122,60,111274,62477,7770,341,260,3.8,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,7.7,38,99800,925,1395,366,749,995,90,93465,58711,11237,506,270,5.2,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.1,65,99800,785,1395,346,523,636,165,60871,43173,19287,898,260,6.0,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.1,67,99800,584,1395,349,331,425,154,37328,27962,17366,785,260,4.6,5,5,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,11.1,69,99800,334,1395,348,162,299,90,17842,11755,9984,421,270,4.6,5,5,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,11.1,70,99800,67,937,346,35,149,28,3767,0,3019,120,270,4.4,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.1,73,99800,0,0,341,0,0,0,0,0,0,0,260,3.1,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.2,76,99900,0,0,322,0,0,0,0,0,0,0,270,3.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.6,80,100000,0,0,320,0,0,0,0,0,0,0,260,1.9,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.2,78,100000,0,0,320,0,0,0,0,0,0,0,260,0.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.8,84,100100,0,0,324,0,0,0,0,0,0,0,150,2.8,1,1,14.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,12.1,88,100200,0,0,338,0,0,0,0,0,0,0,110,4.3,6,6,8.0,183,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,11.1,84,100200,0,0,353,0,0,0,0,0,0,0,120,2.2,9,9,8.2,186,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.0,89,100200,0,0,348,0,0,0,0,0,0,0,110,2.3,9,9,9.7,213,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.6,87,100200,0,0,347,0,0,0,0,0,0,0,160,0.2,9,9,9.3,213,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.6,90,100200,0,0,337,0,0,0,0,0,0,0,160,1.5,8,8,6.0,213,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,10.5,90,100300,0,0,319,0,0,0,0,0,0,0,130,1.9,3,3,4.8,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,10.2,90,100400,0,0,318,0,0,0,0,0,0,0,150,0.3,3,3,4.5,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,10.7,90,100500,31,636,326,12,222,7,1370,0,803,29,150,0.0,5,5,3.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,11.1,88,100600,275,1394,329,151,445,63,16802,10197,7045,288,150,0.0,5,5,3.3,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,11.0,79,100700,534,1394,337,354,662,100,40787,35406,11613,505,280,0.2,5,5,4.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,10.6,67,100700,748,1394,346,545,800,116,64808,48431,13835,624,280,1.5,5,5,4.8,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,11.1,68,100700,904,1394,343,704,917,110,86083,54671,13445,614,280,1.9,3,3,6.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,11.0,70,100700,989,1394,341,773,922,119,95121,55945,14728,680,260,5.1,3,3,5.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.7,73,100600,998,1394,336,760,869,138,92617,54792,16853,786,260,5.1,3,3,8.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.1,75,100600,930,1394,341,664,748,165,79084,49922,19711,929,270,5.1,5,5,9.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,11.0,78,100600,791,1394,357,444,379,229,50351,29398,26083,1245,260,4.7,9,9,9.8,244,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.6,84,100600,589,1394,359,277,229,181,30834,16364,20192,925,260,5.7,10,10,11.0,240,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,10.6,85,100600,339,1394,358,126,126,96,13878,5271,10563,448,240,4.3,10,10,9.4,209,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.7,88,100600,70,958,357,22,63,19,2464,0,2123,82,240,3.1,10,10,8.0,173,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,10.7,90,100600,0,0,355,0,0,0,0,0,0,0,280,3.2,10,10,8.0,130,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,10.9,93,100700,0,0,353,0,0,0,0,0,0,0,250,4.0,10,10,8.0,129,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.5,89,100800,0,0,354,0,0,0,0,0,0,0,250,3.4,10,10,11.5,183,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,10.0,86,100900,0,0,354,0,0,0,0,0,0,0,270,1.6,10,10,12.9,190,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.0,84,100900,0,0,356,0,0,0,0,0,0,0,250,2.1,10,10,13.2,254,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,9.9,85,100900,0,0,354,0,0,0,0,0,0,0,260,0.3,10,10,16.1,305,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.5,80,100900,0,0,356,0,0,0,0,0,0,0,260,2.6,10,10,16.1,312,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.0,84,100900,0,0,356,0,0,0,0,0,0,0,260,2.5,10,10,16.1,366,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.9,86,100800,0,0,353,0,0,0,0,0,0,0,240,1.6,10,10,16.1,366,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.4,83,100800,0,0,353,0,0,0,0,0,0,0,270,2.6,10,10,16.0,276,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,9.3,82,100800,0,0,353,0,0,0,0,0,0,0,270,2.3,10,10,16.1,366,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,8.9,77,100800,0,0,355,0,0,0,0,0,0,0,310,0.2,10,10,16.1,373,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.9,77,100800,34,662,355,14,89,12,1539,0,1304,50,310,1.6,10,10,16.1,430,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,8.8,74,100800,281,1394,348,114,178,78,12529,5583,8612,357,360,1.9,9,9,15.5,464,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.3,69,100800,540,1394,342,279,322,154,31124,21582,17289,777,200,0.3,8,8,11.0,518,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.3,64,100800,754,1394,335,511,666,150,59614,44816,17602,810,260,2.6,5,5,11.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.9,67,100800,910,1394,334,642,726,168,76164,49797,19970,940,250,4.3,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.9,67,100700,995,1394,331,758,870,137,92499,55719,16768,781,250,5.8,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.9,67,100600,1004,1394,336,739,803,161,89216,53655,19490,919,260,6.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.9,67,100500,936,1394,336,695,824,142,83897,53621,17250,804,250,6.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.0,72,100400,796,1394,351,458,409,224,52113,31878,25620,1221,260,6.2,9,9,16.1,5685,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.9,72,100400,594,1394,343,343,445,153,38724,29841,17403,787,260,6.2,8,8,16.0,451,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,9.0,75,100400,343,1394,341,163,282,94,18064,12059,10418,441,250,5.3,8,8,16.1,405,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.4,78,100400,73,977,348,28,141,21,3103,0,2299,89,240,3.9,9,9,16.1,366,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.4,80,100400,0,0,356,0,0,0,0,0,0,0,230,2.7,10,10,16.1,366,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,9.4,80,100400,0,0,345,0,0,0,0,0,0,0,260,2.9,9,9,16.1,366,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100300,0,0,321,0,0,0,0,0,0,0,260,2.0,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100300,0,0,318,0,0,0,0,0,0,0,200,1.3,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100300,0,0,330,0,0,0,0,0,0,0,200,0.0,7,7,16.1,366,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,8.8,83,100300,0,0,315,0,0,0,0,0,0,0,200,0.0,3,3,14.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,8.2,82,100300,0,0,310,0,0,0,0,0,0,0,200,0.0,2,2,15.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,8.2,83,100200,0,0,299,0,0,0,0,0,0,0,360,0.0,0,0,9.5,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.8,86,100200,0,0,307,0,0,0,0,0,0,0,360,0.0,3,3,8.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.8,86,100200,0,0,307,0,0,0,0,0,0,0,360,0.0,3,3,8.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,8.3,86,100200,0,0,334,0,0,0,0,0,0,0,360,0.2,9,9,8.0,305,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,8.2,85,100200,0,0,327,0,0,0,0,0,0,0,360,1.6,8,8,7.3,305,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,8.0,83,100200,37,689,315,16,92,14,1747,0,1486,57,70,1.3,5,5,4.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,8.3,79,100300,287,1393,340,118,184,80,12943,6055,8812,366,120,3.0,9,9,4.3,444,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.3,77,100300,546,1393,342,268,270,162,29820,18615,18098,817,130,1.9,9,9,6.6,579,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,8.3,72,100300,761,1393,357,377,248,242,42414,20244,27323,1305,130,0.0,10,10,8.0,593,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,8.2,63,100200,916,1393,343,589,563,219,68527,42515,25590,1229,260,0.0,7,7,9.7,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,8.3,62,100200,1000,1393,333,800,964,107,99500,58580,13346,611,260,3.2,3,3,11.5,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,8.3,62,100100,1009,1393,336,810,972,105,101000,58856,13178,603,270,4.3,4,4,13.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,8.4,63,100000,941,1393,333,745,948,105,92087,57425,13011,593,270,5.6,3,3,14.5,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.8,67,100000,801,1393,327,625,925,93,76287,54062,11386,508,250,5.0,2,2,14.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.3,67,100000,598,1393,314,538,1204,21,70779,49519,2703,106,250,4.6,0,0,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,8.3,68,100000,348,1393,319,226,662,60,25888,21206,6929,283,260,5.4,1,1,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,8.3,70,100000,76,997,325,43,331,25,4653,0,2700,106,260,6.0,3,3,15.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,8.4,72,100000,0,0,347,0,0,0,0,0,0,0,260,4.4,9,9,14.7,629,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,8.8,74,100000,0,0,348,0,0,0,0,0,0,0,250,2.5,9,9,16.1,570,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.9,70,100100,0,0,356,0,0,0,0,0,0,0,150,2.0,10,10,15.9,738,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,8.0,72,100100,0,0,355,0,0,0,0,0,0,0,120,2.6,10,10,14.5,1152,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,6.2,62,100100,0,0,354,0,0,0,0,0,0,0,120,4.5,10,10,16.1,962,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,7.1,66,100100,0,0,356,0,0,0,0,0,0,0,120,3.5,10,10,16.1,1111,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,6.8,63,100100,0,0,357,0,0,0,0,0,0,0,130,2.7,10,10,16.1,1211,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,7.3,68,100100,0,0,345,0,0,0,0,0,0,0,150,3.0,9,9,16.1,1218,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.8,72,100000,0,0,337,0,0,0,0,0,0,0,180,2.6,8,8,16.1,1676,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.8,72,100000,0,0,325,0,0,0,0,0,0,0,180,2.6,5,5,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.1,71,100000,0,0,321,0,0,0,0,0,0,0,200,2.1,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,6.6,69,100000,0,0,320,0,0,0,0,0,0,0,200,2.3,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,6.2,69,100000,40,716,337,18,64,16,1946,0,1755,68,200,3.4,9,9,16.1,6096,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,6.6,70,100000,293,1392,338,108,127,81,11874,4438,8959,373,180,1.7,9,9,16.1,5298,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,5.7,61,100000,552,1392,343,262,240,167,29155,17080,18645,843,150,3.8,9,9,16.1,1043,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.1,64,100000,767,1392,352,361,203,249,40559,16992,28135,1346,220,5.7,10,10,16.0,1093,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,5.6,60,100000,922,1392,343,488,294,293,55573,25365,33593,1649,220,6.1,9,9,16.1,1173,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,5.5,61,100000,1006,1392,342,539,299,323,61758,26221,37212,1847,220,5.4,9,9,16.1,1927,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,4.4,55,99900,1015,1392,342,606,438,286,70184,36638,33351,1640,240,7.6,9,9,16.1,1541,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,4.3,57,99900,946,1392,349,512,317,297,58596,27487,34136,1679,260,7.7,10,10,16.1,1516,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,4.7,65,99900,806,1392,332,442,347,241,50189,28560,27478,1316,250,5.5,9,9,16.1,919,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,3.9,59,99900,603,1392,327,338,405,163,38193,28910,18457,838,270,7.7,8,8,16.0,1989,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,3.9,59,99800,352,1392,327,170,291,96,18818,13530,10705,453,280,8.5,8,8,16.0,3360,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,3.9,59,99800,79,1017,327,36,145,28,3877,0,2994,118,280,9.4,8,8,16.1,4572,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,4.0,62,99900,0,0,313,0,0,0,0,0,0,0,280,10.5,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,4.4,65,99900,0,0,312,0,0,0,0,0,0,0,270,12.2,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,4.3,64,99900,0,0,324,0,0,0,0,0,0,0,260,10.7,8,8,16.1,1676,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,3.0,60,100000,0,0,307,0,0,0,0,0,0,0,270,9.7,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,1.0,54,100100,0,0,300,0,0,0,0,0,0,0,280,9.2,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,0.5,52,100100,0,0,304,0,0,0,0,0,0,0,280,8.7,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,-0.7,50,100200,0,0,300,0,0,0,0,0,0,0,290,7.5,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,-1.0,52,100400,0,0,295,0,0,0,0,0,0,0,280,2.1,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,-0.7,55,100400,0,0,292,0,0,0,0,0,0,0,10,2.2,4,4,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,-1.1,53,100500,0,0,289,0,0,0,0,0,0,0,330,2.6,3,3,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.7,-0.5,60,100700,0,0,289,0,0,0,0,0,0,0,50,0.2,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.7,0.1,63,100800,0,0,290,0,0,0,0,0,0,0,50,1.6,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.0,1.2,67,100900,43,743,292,20,267,12,2234,0,1317,50,50,2.3,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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.1,1.7,60,101000,299,1392,300,176,534,62,19960,15957,6998,285,70,3.7,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,1.6,54,101100,558,1392,304,401,795,82,47405,43615,9753,417,90,4.0,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,1.1,49,101100,773,1392,308,592,889,98,71781,55314,11931,531,90,3.1,3,3,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,-0.2,40,101200,928,1392,319,667,759,161,79888,54069,19324,905,150,4.0,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,2.7,47,101200,1012,1392,324,749,811,159,90826,56206,19377,911,220,3.6,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,2.2,45,101200,1020,1392,343,633,496,269,73843,40839,31575,1544,200,3.8,9,9,16.1,1513,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,2.3,46,101100,952,1392,335,605,541,235,70604,43027,27585,1332,220,5.7,8,8,16.1,1433,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,2.7,51,101200,811,1392,317,586,776,133,69835,52109,15962,731,250,5.6,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,2.2,49,101200,608,1392,314,426,743,101,50010,44580,11943,523,260,4.6,3,3,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,1.9,49,101200,357,1392,312,216,553,74,24468,22229,8397,348,250,4.6,3,3,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,1.8,50,101200,82,1036,310,45,277,29,4891,0,3133,123,250,4.4,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,2.8,55,101200,0,0,306,0,0,0,0,0,0,0,260,3.2,2,2,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,2.8,57,101200,0,0,294,0,0,0,0,0,0,0,270,3.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,2.9,57,101300,0,0,307,0,0,0,0,0,0,0,260,2.5,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,3.8,61,101300,0,0,308,0,0,0,0,0,0,0,270,2.1,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,2.8,59,101300,0,0,305,0,0,0,0,0,0,0,100,2.0,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,2.8,59,101300,0,0,309,0,0,0,0,0,0,0,120,1.3,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,2,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.9,2.9,62,101300,0,0,325,0,0,0,0,0,0,0,40,0.3,9,9,16.1,6096,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,8.8,3.2,68,101300,0,0,320,0,0,0,0,0,0,0,40,2.3,9,9,16.1,6096,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,8.3,2.8,69,101200,0,0,317,0,0,0,0,0,0,0,80,0.2,9,9,16.1,6096,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,8.3,2.8,69,101200,0,0,311,0,0,0,0,0,0,0,80,2.1,8,8,16.0,6096,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,7.3,2.2,70,101200,0,0,295,0,0,0,0,0,0,0,90,1.6,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,7.9,2.3,68,101200,0,0,297,0,0,0,0,0,0,0,50,2.1,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,8.5,2.8,68,101300,46,771,300,23,269,14,2541,0,1557,59,50,2.1,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,10.1,2.9,61,101400,305,1391,305,181,539,63,20465,16480,7116,290,60,2.0,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,11.3,3.3,58,101400,564,1391,308,394,744,92,46212,42130,10856,469,100,1.3,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,12.8,3.3,53,101400,779,1391,315,583,846,109,70211,53525,13202,594,230,0.0,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,12.9,4.0,55,101400,934,1391,321,642,678,187,76028,49573,22276,1057,230,2.8,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,13.4,4.4,55,101300,1018,1391,324,733,757,178,88109,53667,21560,1023,260,4.8,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,14.0,4.7,54,101300,1026,1391,327,767,831,154,93347,56359,18867,886,270,6.8,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,14.4,6.8,60,101200,957,1391,331,733,881,127,89615,56512,15596,721,260,7.1,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,14.3,7.9,66,101200,816,1391,351,496,483,212,56912,36894,24491,1164,250,6.9,9,9,16.1,1509,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,13.9,8.3,69,101100,613,1391,342,362,474,154,41123,32057,17525,794,260,8.2,8,8,16.0,1398,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,13.9,8.6,70,101100,361,1391,343,177,304,98,19600,13866,10904,464,250,7.4,8,8,16.0,1367,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,13.8,8.8,72,101100,86,1056,350,32,298,14,3720,0,1626,61,250,6.8,9,9,16.1,1341,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,13.3,8.4,72,101100,0,0,347,0,0,0,0,0,0,0,250,7.6,9,9,16.1,1326,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,13.3,8.8,74,101100,0,0,340,0,0,0,0,0,0,0,280,6.9,8,8,16.1,1219,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,13.2,8.4,73,101100,0,0,325,0,0,0,0,0,0,0,270,8.1,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,12.8,9.0,78,101100,0,0,321,0,0,0,0,0,0,0,280,7.1,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,12.8,9.4,80,101100,0,0,326,0,0,0,0,0,0,0,270,6.7,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,2,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,12.7,9.5,81,101000,0,0,345,0,0,0,0,0,0,0,280,6.5,9,9,16.1,1172,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.7,85,101000,0,0,336,0,0,0,0,0,0,0,270,4.7,8,8,16.1,1067,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,7.2,77,100900,0,0,316,0,0,0,0,0,0,0,270,5.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,7.1,76,100900,0,0,316,0,0,0,0,0,0,0,270,3.7,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,6.1,71,100800,0,0,315,0,0,0,0,0,0,0,300,4.1,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,6.1,69,100800,0,0,336,0,0,0,0,0,0,0,290,3.9,9,9,16.1,772,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,6.2,71,100900,0,0,327,0,0,0,0,0,0,0,290,2.4,8,8,16.1,853,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,6.8,74,100900,50,799,317,6,1,6,668,66,1024,26,320,0.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,7.3,72,101000,311,1391,341,31,2,31,3374,181,4919,125,100,2.3,9,9,16.1,1007,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,7.7,71,101000,571,1391,337,74,2,73,7921,165,11010,286,100,0.0,8,8,14.7,4572,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.2,67,101000,785,1391,326,233,28,218,26624,2154,24977,1186,260,0.0,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,6.8,56,100900,940,1391,348,264,16,253,27331,1636,33520,1027,260,0.5,8,8,16.1,1067,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.7,62,100900,1024,1391,335,467,154,354,53219,13793,40577,2031,260,4.7,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.1,59,100800,1032,1391,334,553,296,333,63356,25844,38429,1914,250,5.3,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.0,55,100800,963,1391,333,535,347,295,61352,29570,34044,1676,270,6.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,5.6,54,100700,821,1391,332,459,369,241,52292,30120,27615,1325,270,5.7,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,5.6,54,100600,618,1391,332,311,284,185,34894,21349,20845,958,270,5.7,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,5.0,52,100600,366,1391,330,155,190,105,17126,9474,11665,498,270,4.6,5,5,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,4.6,52,100600,89,1075,328,22,86,17,2539,0,1919,72,270,3.5,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,6.2,63,100600,0,0,322,0,0,0,0,0,0,0,250,2.5,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.1,68,100600,0,0,306,0,0,0,0,0,0,0,260,2.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.8,67,100600,0,0,305,0,0,0,0,0,0,0,170,2.9,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,7.4,69,100600,0,0,306,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,4.1,52,100600,0,0,321,0,0,0,0,0,0,0,300,2.3,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,2.5,46,100600,0,0,320,0,0,0,0,0,0,0,310,3.9,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,5.1,63,100700,0,0,313,0,0,0,0,0,0,0,60,2.2,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,6.1,74,100700,0,0,308,0,0,0,0,0,0,0,100,2.5,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,6.1,77,100700,0,0,306,0,0,0,0,0,0,0,50,2.2,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,6.1,77,100700,0,0,306,0,0,0,0,0,0,0,50,3.1,3,3,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.0,77,100700,0,0,302,0,0,0,0,0,0,0,50,2.0,2,2,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.6,5.6,76,100800,0,0,291,0,0,0,0,0,0,0,50,1.6,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,5.6,71,100800,53,828,313,8,10,8,978,0,933,34,60,2.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,5.6,65,100900,317,1390,319,70,20,65,7875,642,7376,302,100,1.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,5.5,56,100900,577,1390,326,182,49,162,20431,3441,18236,825,150,2.6,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,4.4,47,101000,791,1390,329,319,107,258,35980,9107,29291,1408,200,2.5,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,2.4,34,101000,946,1390,326,698,807,149,84242,55418,18026,841,200,1.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,-0.3,26,101000,1030,1390,330,833,986,102,104718,62657,12908,588,230,2.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,1.9,29,100900,1037,1390,334,908,1142,56,119219,65639,7350,321,260,4.7,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,-0.6,24,100900,968,1390,332,830,1102,63,107138,64894,8122,357,230,5.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,-0.3,25,100900,826,1390,331,661,969,85,81768,59182,10520,466,240,5.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,2.2,34,100900,622,1390,324,422,685,115,49215,43199,13514,598,240,5.7,0,0,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,1.0,32,100800,370,1390,323,224,554,77,25480,23632,8756,364,220,5.7,0,0,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,0.3,30,100800,92,1095,322,42,435,13,4851,0,1497,55,220,5.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,2.9,39,100900,0,0,330,0,0,0,0,0,0,0,190,3.2,2,2,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,4.0,43,100900,0,0,319,0,0,0,0,0,0,0,140,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,4.4,47,101000,0,0,315,0,0,0,0,0,0,0,140,2.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,4.3,47,101100,0,0,314,0,0,0,0,0,0,0,120,2.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,3.5,46,101200,0,0,312,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,0.5,36,101300,0,0,312,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.7,-0.5,38,101200,0,0,302,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,-3.9,32,101200,0,0,290,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.3,-4.4,34,101100,0,0,283,0,0,0,0,0,0,0,110,1.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,-7.8,23,101100,0,0,288,0,0,0,0,0,0,0,80,1.5,0,0,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,-8.2,24,101200,0,0,282,0,0,0,0,0,0,0,60,0.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.9,-8.3,24,101200,0,0,282,0,0,0,0,0,0,0,60,1.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,-12.0,15,101200,57,856,289,29,265,18,3196,0,2006,77,20,0.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,-10.7,14,101300,324,1390,300,192,531,68,21730,20077,7731,317,20,1.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,-11.8,11,101300,583,1390,312,399,705,103,46721,44367,12120,528,40,3.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,-12.2,9,101300,798,1390,320,583,799,125,69937,55230,14998,680,50,2.1,0,0,16.0,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,-12.6,8,101300,952,1390,324,719,853,135,87811,59866,16569,766,260,0.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,-3.5,18,101300,1036,1390,331,794,879,139,97768,60262,17174,799,260,5.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,-9.4,11,101200,1043,1390,326,801,881,139,98741,61382,17242,801,300,4.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,-12.5,9,101100,973,1390,322,738,859,136,90324,60343,16747,776,270,4.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,-6.2,14,101100,831,1390,329,612,811,127,73672,55639,15367,701,270,5.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,-6.7,15,101000,627,1390,324,436,727,108,51250,46542,12753,561,270,5.7,0,0,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,-3.5,21,101000,374,1390,323,230,573,76,26243,25174,8660,360,270,5.4,0,0,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,-0.3,29,101000,108,1260,321,51,395,21,5823,0,2344,88,270,4.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,1.9,36,101000,0,0,319,0,0,0,0,0,0,0,240,3.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,3.5,42,101000,0,0,318,0,0,0,0,0,0,0,240,3.4,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,4.9,48,101000,0,0,317,0,0,0,0,0,0,0,300,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,4.3,47,101000,0,0,315,0,0,0,0,0,0,0,110,0.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,3.3,43,101000,0,0,316,0,0,0,0,0,0,0,110,2.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,3.0,43,101000,0,0,313,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,0.3,36,100900,0,0,311,0,0,0,0,0,0,0,100,1.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,-5.5,23,100800,0,0,303,0,0,0,0,0,0,0,10,1.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,-4.5,27,100800,0,0,298,0,0,0,0,0,0,0,40,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,-5.0,28,100700,0,0,293,0,0,0,0,0,0,0,40,1.5,0,0,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,-5.7,25,100700,0,0,294,0,0,0,0,0,0,0,50,0.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,-6.2,24,100700,0,0,294,0,0,0,0,0,0,0,50,2.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,-6.6,21,100700,61,885,312,14,35,13,1643,0,1472,55,70,0.2,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-6.2,18,100800,330,1389,328,104,70,87,11551,3113,9740,407,70,2.0,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,-6.8,13,100800,589,1389,347,245,145,184,27440,11370,20669,943,40,1.7,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,-7.2,11,100800,804,1389,358,404,254,257,45790,22371,29256,1404,40,3.1,3,3,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.0,-9.0,8,100700,958,1389,370,524,327,299,60200,29408,34494,1694,30,2.3,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,29.5,-9.5,7,100600,1041,1389,377,593,369,316,68641,33157,36826,1819,30,0.0,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,29.5,-10.1,7,100500,1048,1389,376,632,450,293,73751,39201,34343,1686,260,0.7,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.9,-6.4,11,100500,978,1389,369,484,222,328,55380,20529,37753,1869,260,5.8,5,5,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,-3.7,15,100400,836,1389,366,358,132,278,40495,11826,31678,1535,270,6.2,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,-2.2,17,100400,631,1389,381,174,26,163,19849,1893,18597,846,270,6.2,8,8,16.0,7620,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,-2.2,18,100400,379,1389,378,102,37,92,11511,1841,10400,439,270,5.6,8,8,16.0,7620,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,-2.1,18,100400,111,1272,383,13,7,12,1536,0,1474,53,270,5.2,9,9,16.1,7620,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,-0.5,23,100400,0,0,376,0,0,0,0,0,0,0,270,6.0,9,9,16.1,6908,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,4.7,41,100300,0,0,353,0,0,0,0,0,0,0,270,3.9,7,7,16.1,1524,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,6.7,50,100300,0,0,325,0,0,0,0,0,0,0,250,2.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,6.6,48,100400,0,0,328,0,0,0,0,0,0,0,140,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,5.8,44,100400,0,0,346,0,0,0,0,0,0,0,140,1.5,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,4.0,38,100400,0,0,342,0,0,0,0,0,0,0,120,1.3,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,4.4,43,100300,0,0,341,0,0,0,0,0,0,0,60,0.2,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,-0.2,31,100300,0,0,336,0,0,0,0,0,0,0,60,1.6,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,-1.8,27,100300,0,0,354,0,0,0,0,0,0,0,60,2.1,9,9,16.1,7620,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,-2.2,25,100300,0,0,349,0,0,0,0,0,0,0,80,2.1,8,8,16.0,7620,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,-1.0,31,100300,0,0,349,0,0,0,0,0,0,0,100,1.6,9,9,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,-0.7,33,100300,0,0,348,0,0,0,0,0,0,0,60,2.1,9,9,16.1,7606,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,-1.0,31,100300,65,914,350,4,1,4,441,56,685,17,60,2.1,9,9,16.1,7265,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,0.0,30,100400,336,1388,360,33,2,33,3552,156,5215,132,110,1.9,9,9,16.1,5486,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,0.0,26,100500,596,1388,370,80,2,79,8420,164,11758,307,110,0.0,9,9,16.1,5486,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,0.0,25,100500,810,1388,367,194,10,188,20043,960,25913,736,110,0.0,8,8,16.0,5486,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.6,-0.3,21,100500,964,1388,388,266,14,257,27279,1434,33733,1053,270,2.0,9,9,16.1,5486,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,-1.6,17,100400,1047,1388,394,365,42,334,42125,3801,38696,1922,270,1.8,9,9,16.1,5486,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,7.4,41,100300,1053,1388,385,364,40,334,41921,3465,38671,1926,270,4.2,9,9,16.1,5486,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.9,8.7,46,100300,983,1388,386,348,49,314,39804,4159,36089,1789,260,4.5,9,9,16.1,5486,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,7.4,46,100200,841,1388,376,237,20,225,24624,1959,30532,885,270,4.2,9,9,16.1,5557,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,8.9,54,100200,636,1388,365,215,60,187,24097,4403,21134,976,270,4.6,8,8,16.0,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,7.7,47,100200,383,1388,358,136,100,108,15062,5102,12044,517,250,3.0,6,6,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,7.0,44,100200,114,1287,356,34,94,26,3784,0,2925,112,250,1.7,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,9.1,62,100200,0,0,343,0,0,0,0,0,0,0,260,3.4,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,10.6,78,100200,0,0,355,0,0,0,0,0,0,0,230,2.2,9,9,16.1,6273,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.6,81,100200,0,0,352,0,0,0,0,0,0,0,260,3.0,9,9,16.1,7436,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,10.7,85,100300,0,0,349,0,0,0,0,0,0,0,260,2.2,9,9,15.1,4204,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,11.0,94,100300,0,0,353,0,0,0,0,0,0,0,260,2.6,10,10,0.4,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,10.5,96,100200,0,0,348,0,0,0,0,0,0,0,230,2.1,10,10,0.4,61,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.9,10.0,94,100200,0,0,347,0,0,0,0,0,0,0,260,1.8,10,10,0.3,61,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,10.5,99,100200,0,0,347,0,0,0,0,0,0,0,50,0.2,10,10,1.2,61,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,10.0,93,100100,0,0,331,0,0,0,0,0,0,0,50,1.9,8,8,1.4,68,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,10.0,93,100100,0,0,301,0,0,0,0,0,0,0,290,0.0,0,0,3.2,240,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.3,85,100100,0,0,350,0,0,0,0,0,0,0,290,2.0,10,10,4.8,252,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,9.3,85,100100,0,0,351,0,0,0,0,0,0,0,330,0.4,10,10,5.0,312,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100100,69,943,351,4,1,4,448,57,687,17,130,3.2,10,10,7.4,380,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.3,77,100100,343,1388,352,34,2,34,3704,159,5372,136,250,0.4,10,10,13.7,502,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,8.4,75,100100,602,1388,354,60,1,60,6483,68,9040,232,250,3.0,10,10,7.9,592,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.4,80,100100,816,1388,356,81,0,81,8714,30,11678,316,270,2.4,10,10,6.0,464,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.7,76,100200,970,1388,345,196,3,194,20556,294,26004,801,270,5.0,9,9,9.8,525,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,7.1,64,100100,1053,1388,348,314,18,300,32375,1864,38528,1309,270,7.6,9,9,13.0,702,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,6.8,62,100000,1059,1388,348,398,60,352,45635,5352,40618,2031,230,4.2,9,9,16.1,792,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,7.1,65,99900,988,1388,347,431,129,340,49058,11499,38875,1938,230,5.3,9,9,16.1,869,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,6.4,59,99900,845,1388,342,397,191,280,44846,16498,31858,1551,260,8.3,8,8,16.1,1036,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,3.9,53,99800,640,1388,318,343,344,185,38681,25976,20901,963,240,8.7,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,4.8,58,99700,387,1388,317,182,261,109,20176,13716,12162,522,240,8.8,3,3,15.2,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,5.5,61,99700,118,1302,317,39,129,28,4329,0,3123,121,240,9.0,3,3,14.5,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,5.1,59,99600,0,0,317,0,0,0,0,0,0,0,270,10.0,3,3,14.7,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,6.0,62,99700,0,0,320,0,0,0,0,0,0,0,320,3.5,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,3.6,56,99700,0,0,313,0,0,0,0,0,0,0,40,3.5,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,-7.2,23,99800,0,0,302,0,0,0,0,0,0,0,10,6.1,2,2,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,-10.7,17,99900,0,0,287,0,0,0,0,0,0,0,360,5.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,-11.6,16,99900,0,0,298,0,0,0,0,0,0,0,360,5.7,3,3,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,-10.7,18,100000,0,0,293,0,0,0,0,0,0,0,20,2.3,2,2,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,-11.1,19,100000,0,0,277,0,0,0,0,0,0,0,10,3.7,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,-11.1,20,100000,0,0,275,0,0,0,0,0,0,0,20,4.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,-11.1,20,100100,0,0,275,0,0,0,0,0,0,0,20,3.4,0,0,16.0,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,-11.7,19,100100,0,0,277,0,0,0,0,0,0,0,20,5.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,-11.6,19,100200,0,0,291,0,0,0,0,0,0,0,10,6.0,5,5,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,-11.4,19,100300,74,972,290,17,15,16,1875,0,1787,67,360,4.0,4,4,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,-13.4,15,100400,349,1387,287,88,31,80,9939,1381,9097,378,340,4.1,2,2,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,-14.4,13,100400,608,1387,281,317,317,178,35697,24835,20115,917,330,7.3,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,-17.8,9,100500,822,1387,285,509,509,207,58961,41573,24103,1138,330,4.6,0,0,16.0,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,-18.9,8,100500,976,1387,284,623,545,240,73148,45476,28317,1367,330,2.2,0,0,16.1,77777,9,999999999,20,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,-18.3,8,100600,1058,1387,290,764,761,184,92640,57486,22413,1062,190,2.9,0,0,16.1,77777,9,999999999,30,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,-13.8,11,100500,1064,1387,296,819,885,140,101390,62106,17399,809,190,5.1,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,-11.9,13,100500,993,1387,296,815,1012,90,103111,65238,11418,514,210,5.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,-1.2,33,100600,850,1387,306,666,926,98,81900,58730,12131,545,240,8.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,-1.7,34,100600,645,1387,301,450,728,111,52873,46464,13137,581,270,9.8,0,0,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,-1.4,35,100600,392,1387,300,249,616,75,28502,27430,8577,357,270,9.5,0,0,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,-0.7,38,100700,121,1314,299,63,461,23,7132,0,2582,98,270,9.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,2.2,51,100700,0,0,298,0,0,0,0,0,0,0,270,6.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,2.3,53,100800,0,0,296,0,0,0,0,0,0,0,250,5.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,2.9,57,100800,0,0,295,0,0,0,0,0,0,0,260,6.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,4.0,59,100800,0,0,298,0,0,0,0,0,0,0,260,5.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,4.3,61,100900,0,0,298,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,3.8,61,100900,0,0,295,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.3,3.2,62,100900,0,0,291,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.7,2.2,68,100900,0,0,280,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.1,2.1,71,100900,0,0,277,0,0,0,0,0,0,0,80,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.7,1.7,71,100900,0,0,275,0,0,0,0,0,0,0,70,0.0,0,0,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.1,1.0,65,101000,0,0,276,0,0,0,0,0,0,0,70,2.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.4,0.5,66,101100,0,0,273,0,0,0,0,0,0,0,80,1.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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.2,-0.8,50,101200,78,1002,283,43,231,30,4589,0,3197,126,100,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,-2.7,36,101200,356,1386,291,201,462,83,22632,20519,9330,390,330,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,-6.6,20,101300,615,1386,304,420,696,111,49157,44860,13063,575,330,1.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-10.6,12,101300,828,1386,310,612,815,125,73757,56245,15132,689,260,0.0,0,0,16.0,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,-12.2,10,101300,981,1386,316,780,950,108,97295,63303,13479,614,260,3.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,-13.9,8,101200,1064,1386,319,843,944,119,105604,64018,14989,689,250,3.8,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,-13.6,9,101200,1069,1386,311,812,857,151,99953,61050,18649,871,280,5.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,-10.6,11,101100,998,1386,316,774,900,126,95585,61670,15614,720,270,4.3,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-2.2,25,101100,855,1386,319,602,723,156,71521,51823,18597,864,260,5.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-2.2,25,101100,649,1386,319,459,751,107,54179,47547,12701,561,270,6.2,0,0,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,-2.8,23,101100,396,1386,326,183,246,113,20340,13939,12582,541,290,6.2,1,1,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,-3.1,22,101100,124,1323,334,43,148,30,4829,0,3370,130,290,6.3,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,-1.6,28,101100,0,0,328,0,0,0,0,0,0,0,280,6.6,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,-0.6,31,101100,0,0,324,0,0,0,0,0,0,0,280,6.0,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,3.5,46,101100,0,0,311,0,0,0,0,0,0,0,260,3.6,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,4.9,51,101200,0,0,312,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,3.8,49,101200,0,0,309,0,0,0,0,0,0,0,120,2.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,2.8,49,101200,0,0,303,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,-1.0,37,101200,0,0,299,0,0,0,0,0,0,0,120,1.3,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,-3.7,31,101200,0,0,295,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,-2.3,39,101100,0,0,289,0,0,0,0,0,0,0,80,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,-2.8,37,101100,0,0,288,0,0,0,0,0,0,0,80,0.0,0,0,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,-4.5,31,101100,0,0,289,0,0,0,0,0,0,0,80,0.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,-5.7,28,101100,0,0,288,0,0,0,0,0,0,0,80,1.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,-6.4,25,101100,83,1032,292,40,533,8,4794,0,950,34,50,0.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,-8.4,15,101200,362,1386,312,222,572,73,25363,24587,8328,344,50,2.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,-9.0,12,101200,621,1386,325,435,736,105,51204,46913,12372,543,70,2.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,-9.4,10,101200,834,1386,336,621,826,123,74963,56650,14923,679,70,1.9,0,0,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.3,-12.8,6,101100,987,1386,342,757,879,131,93192,61118,16216,750,270,0.2,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.5,-12.3,6,101000,1069,1386,348,832,904,134,103333,62608,16687,773,270,2.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.4,-8.8,9,100900,1074,1386,343,836,906,134,103956,62242,16702,774,270,6.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,-8.3,11,100800,1003,1386,337,772,884,132,95066,60885,16311,755,270,4.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,-11.2,9,100700,859,1386,328,643,835,125,77876,57655,15172,693,260,6.3,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,-3.9,16,100600,653,1386,338,462,752,108,54629,48044,12799,565,270,7.2,0,0,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,-1.5,22,100600,400,1386,334,252,602,78,28842,27852,8971,375,270,8.8,0,0,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,0.6,28,100600,127,1333,330,61,372,27,6878,0,3081,118,270,10.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,0.6,28,100500,0,0,328,0,0,0,0,0,0,0,260,7.6,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,1.0,29,100500,0,0,329,0,0,0,0,0,0,0,290,6.3,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,3.3,39,100500,0,0,321,0,0,0,0,0,0,0,260,3.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,-0.9,28,100500,0,0,320,0,0,0,0,0,0,0,260,3.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,0.8,32,100500,0,0,320,0,0,0,0,0,0,0,250,2.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,2.3,38,100500,0,0,319,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,3.2,44,100400,0,0,313,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,2.7,47,100400,0,0,305,0,0,0,0,0,0,0,130,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.6,2.1,49,100300,0,0,300,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,1.7,53,100300,0,0,293,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,-1.8,40,100300,0,0,289,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,-2.4,38,100300,0,0,290,0,0,0,0,0,0,0,80,1.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,0.6,43,100400,88,1061,300,49,223,34,5199,0,3696,147,90,2.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,0.9,39,100400,368,1385,307,206,446,88,23184,20572,9889,416,100,3.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,3.3,40,100500,627,1385,334,230,84,192,25777,6499,21610,997,100,4.2,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,3.3,36,100500,840,1385,343,356,126,280,40267,10993,31835,1547,120,4.6,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,2.1,28,100400,993,1385,358,440,137,342,50168,12512,39227,1953,140,4.4,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.5,2.2,28,100400,1075,1385,359,517,188,371,59272,17304,42858,2147,140,3.4,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,6.5,42,100300,1080,1385,356,537,216,369,61605,19483,42552,2133,260,5.8,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,9.4,59,100300,1008,1385,349,480,185,345,54626,16311,39541,1977,260,6.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,9.4,65,100300,864,1385,342,372,132,290,41973,11262,32880,1610,270,4.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,9.4,65,100300,658,1385,354,209,44,188,23536,3266,21259,985,240,3.6,8,8,16.0,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,8.8,64,100300,404,1385,351,114,42,102,12775,2079,11450,490,260,3.6,8,8,16.0,7620,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.2,64,100300,130,1346,355,20,11,19,2263,0,2149,80,260,3.6,9,9,16.1,7620,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,7.9,66,100300,0,0,351,0,0,0,0,0,0,0,270,3.5,9,9,16.1,7620,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,8.4,72,100300,0,0,340,0,0,0,0,0,0,0,240,2.5,8,8,16.1,7620,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.4,78,100400,0,0,328,0,0,0,0,0,0,0,250,2.1,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.3,79,100400,0,0,326,0,0,0,0,0,0,0,160,2.1,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.3,75,100400,0,0,325,0,0,0,0,0,0,0,230,1.9,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.4,78,100400,0,0,342,0,0,0,0,0,0,0,100,0.2,9,9,16.1,6748,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,9.0,80,100400,0,0,343,0,0,0,0,0,0,0,100,0.3,9,9,15.5,396,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.0,77,100400,0,0,356,0,0,0,0,0,0,0,120,2.6,10,10,11.3,579,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.2,82,100400,0,0,352,0,0,0,0,0,0,0,80,2.1,10,10,11.3,575,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.8,75,100400,0,0,351,0,0,0,0,0,0,0,150,2.1,10,10,11.0,559,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.2,69,100500,0,0,353,0,0,0,0,0,0,0,100,4.0,10,10,16.1,640,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.2,69,100500,0,0,353,0,0,0,0,0,0,0,100,3.6,10,10,16.1,647,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.1,68,100500,93,1091,353,8,1,8,935,52,1427,36,150,3.7,10,10,16.1,701,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,6.7,66,100600,375,1384,353,37,2,37,4015,144,5813,147,110,4.2,10,10,16.1,701,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,6.7,64,100600,634,1384,355,63,1,63,6779,59,9428,243,120,4.7,10,10,16.1,708,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,6.7,62,100700,846,1384,358,92,0,91,9768,30,13039,360,140,5.1,10,10,16.0,783,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,6.1,55,100600,999,1384,346,265,11,258,27426,1097,33678,1082,150,4.4,8,8,16.1,945,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,6.0,53,100600,1080,1384,334,505,165,376,57811,15052,43327,2175,170,3.0,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,5.7,50,100500,1085,1384,332,615,359,334,71130,31002,38867,1933,220,2.4,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,6.7,55,100400,1012,1384,333,616,463,277,71512,37716,32339,1588,220,4.8,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,6.7,60,100400,868,1384,325,487,367,257,55665,30173,29555,1432,240,6.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,6.7,62,100400,662,1384,329,294,174,211,32905,13746,23711,1108,250,4.6,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,6.7,62,100400,408,1384,329,156,125,119,17234,6983,13197,572,240,4.3,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,6.7,62,100400,133,1358,328,41,88,32,4497,0,3568,139,240,4.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,6.8,67,100400,0,0,323,0,0,0,0,0,0,0,260,3.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.8,75,100400,0,0,322,0,0,0,0,0,0,0,270,3.0,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.7,74,100500,0,0,319,0,0,0,0,0,0,0,240,2.0,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.2,72,100500,0,0,316,0,0,0,0,0,0,0,190,1.3,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,7.3,73,100500,0,0,316,0,0,0,0,0,0,0,190,0.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,7.8,77,100500,0,0,320,0,0,0,0,0,0,0,110,0.0,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.6,74,100500,0,0,341,0,0,0,0,0,0,0,110,0.3,9,9,16.1,671,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,6.1,66,100500,0,0,349,0,0,0,0,0,0,0,110,2.5,10,10,16.1,678,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,6.1,66,100500,0,0,349,0,0,0,0,0,0,0,140,1.5,10,10,16.1,732,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,6.1,66,100500,0,0,349,0,0,0,0,0,0,0,70,1.5,10,10,16.0,732,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,6.1,66,100500,0,0,349,0,0,0,0,0,0,0,70,2.5,10,10,16.1,732,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,6.1,66,100500,0,0,349,0,0,0,0,0,0,0,130,1.3,10,10,16.1,732,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.2,64,100600,111,1267,352,12,1,12,1311,53,1997,51,130,0.4,10,10,16.1,732,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,6.7,66,100600,381,1383,353,38,2,38,4121,145,5960,151,130,2.7,10,10,16.1,732,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,6.8,64,100600,640,1383,355,63,1,63,6781,59,9419,243,130,0.0,10,10,16.1,732,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,7.2,64,100700,852,1383,358,85,0,85,9093,20,12145,335,260,0.0,10,10,16.0,746,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,6.8,60,100600,1004,1383,339,293,17,280,30198,1751,36388,1181,260,3.6,7,7,16.1,853,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,7.2,58,100600,1085,1383,336,484,133,379,55409,12106,43709,2196,250,5.6,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.1,60,100500,1090,1383,334,550,227,370,63068,20389,42785,2145,240,4.6,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,6.8,60,100500,1017,1383,331,554,316,322,63646,27303,37234,1850,250,4.7,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.1,60,100400,873,1383,331,483,350,263,55163,28948,30140,1464,250,5.1,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,6.7,62,100400,666,1383,323,343,295,201,38521,22732,22665,1055,260,5.1,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,7.0,64,100400,412,1383,322,187,227,119,20677,12659,13257,575,270,5.7,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,7.3,68,100400,136,1370,321,45,114,34,5011,0,3784,148,270,6.1,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,7.9,73,100400,0,0,322,0,0,0,0,0,0,0,260,5.1,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.4,78,100400,0,0,305,0,0,0,0,0,0,0,280,5.0,0,0,15.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.9,81,100500,0,0,320,0,0,0,0,0,0,0,260,4.5,4,4,14.5,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.9,83,100600,0,0,316,0,0,0,0,0,0,0,250,3.0,3,3,14.5,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,8.9,82,100600,0,0,340,0,0,0,0,0,0,0,260,2.5,9,9,14.7,274,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100600,0,0,342,0,0,0,0,0,0,0,250,2.1,9,9,16.1,300,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.8,80,100600,0,0,352,0,0,0,0,0,0,0,230,1.5,10,10,16.1,457,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100600,0,0,351,0,0,0,0,0,0,0,200,1.6,10,10,16.1,457,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100500,0,0,351,0,0,0,0,0,0,0,150,2.0,10,10,16.1,460,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100500,0,0,351,0,0,0,0,0,0,0,170,1.5,10,10,16.0,488,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,7.8,74,100500,0,0,351,0,0,0,0,0,0,0,170,0.0,10,10,16.1,491,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,7.8,72,100600,0,0,353,0,0,0,0,0,0,0,270,0.2,10,10,16.1,525,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,7.8,74,100600,116,1289,351,13,1,13,1390,53,2111,54,270,1.5,10,10,15.9,586,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.8,72,100700,388,1383,354,38,1,38,4131,136,5961,151,240,1.6,10,10,14.7,640,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,7.7,71,100700,646,1383,354,64,1,64,6898,59,9554,247,240,2.3,10,10,15.9,647,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.2,67,100700,858,1383,355,91,0,91,9695,30,12905,358,260,3.6,10,10,14.0,708,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,7.4,64,100700,1010,1383,342,248,7,243,25737,707,31813,1029,260,2.3,8,8,16.1,762,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,7.2,59,100700,1091,1383,335,484,129,382,55396,11751,43990,2210,250,3.7,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,7.2,58,100600,1095,1383,334,603,322,349,69630,28019,40483,2020,250,4.3,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.3,60,100600,1022,1383,329,626,473,276,72824,38260,32324,1587,260,6.3,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.9,63,100600,877,1383,329,515,424,246,59085,33905,28356,1371,270,7.1,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.3,67,100600,670,1383,333,316,216,212,35405,16887,23800,1114,270,6.7,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,8.0,67,100600,416,1383,331,171,161,122,18888,9077,13596,592,260,6.7,5,5,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.9,68,100600,139,1382,329,42,83,34,4700,0,3779,147,260,6.8,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.2,74,100600,0,0,322,0,0,0,0,0,0,0,270,7.1,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.9,75,100600,0,0,317,0,0,0,0,0,0,0,260,6.6,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100600,0,0,314,0,0,0,0,0,0,0,260,5.4,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.4,78,100600,0,0,305,0,0,0,0,0,0,0,250,3.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.8,80,100700,0,0,318,0,0,0,0,0,0,0,280,4.5,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100700,0,0,318,0,0,0,0,0,0,0,260,4.0,3,3,15.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.3,78,100700,0,0,317,0,0,0,0,0,0,0,250,3.4,3,3,14.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,8.2,82,100700,0,0,313,0,0,0,0,0,0,0,270,1.9,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,7.8,81,100700,0,0,312,0,0,0,0,0,0,0,270,0.0,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,7.8,83,100700,0,0,315,0,0,0,0,0,0,0,50,0.0,5,5,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,7.8,83,100700,0,0,314,0,0,0,0,0,0,0,50,1.6,5,5,15.7,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,7.9,86,100800,0,0,313,0,0,0,0,0,0,0,80,2.2,5,5,12.9,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.8,8.4,85,100800,121,1310,316,37,15,36,4021,0,3889,153,110,2.6,5,5,12.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.9,80,100800,394,1382,324,102,30,93,11424,1402,10491,446,80,2.5,5,5,12.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,8.9,73,100900,652,1382,330,187,29,173,21204,2055,19751,909,80,1.3,5,5,13.3,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,8.9,62,100900,864,1382,341,317,65,277,35987,5450,31560,1540,260,0.0,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,8.9,64,100900,1016,1382,334,439,120,350,50008,10674,40191,2011,260,3.9,3,3,15.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,8.8,64,100800,1096,1382,330,554,228,373,63547,20269,43060,2161,270,6.4,2,2,13.3,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.4,65,100800,1099,1382,317,808,791,179,98239,53820,21870,1038,260,7.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,9.0,67,100800,1026,1382,331,599,402,301,69221,33217,34929,1728,250,6.8,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,9.5,71,100800,881,1382,336,471,306,276,53530,25391,31515,1539,240,7.3,5,5,15.3,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.0,80,100800,674,1382,359,191,27,178,21712,1896,20336,941,260,6.7,10,10,16.0,213,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,10.0,82,100800,420,1382,335,140,74,117,15489,4012,13035,566,260,6.4,7,7,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,10.0,82,100800,143,1382,347,23,11,22,2608,0,2476,93,260,5.7,9,9,16.1,152,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.0,86,100800,0,11,353,0,0,0,0,0,0,0,250,5.5,10,10,15.1,144,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,10.2,90,100800,0,0,352,0,0,0,0,0,0,0,250,4.1,10,10,8.3,102,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,10.9,93,100900,0,0,324,0,0,0,0,0,0,0,250,4.7,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,10.0,89,100900,0,0,351,0,0,0,0,0,0,0,250,4.6,10,10,14.4,143,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,10.0,88,101000,0,0,352,0,0,0,0,0,0,0,270,4.7,10,10,4.7,91,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.0,86,100900,0,0,353,0,0,0,0,0,0,0,270,7.5,10,10,14.7,155,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,10.0,87,100900,0,0,353,0,0,0,0,0,0,0,250,5.2,10,10,14.8,172,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,9.0,88,100900,0,0,346,0,0,0,0,0,0,0,240,1.5,10,10,16.1,152,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.4,86,100800,0,0,350,0,0,0,0,0,0,0,50,1.9,10,10,16.1,183,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.4,86,100800,0,0,350,0,0,0,0,0,0,0,270,0.0,10,10,16.0,183,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.5,86,100900,0,0,350,0,0,0,0,0,0,0,270,1.6,10,10,12.5,183,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,10.0,89,100900,0,0,351,0,0,0,0,0,0,0,120,2.0,10,10,9.7,190,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,10.0,86,100900,126,1327,354,17,1,17,1847,47,2783,72,120,1.5,10,10,10.5,252,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.0,83,100900,401,1381,356,40,1,40,4364,138,6257,158,130,1.5,10,10,14.7,305,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.9,83,100900,659,1381,356,65,0,65,7036,49,9691,251,230,1.7,10,10,15.7,312,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.4,80,100900,870,1381,356,88,0,88,9416,20,12477,347,250,3.1,10,10,12.0,358,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,10.0,80,100900,1021,1381,359,158,1,157,16676,71,21107,672,250,2.7,10,10,13.3,312,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.9,77,100800,1101,1381,352,320,15,308,33107,1481,39095,1417,220,3.8,9,9,16.1,373,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,9.4,74,100700,1104,1381,352,415,57,369,47696,5029,42711,2141,260,5.0,9,9,16.1,419,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,9.3,72,100700,1031,1381,353,444,117,356,50630,10413,40903,2050,250,4.7,9,9,16.1,366,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.9,72,100700,885,1381,343,396,152,298,44739,13066,33953,1669,280,5.0,8,8,16.1,366,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.4,74,100700,678,1381,332,330,240,212,36985,18627,23884,1120,260,3.6,5,5,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,9.1,74,100700,424,1381,330,174,159,125,19218,9048,13884,606,260,3.9,5,5,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.0,76,100600,146,1381,328,46,90,36,5045,0,4010,157,260,4.0,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.5,80,100700,0,23,327,0,0,0,0,0,0,0,230,3.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,10.1,83,100700,0,0,357,0,0,0,0,0,0,0,230,3.1,10,10,16.1,335,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,10.7,85,100700,0,0,359,0,0,0,0,0,0,0,240,2.9,10,10,16.1,324,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,10.6,86,100700,0,0,357,0,0,0,0,0,0,0,250,2.6,10,10,16.1,220,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,10.6,84,100700,0,0,359,0,0,0,0,0,0,0,150,2.5,10,10,16.1,266,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.6,87,100700,0,0,356,0,0,0,0,0,0,0,230,1.6,10,10,16.1,213,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,10.7,90,100700,0,0,355,0,0,0,0,0,0,0,230,1.9,10,10,16.1,209,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.0,87,100600,0,0,359,0,0,0,0,0,0,0,250,0.2,10,10,16.1,186,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.7,87,100600,0,0,357,0,0,0,0,0,0,0,250,2.0,10,10,16.1,213,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100500,0,0,358,0,0,0,0,0,0,0,250,1.3,10,10,16.0,205,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,11.1,92,100500,0,0,355,0,0,0,0,0,0,0,130,0.3,10,10,6.1,152,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,11.1,89,100600,0,0,358,0,0,0,0,0,0,0,150,1.8,10,10,4.4,152,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100600,131,1345,358,16,1,16,1800,48,2707,70,150,0.2,10,10,4.0,427,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100600,407,1381,358,40,1,40,4376,130,6259,158,320,1.5,10,10,4.2,391,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100600,665,1381,358,66,0,66,7161,50,9826,255,270,1.2,10,10,4.8,315,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.1,87,100600,876,1381,360,89,0,89,9589,20,12645,353,220,1.5,10,10,4.8,475,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.1,83,100600,1027,1381,363,170,1,169,17932,92,22557,725,270,1.7,10,10,7.4,497,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.0,78,100500,1106,1381,368,295,9,287,30643,906,36602,1331,250,2.8,10,10,12.9,788,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,10.7,79,100500,1109,1381,365,365,28,342,42207,2384,39822,1985,250,4.5,10,10,12.9,713,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,10.0,75,100400,1035,1381,364,390,62,344,44662,5376,39595,1980,250,4.4,10,10,14.1,449,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.7,81,100400,890,1381,363,306,47,276,34872,3841,31624,1547,270,4.4,10,10,16.1,305,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.1,83,100300,682,1381,363,206,34,189,23316,2492,21499,1001,260,2.6,10,10,16.0,312,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.8,82,100300,428,1381,363,102,21,96,11558,1026,10849,464,270,3.4,10,10,16.0,373,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.6,81,100300,149,1381,362,22,10,21,2594,0,2476,93,270,4.1,10,10,16.1,416,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.7,84,100300,0,36,360,0,0,0,0,0,0,0,270,3.9,10,10,16.1,335,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.1,87,100300,0,0,360,0,0,0,0,0,0,0,260,2.7,10,10,16.1,338,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,11.1,89,100300,0,0,358,0,0,0,0,0,0,0,250,3.8,10,10,16.1,410,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.0,87,100300,0,0,359,0,0,0,0,0,0,0,250,4.0,10,10,15.9,667,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.7,87,100300,0,0,357,0,0,0,0,0,0,0,280,3.5,10,10,14.7,608,9,999999999,200,0.0000,0,88,999.000,3.0,1.0 +2012,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,12.8,10.7,87,100200,0,0,357,0,0,0,0,0,0,0,260,2.9,10,10,14.8,358,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.2,90,100100,0,0,358,0,0,0,0,0,0,0,230,1.6,10,10,9.8,220,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,11.0,93,99900,0,0,354,0,0,0,0,0,0,0,180,2.2,10,10,13.2,454,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,99800,0,0,358,0,0,0,0,0,0,0,140,2.2,10,10,12.9,1178,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,99700,0,0,358,0,0,0,0,0,0,0,150,2.6,10,10,12.0,796,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.0,89,99700,0,0,357,0,0,0,0,0,0,0,160,2.8,10,10,11.9,701,9,999999999,200,0.0000,0,88,999.000,3.0,1.0 +2012,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,12.9,10.6,86,99600,0,0,357,0,0,0,0,0,0,0,170,4.3,10,10,5.8,676,9,999999999,189,0.0000,0,88,999.000,7.0,1.0 +2012,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,13.2,10.7,85,99500,136,1364,359,20,1,20,2225,48,3337,86,160,5.9,10,10,11.1,474,9,999999999,200,0.0000,0,88,999.000,27.0,1.0 +2012,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,12.8,11.3,91,99500,414,1380,358,41,1,41,4486,130,6404,162,170,4.9,10,10,4.3,427,9,999999999,200,0.0000,0,88,999.000,3.0,1.0 +2012,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,13.2,11.8,91,99400,671,1380,360,67,0,67,7280,50,9961,259,190,8.1,10,10,2.4,467,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.6,87,99500,882,1380,340,158,2,157,16772,213,21619,626,240,6.7,8,8,6.0,1051,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,11.9,88,99500,1032,1380,364,184,1,183,19489,133,24352,791,230,7.2,10,10,12.9,420,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,10.1,82,99500,1111,1380,358,270,5,266,28109,539,33975,1240,260,11.2,10,10,14.7,1045,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,6.0,66,99500,1114,1380,349,337,18,322,34539,1792,40625,1508,250,10.1,10,10,16.1,1415,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,5.6,64,99500,1040,1380,339,401,69,349,45992,6196,40265,2012,260,9.0,9,9,16.1,1895,9,999999999,139,0.0000,0,88,999.000,3.0,1.0 +2012,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,12.6,5.7,63,99500,894,1380,341,359,95,298,40784,8323,33991,1669,260,10.4,9,9,15.7,1225,9,999999999,139,0.0000,0,88,999.000,7.0,1.0 +2012,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,11.1,6.7,74,99500,686,1380,328,266,98,217,29792,7800,24453,1149,260,11.3,8,8,12.0,1032,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.8,5.2,69,99500,431,1380,324,134,57,117,15010,3258,13060,566,270,11.0,8,8,14.2,1001,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,3.8,63,99500,153,1380,328,25,12,23,2842,0,2698,102,270,10.4,9,9,16.1,1010,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,3.4,64,99500,0,49,326,0,0,0,0,0,0,0,280,7.9,9,9,15.3,1255,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,3.9,66,99500,0,0,326,0,0,0,0,0,0,0,230,8.6,9,9,11.1,1048,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,3.8,66,99500,0,0,319,0,0,0,0,0,0,0,250,6.0,8,8,14.7,1097,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.0,3.4,68,99500,0,0,303,0,0,0,0,0,0,0,260,5.0,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,3.0,1.0 +2012,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.2,4.4,72,99500,0,0,332,0,0,0,0,0,0,0,260,7.3,10,10,16.1,1390,9,999999999,129,0.0000,0,88,999.000,72.0,1.0 +2012,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,7.9,4.5,79,99500,0,0,326,0,0,0,0,0,0,0,240,3.8,10,10,15.7,1081,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,5.0,80,99500,0,0,329,0,0,0,0,0,0,0,40,1.7,10,10,13.3,1173,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,5.1,83,99400,0,0,327,0,0,0,0,0,0,0,50,2.9,10,10,16.1,1067,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,5.5,85,99400,0,0,327,0,0,0,0,0,0,0,50,1.6,10,10,16.1,1106,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,5.0,80,99400,0,0,329,0,0,0,0,0,0,0,320,2.1,10,10,16.0,1387,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,4.4,77,99500,0,0,319,0,0,0,0,0,0,0,20,1.6,9,9,16.1,1232,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,3.8,73,99600,0,7,318,0,0,0,0,0,0,0,20,1.6,9,9,16.1,1207,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.4,3.2,70,99600,142,1379,312,31,29,28,3485,0,3160,121,20,2.5,8,8,16.1,3658,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,2.7,63,99700,420,1379,305,109,29,100,12249,1520,11297,483,280,5.5,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,1.9,57,99800,677,1379,307,177,18,168,18381,1806,23747,651,320,4.4,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,3.3,57,99900,888,1379,315,312,51,279,35551,4404,31975,1560,280,10.3,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,3.9,59,99900,1038,1379,316,398,67,348,45674,6064,40112,2002,280,11.2,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,3.9,57,99900,1116,1379,318,518,156,392,59491,14404,45283,2272,270,14.7,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,3.9,57,99900,1118,1379,318,581,253,376,67035,22969,43617,2181,260,16.9,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,3.8,55,99900,1044,1379,320,612,406,305,71029,34540,35565,1757,270,16.6,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,2.8,53,99900,898,1379,316,502,357,270,57508,30251,31071,1513,270,16.6,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,2.8,55,99900,690,1379,314,338,245,216,38070,19842,24410,1145,260,13.4,5,5,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,3.4,58,99900,435,1379,314,181,164,129,20053,10016,14374,628,260,14.2,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,3.8,61,99900,156,1379,310,55,132,41,6120,0,4479,176,260,15.0,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,2.8,59,100000,0,63,292,0,0,0,0,0,0,0,260,15.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,2.5,58,100000,0,0,309,0,0,0,0,0,0,0,270,14.0,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,0.7,53,100000,0,0,302,0,0,0,0,0,0,0,280,10.6,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,1.5,56,100100,0,0,301,0,0,0,0,0,0,0,280,9.1,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,0.0,50,100200,0,0,299,0,0,0,0,0,0,0,290,7.5,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,3.0,1.0 +2012,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.9,0.1,51,100200,0,0,299,0,0,0,0,0,0,0,290,5.6,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,0.6,55,100200,0,0,302,0,0,0,0,0,0,0,290,4.3,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,0.7,57,100100,0,0,318,0,0,0,0,0,0,0,330,2.1,9,9,16.1,1981,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,1.1,58,100100,0,0,318,0,0,0,0,0,0,0,10,2.1,9,9,16.1,1981,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,1.1,58,100100,0,0,311,0,0,0,0,0,0,0,360,2.1,8,8,16.0,1963,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,1.1,58,100100,0,0,318,0,0,0,0,0,0,0,330,1.6,9,9,16.1,2326,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,1.0,58,100100,0,28,318,0,0,0,0,0,0,0,330,2.0,9,9,16.1,6096,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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.2,-0.3,52,100200,148,1378,318,26,3,26,2781,213,4177,109,310,1.6,9,9,16.1,6096,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,-3.0,36,100200,427,1378,317,72,6,70,7595,574,10720,279,310,1.9,8,8,16.1,6096,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,-4.2,32,100300,683,1378,307,181,19,172,18682,1884,24190,665,250,0.4,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,-2.8,35,100300,894,1378,310,287,33,265,32907,2835,30621,1487,250,3.1,5,5,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,-1.9,36,100300,1043,1378,314,360,39,330,41524,3514,38334,1902,240,3.4,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,0.8,43,100300,1121,1378,319,480,107,393,55209,9990,45494,2280,270,5.8,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,2.4,48,100200,1123,1378,321,563,218,385,64865,20058,44696,2237,260,6.3,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,3.8,55,100200,1048,1378,320,570,310,335,65725,27349,38819,1932,250,7.1,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,3.2,53,100200,902,1378,319,474,284,288,54010,24705,32978,1615,260,6.2,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,2.2,51,100200,694,1378,316,322,200,222,36207,16421,25029,1177,250,6.2,5,5,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,2.5,52,100300,439,1378,316,180,156,130,19986,9677,14521,635,260,6.2,5,5,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,2.9,54,100300,159,1378,314,55,120,41,6081,0,4555,179,260,6.2,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,4.0,60,100300,0,77,310,0,0,0,0,0,0,0,260,6.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,5.1,67,100400,0,0,309,0,0,0,0,0,0,0,260,4.5,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,6.2,72,100400,0,0,311,0,0,0,0,0,0,0,270,4.0,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,6.6,74,100500,0,0,311,0,0,0,0,0,0,0,250,2.7,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,6.0,71,100500,0,0,310,0,0,0,0,0,0,0,140,0.2,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,5.7,70,100600,0,0,310,0,0,0,0,0,0,0,140,1.3,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,6.1,77,100600,0,0,302,0,0,0,0,0,0,0,50,0.3,2,2,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.3,5.9,79,100600,0,0,290,0,0,0,0,0,0,0,50,2.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,4.3,77,100600,0,0,284,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,3.3,73,100600,0,0,293,0,0,0,0,0,0,0,70,1.5,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,3.2,68,100700,0,0,298,0,0,0,0,0,0,0,50,1.9,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.1,2.8,65,100700,0,51,303,0,0,0,0,0,0,0,40,0.2,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,2.9,59,100800,153,1378,310,58,30,55,6219,169,5885,237,40,2.0,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,3.1,55,100800,433,1378,313,137,60,118,15251,3465,13210,573,80,1.3,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,1.4,44,100900,689,1378,316,241,63,209,27143,5066,23701,1108,80,0.0,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,-0.6,35,100900,899,1378,325,308,45,279,35295,3924,32109,1567,270,0.0,5,5,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,1.7,41,100900,1048,1378,328,400,64,351,45904,5827,40547,2023,270,3.9,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,2.0,40,100900,1126,1378,329,520,152,396,59878,14177,45870,2299,260,2.9,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,4.5,44,100800,1127,1378,338,612,300,367,70813,26725,42698,2129,260,5.2,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,4.4,47,100800,1052,1378,329,628,430,300,73067,36117,35069,1730,280,6.3,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,0.3,36,100800,906,1378,324,518,385,265,59583,32640,30669,1491,270,6.7,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,1.4,39,100700,698,1378,324,344,247,218,38696,20223,24726,1162,270,6.6,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,3.1,45,100700,443,1378,324,199,215,130,22146,13297,14525,636,270,6.1,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,4.2,51,100700,163,1378,323,57,126,42,6307,0,4676,185,270,5.6,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,6.3,63,100700,1,90,320,0,0,0,0,0,0,0,280,4.8,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.8,72,100700,0,0,320,0,0,0,0,0,0,0,250,2.6,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.8,72,100800,0,0,320,0,0,0,0,0,0,0,260,2.6,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,7.8,72,100800,0,0,319,0,0,0,0,0,0,0,270,2.5,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.9,75,100800,0,0,317,0,0,0,0,0,0,0,240,1.9,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.2,77,100800,0,0,317,0,0,0,0,0,0,0,240,0.0,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.5,7.2,75,100800,0,0,313,0,0,0,0,0,0,0,240,0.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,3,21,2,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,7.1,83,100700,0,0,306,0,0,0,0,0,0,0,80,0.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,6.8,83,100700,0,0,304,0,0,0,0,0,0,0,80,0.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.2,83,100700,0,0,307,0,0,0,0,0,0,0,80,0.0,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,6.5,79,100700,0,0,306,0,0,0,0,0,0,0,80,1.5,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,5.1,71,100700,0,75,305,0,0,0,0,0,0,0,80,1.3,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,5.6,65,100700,159,1377,314,65,64,58,6975,487,6207,252,70,0.2,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.3,5.3,51,100700,439,1377,328,171,128,130,18913,7754,14451,633,70,2.0,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,3.1,39,100700,695,1377,335,286,124,223,32146,10208,25224,1187,70,1.3,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,1.7,32,100700,905,1377,341,400,141,307,45400,12699,35045,1724,260,0.0,3,3,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,6.8,51,100600,1054,1377,339,428,87,361,49002,7824,41631,2086,260,4.8,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,7.0,51,100500,1131,1377,339,503,127,398,57776,11608,46075,2313,270,6.1,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,5.6,45,100500,1132,1377,340,565,212,390,65029,19316,45226,2265,260,5.3,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,5.6,45,100400,1056,1377,342,609,381,317,70541,32472,36929,1831,270,6.6,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,5.7,47,100300,909,1377,337,525,396,263,60346,32692,30434,1482,260,5.7,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,6.7,50,100300,701,1377,339,363,293,213,40879,23115,24161,1136,270,5.7,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,7.9,59,100300,446,1377,337,185,161,133,20494,9728,14784,650,260,5.7,4,4,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,9.1,68,100300,166,1377,333,53,93,42,5868,0,4640,183,260,5.6,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.6,81,100300,1,105,325,0,0,0,0,0,0,0,270,5.0,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.5,81,100300,0,0,314,0,0,0,0,0,0,0,270,4.4,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.9,80,100300,0,0,311,0,0,0,0,0,0,0,250,2.7,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.3,77,100300,0,0,310,0,0,0,0,0,0,0,240,3.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,8.9,75,100300,0,0,310,0,0,0,0,0,0,0,240,2.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.0,76,100300,0,0,323,0,0,0,0,0,0,0,240,1.5,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,9.5,81,100200,0,0,321,0,0,0,0,0,0,0,190,1.5,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.9,86,100100,0,0,319,0,0,0,0,0,0,0,170,1.3,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,9.4,89,100100,0,0,314,0,0,0,0,0,0,0,170,0.0,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,9.4,89,100100,0,0,314,0,0,0,0,0,0,0,170,0.0,3,3,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,9.4,89,100100,0,0,319,0,0,0,0,0,0,0,190,0.0,5,5,15.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,9.5,87,100100,1,100,321,0,0,0,0,0,0,0,190,0.2,5,5,11.3,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,11.0,100,100200,165,1376,332,39,36,35,4414,0,3936,154,190,0.1,8,8,1.6,213,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,10.5,82,100200,446,1376,331,132,47,117,14800,2563,13164,573,310,1.5,5,5,8.2,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,9.5,67,100200,701,1376,340,222,41,201,25112,3064,22882,1072,120,1.7,5,5,9.8,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,10.0,65,100300,911,1376,345,362,89,303,41076,7583,34621,1708,260,3.6,5,5,11.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.0,72,100200,1059,1376,337,382,48,345,43869,4154,39855,1992,250,4.5,5,5,11.5,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.0,73,100200,1136,1376,337,444,68,388,51115,5999,44970,2255,260,4.3,5,5,13.3,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,9.9,75,100100,1136,1376,333,499,120,400,57287,10739,46248,2324,270,5.8,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.4,77,100100,1060,1376,348,404,63,355,46333,5554,40988,2053,270,6.1,9,9,15.7,244,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.4,78,100100,913,1376,348,341,66,297,38745,5600,33968,1673,250,5.0,9,9,12.9,244,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.4,80,100100,705,1376,338,260,78,220,29230,6155,24844,1172,280,4.6,8,8,12.0,244,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,9.1,77,100100,450,1376,339,148,68,126,16436,3922,14036,615,260,4.2,8,8,4.0,244,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,9.3,85,100000,170,1376,328,43,44,38,4814,0,4220,165,260,1.9,7,7,6.2,183,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100100,1,120,323,0,0,0,0,0,0,0,260,2.7,5,5,7.8,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.5,86,100100,0,0,341,0,0,0,0,0,0,0,250,2.7,9,9,6.4,152,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,10.0,89,100200,0,0,351,0,0,0,0,0,0,0,250,3.7,10,10,6.4,159,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,10.0,89,100300,0,0,351,0,0,0,0,0,0,0,240,4.4,10,10,7.6,220,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.0,86,100300,0,0,353,0,0,0,0,0,0,0,240,2.5,10,10,15.9,266,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,10.0,87,100300,0,0,353,0,0,0,0,0,0,0,170,2.2,10,10,14.5,213,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,10.0,89,100300,0,0,351,0,0,0,0,0,0,0,170,2.3,10,10,14.5,213,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,9.9,85,100400,0,0,354,0,0,0,0,0,0,0,70,0.2,10,10,14.5,213,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,9.4,80,100300,0,0,355,0,0,0,0,0,0,0,70,2.2,10,10,14.3,223,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.4,83,100300,0,0,353,0,0,0,0,0,0,0,210,2.5,10,10,12.0,305,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.4,84,100400,0,0,352,0,0,0,0,0,0,0,210,2.1,10,10,12.9,312,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,9.3,85,100500,1,126,351,0,0,0,0,0,0,0,160,2.0,10,10,13.6,393,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,9.3,82,100500,171,1375,353,27,1,27,2926,44,4371,114,180,1.5,10,10,13.3,502,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.9,77,100600,452,1375,355,45,1,45,4891,113,6974,177,150,1.3,10,10,16.1,617,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.8,71,100600,707,1375,360,70,0,70,7547,40,10321,271,120,0.3,10,10,16.1,671,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.3,69,100600,916,1375,360,119,0,118,12603,40,16441,478,120,2.6,10,10,16.0,685,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,8.9,69,100600,1064,1375,354,240,4,237,25020,396,30769,1056,120,3.1,9,9,16.1,792,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,8.9,62,100500,1140,1375,362,359,21,341,36918,2135,42595,1662,150,2.9,9,9,16.1,827,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,9.1,64,100500,1141,1375,361,449,69,391,51645,6185,45315,2271,260,5.2,9,9,16.1,4877,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,9.3,67,100400,1064,1375,359,457,113,370,52311,10060,42591,2139,250,5.2,9,9,16.1,5019,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,9.0,68,100400,917,1375,356,346,70,300,39374,5938,34304,1691,230,6.1,9,9,16.1,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.4,74,100400,708,1375,344,250,65,217,28160,5035,24538,1157,260,5.1,8,8,16.0,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.7,76,100400,453,1375,344,137,49,121,15293,2766,13548,592,280,4.8,8,8,16.0,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,9.9,77,100400,173,1375,344,40,31,36,4451,0,4018,157,280,4.4,8,8,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.4,80,100400,1,134,326,0,0,0,0,0,0,0,270,3.2,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.3,79,100400,0,0,338,0,0,0,0,0,0,0,270,3.5,8,8,16.1,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,9.0,78,100400,0,0,326,0,0,0,0,0,0,0,250,2.5,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.5,84,100400,0,0,343,0,0,0,0,0,0,0,240,1.9,9,9,16.1,6273,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.0,86,100400,0,0,344,0,0,0,0,0,0,0,230,0.0,9,9,16.1,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.0,86,100400,0,0,344,0,0,0,0,0,0,0,230,1.7,9,9,16.1,6611,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,10.0,89,100400,0,0,342,0,0,0,0,0,0,0,260,2.6,9,9,16.1,293,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.4,83,100300,0,0,353,0,0,0,0,0,0,0,290,2.1,10,10,16.1,335,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.3,83,100300,0,0,352,0,0,0,0,0,0,0,330,2.1,10,10,16.1,335,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100300,0,0,352,0,0,0,0,0,0,0,340,2.1,10,10,16.0,335,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.9,80,100300,0,0,352,0,0,0,0,0,0,0,350,1.6,10,10,15.9,349,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.8,79,100300,2,153,352,0,0,0,0,0,0,0,290,2.6,10,10,14.7,464,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.3,74,100400,177,1375,355,31,1,31,3310,44,4940,129,310,2.7,10,10,16.1,518,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,8.3,72,100400,458,1375,357,45,1,45,4886,103,6973,177,300,2.7,10,10,16.1,532,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,8.4,72,100400,713,1375,348,84,1,84,9012,70,12248,325,300,0.0,9,9,16.1,650,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.9,72,100400,922,1375,343,183,3,181,19210,294,24499,733,120,0.0,8,8,16.0,749,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,7.8,58,100400,1069,1375,353,306,14,295,31586,1414,37711,1322,120,3.2,8,8,14.9,884,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,8.3,57,100300,1145,1375,344,543,169,402,62485,15327,46568,2336,280,3.8,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,8.3,56,100200,1145,1375,345,632,317,368,73179,27574,42852,2135,250,5.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,8.2,58,100200,1068,1375,363,449,101,370,51352,9015,42672,2142,240,6.3,9,9,16.1,7620,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,7.9,60,100200,921,1375,358,350,71,302,39817,6130,34600,1706,250,6.8,9,9,15.9,7442,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,8.9,64,100100,712,1375,351,261,75,222,29339,5932,25091,1186,220,7.2,8,8,14.0,5761,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,9.0,69,100100,457,1375,347,135,44,120,15097,2533,13496,589,240,5.8,8,8,15.1,2894,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,8.9,72,100100,176,1375,350,31,14,29,3519,0,3326,128,230,4.7,9,9,16.1,457,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.8,77,100100,2,149,345,0,0,0,0,0,0,0,260,5.0,9,9,16.1,457,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100200,0,0,342,0,0,0,0,0,0,0,270,4.4,9,9,16.1,457,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100200,0,0,334,0,0,0,0,0,0,0,270,3.0,8,8,16.1,457,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,7.8,77,100200,0,0,317,0,0,0,0,0,0,0,250,1.3,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,7.8,78,100200,0,0,314,0,0,0,0,0,0,0,110,0.2,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,7.8,80,100200,0,0,312,0,0,0,0,0,0,0,110,2.1,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,7.9,80,100200,0,0,318,0,0,0,0,0,0,0,80,2.0,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100100,0,0,342,0,0,0,0,0,0,0,120,1.8,9,9,16.1,1676,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.3,78,100100,0,0,341,0,0,0,0,0,0,0,120,4.0,9,9,16.1,1676,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.3,80,100000,0,0,332,0,0,0,0,0,0,0,100,3.6,8,8,16.0,528,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,8.2,79,100000,0,0,340,0,0,0,0,0,0,0,100,4.3,9,9,16.1,1727,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,8.0,77,100000,3,180,340,0,0,0,0,0,0,0,120,4.6,9,9,16.1,1928,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100000,184,1374,351,33,1,33,3585,44,5339,140,110,6.0,10,10,16.1,467,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.4,77,100000,465,1374,352,46,1,46,4993,104,7115,181,120,4.8,10,10,15.9,541,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.0,78,100000,719,1374,355,71,0,71,7656,40,10441,275,130,6.6,10,10,13.4,491,9,999999999,170,0.0000,0,88,999.000,2.0,1.0 +2012,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,12.8,9.4,80,100000,927,1374,356,115,0,115,12230,40,15901,465,140,6.2,10,10,4.8,508,9,999999999,179,0.0000,0,88,999.000,8.0,1.0 +2012,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,12.8,10.7,87,99900,1074,1374,357,186,1,185,19580,92,24343,834,130,6.3,10,10,4.7,372,9,999999999,200,0.0000,0,88,999.000,7.0,1.0 +2012,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,12.9,11.1,89,99900,1150,1374,358,283,5,279,29506,541,35236,1381,140,8.4,10,10,5.4,244,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,99800,1149,1374,358,373,25,352,38531,2509,43818,1741,150,8.9,10,10,5.8,475,9,999999999,200,0.0000,0,88,999.000,13.0,1.0 +2012,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,11.0,9.0,88,99900,1072,1374,346,364,34,337,41961,2941,39101,1949,210,6.2,10,10,4.2,640,9,999999999,170,0.0000,0,88,999.000,2.0,1.0 +2012,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,10.2,7.7,85,99900,924,1374,331,339,60,299,38633,5137,34237,1687,250,10.3,9,9,10.2,770,9,999999999,160,0.0000,0,88,999.000,171.0,1.0 +2012,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,10.0,6.7,80,99900,716,1374,322,239,50,213,27037,3954,24194,1139,280,2.1,8,8,12.0,1544,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,7.0,79,99900,461,1374,326,150,64,128,16684,3838,14360,630,230,2.6,8,8,14.2,2504,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,7.0,76,100000,180,1374,335,42,32,38,4679,0,4221,165,230,3.0,9,9,16.1,3096,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,5.8,70,100000,2,164,334,0,0,0,0,0,0,0,280,2.4,9,9,16.1,1121,9,999999999,139,0.0000,0,88,999.000,15.0,1.0 +2012,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,10.5,6.8,78,100000,0,0,332,0,0,0,0,0,0,0,90,4.2,9,9,15.7,824,9,999999999,150,0.0000,0,88,999.000,5.0,1.0 +2012,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,10.0,7.9,87,100100,0,0,340,0,0,0,0,0,0,0,110,4.7,10,10,13.8,729,9,999999999,160,0.0000,0,88,999.000,23.0,1.0 +2012,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.9,8.2,89,100100,0,0,340,0,0,0,0,0,0,0,110,0.4,10,10,14.3,1594,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,7.3,86,100200,0,0,337,0,0,0,0,0,0,0,90,3.1,10,10,13.4,911,9,999999999,150,0.0000,0,88,999.000,3.0,1.0 +2012,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.9,7.7,86,100200,0,0,330,0,0,0,0,0,0,0,80,3.6,9,9,15.6,624,9,999999999,160,0.0000,0,88,999.000,5.0,1.0 +2012,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.3,7.2,87,100300,0,0,327,0,0,0,0,0,0,0,70,4.5,9,9,13.9,908,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,7.5,91,100400,0,0,334,0,0,0,0,0,0,0,60,3.8,10,10,6.4,425,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,7.2,89,100400,0,0,318,0,0,0,0,0,0,0,60,4.0,8,8,16.1,1250,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,7.2,89,100400,0,0,307,0,0,0,0,0,0,0,70,3.6,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.0,8.0,93,100500,0,0,326,0,0,0,0,0,0,0,70,3.1,9,9,16.1,640,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,8.3,89,100600,3,208,332,0,0,0,0,0,0,0,90,3.5,9,9,16.1,698,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,8.4,86,100700,190,1373,334,48,4,47,5108,284,7482,199,90,3.0,9,9,16.1,1087,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,9.3,85,100700,471,1373,341,87,7,85,9305,708,12761,334,100,3.0,9,9,16.1,770,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.9,77,100800,725,1373,346,120,2,119,12794,240,17074,463,100,2.5,9,9,16.1,679,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.4,74,100800,932,1373,344,238,10,232,24869,1001,30830,943,100,1.7,8,8,16.0,1196,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,8.9,68,100900,1079,1373,365,229,3,227,23894,274,29428,1029,190,3.4,10,10,15.5,1174,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.4,67,100900,1154,1373,345,395,33,367,45816,2845,42890,2133,250,3.8,8,8,16.1,1494,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.9,70,100800,1153,1373,333,578,215,398,66625,19212,46140,2310,250,5.3,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.8,69,100800,1076,1373,331,613,362,329,70880,30558,38321,1906,260,6.5,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,8.3,67,100700,928,1373,327,545,416,264,62729,33600,30545,1491,250,5.2,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.3,69,100700,719,1373,330,349,229,228,39178,18392,25810,1223,270,5.7,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.3,69,100700,464,1373,330,197,172,139,21842,10702,15485,685,260,6.0,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,8.3,70,100700,183,1373,330,64,118,48,7003,437,5289,211,260,6.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.3,75,100700,3,180,322,0,0,0,0,0,0,0,270,5.0,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.3,77,100700,0,0,315,0,0,0,0,0,0,0,290,4.4,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.4,74,100700,0,0,308,0,0,0,0,0,0,0,270,2.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,8.9,75,100700,0,0,309,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.8,77,100700,0,0,307,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,28.0,1.0 +2012,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,12.1,7.7,75,100700,0,0,303,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,6.6,72,100600,0,0,299,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,6.1,80,100600,0,0,290,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.3,6.1,81,100600,0,0,290,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,6.1,83,100600,0,0,301,0,0,0,0,0,0,0,80,0.0,3,3,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,6.7,83,100600,0,0,309,0,0,0,0,0,0,0,80,0.2,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,6.8,80,100700,4,236,312,0,0,0,0,0,0,0,80,1.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.8,7.3,79,100700,196,1372,315,77,30,73,8230,618,7804,322,70,1.6,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,7.8,74,100700,477,1372,323,153,60,133,17126,3675,14866,655,110,2.0,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,7.9,67,100700,731,1372,342,165,9,161,17381,866,22622,624,120,1.7,8,8,16.1,7620,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.9,67,100700,938,1372,317,640,653,194,75585,46648,22973,1096,210,3.1,0,0,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.9,63,100700,1084,1372,347,309,13,298,31870,1344,37966,1360,240,3.0,8,8,16.1,7620,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,8.8,69,100700,1158,1372,334,492,100,407,56605,9020,47212,2365,260,5.7,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.7,62,100700,1157,1372,335,566,193,404,65226,17443,46807,2342,270,5.9,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,6.8,59,100700,1080,1372,333,595,320,343,68714,27825,39864,1987,260,7.4,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,7.3,63,100600,931,1372,329,534,384,274,61419,31680,31636,1549,270,9.2,4,4,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,7.8,65,100600,722,1372,327,384,319,216,43444,25028,24581,1160,260,8.2,3,3,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.8,67,100600,467,1372,324,216,228,138,23946,14240,15393,680,270,7.9,3,3,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,7.8,70,100600,187,1372,322,71,160,50,7854,899,5472,219,270,7.5,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.9,72,100600,3,195,325,0,0,0,0,0,0,0,250,5.6,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.3,75,100600,0,0,322,0,0,0,0,0,0,0,250,4.6,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.3,77,100600,0,0,314,0,0,0,0,0,0,0,260,4.5,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.3,77,100600,0,0,305,0,0,0,0,0,0,0,260,3.8,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.2,74,100700,0,0,320,0,0,0,0,0,0,0,300,1.7,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,7.8,75,100700,0,0,317,0,0,0,0,0,0,0,270,3.5,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,7.7,76,100700,0,0,321,0,0,0,0,0,0,0,120,2.5,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.2,83,100600,0,0,330,0,0,0,0,0,0,0,120,1.3,9,9,16.1,7620,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.2,83,100600,0,0,330,0,0,0,0,0,0,0,50,0.2,9,9,16.1,7620,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,7.2,83,100600,0,0,323,0,0,0,0,0,0,0,50,2.1,8,8,16.0,7620,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.8,86,100600,0,0,307,0,0,0,0,0,0,0,100,1.6,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,7.2,79,100700,6,265,333,0,0,0,0,0,0,0,90,2.2,9,9,16.1,7513,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,7.2,76,100700,202,1372,336,49,5,49,5258,388,7673,204,110,2.5,9,9,16.1,6812,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,7.3,68,100800,483,1372,344,98,10,95,10408,963,14155,373,120,1.3,9,9,16.1,7620,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,8.0,65,100800,736,1372,352,134,3,132,14159,329,18784,513,240,0.4,9,9,16.1,7620,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.4,67,100800,943,1372,352,264,15,253,27455,1545,33465,1037,240,3.1,8,8,16.0,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,9.0,63,100700,1088,1372,361,282,8,276,29211,791,35215,1264,250,4.2,9,9,16.1,7620,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.5,67,100700,1163,1372,360,346,15,333,35679,1501,41475,1692,260,5.2,9,9,16.1,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,10.1,69,100700,1161,1372,361,414,41,380,47931,3523,44239,2204,260,6.1,9,9,16.1,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,10.6,70,100600,1083,1372,363,447,91,375,51142,8008,43207,2171,250,5.0,9,9,16.1,7442,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.7,73,100500,935,1372,361,378,93,315,42927,7986,35929,1781,250,4.5,9,9,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100500,726,1372,351,278,89,231,31236,7042,26065,1239,250,4.1,8,8,16.0,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100500,471,1372,342,183,124,141,20321,7635,15659,694,270,5.7,6,6,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,11.1,79,100500,190,1372,338,67,122,50,7364,558,5516,221,270,7.0,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.7,11.8,88,100500,4,210,353,0,0,0,0,0,0,0,270,6.2,9,9,15.3,167,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,11.9,92,100500,0,0,360,0,0,0,0,0,0,0,260,6.0,10,10,5.6,122,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,11.9,92,100600,0,0,350,0,0,0,0,0,0,0,250,4.0,9,9,16.1,169,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.1,87,100600,0,0,360,0,0,0,0,0,0,0,270,5.1,10,10,14.1,174,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,11.0,88,100600,0,0,358,0,0,0,0,0,0,0,270,4.7,10,10,4.5,116,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,11.1,94,100600,0,0,354,0,0,0,0,0,0,0,280,3.9,10,10,0.4,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,11.1,96,100600,0,0,352,0,0,0,0,0,0,0,250,2.2,10,10,0.4,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,11.0,94,100500,0,0,353,0,0,0,0,0,0,0,240,2.1,10,10,0.4,61,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,11.1,95,100500,0,0,353,0,0,0,0,0,0,0,240,2.1,10,10,0.5,67,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,11.7,97,100500,0,0,308,0,0,0,0,0,0,0,180,2.0,0,0,3.2,240,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,11.0,92,100500,0,0,355,0,0,0,0,0,0,0,170,1.5,10,10,6.2,216,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.6,87,100600,7,293,347,1,15,1,128,0,118,4,90,1.3,9,9,4.7,244,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,11.1,89,100600,209,1371,348,49,31,44,5466,138,4953,196,90,0.0,9,9,4.0,244,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.1,83,100600,489,1371,353,78,4,77,8418,411,11615,302,110,0.0,9,9,4.0,326,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.7,76,100700,742,1371,351,150,5,147,15925,522,20820,573,260,3.7,8,8,6.7,549,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100600,948,1371,339,318,38,292,36412,3090,33621,1659,240,1.8,5,5,8.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,11.2,70,100500,1093,1371,367,285,8,279,29737,825,35616,1287,260,5.3,9,9,8.2,732,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.0,72,100500,1167,1371,324,847,757,202,102883,51431,24680,1172,240,6.3,0,0,9.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.0,77,100400,1165,1371,358,418,42,383,48350,3601,44540,2219,250,6.3,9,9,8.0,335,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.7,76,100400,1087,1371,351,460,102,378,52620,9041,43615,2193,270,6.7,8,8,9.3,335,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.1,75,100400,938,1371,341,505,304,296,57596,25248,34036,1680,260,5.3,5,5,14.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.6,78,100400,729,1371,348,286,98,234,32078,7764,26387,1256,260,6.7,8,8,12.0,270,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.3,79,100400,474,1371,352,132,34,120,14808,1937,13538,593,270,6.4,9,9,11.6,239,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.0,80,100400,193,1371,359,27,7,26,2899,512,4179,108,270,6.2,10,10,11.5,213,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,10.1,82,100400,4,226,358,0,0,0,0,0,0,0,270,5.9,10,10,12.9,213,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.6,87,100400,0,0,357,0,0,0,0,0,0,0,310,3.4,10,10,13.1,220,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,10.8,87,100500,0,0,358,0,0,0,0,0,0,0,290,2.3,10,10,14.5,297,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,10.1,83,100500,0,0,357,0,0,0,0,0,0,0,270,1.9,10,10,15.9,335,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,10.6,83,100500,0,0,360,0,0,0,0,0,0,0,70,0.2,10,10,14.3,338,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.5,81,100500,0,0,362,0,0,0,0,0,0,0,70,2.1,10,10,12.9,362,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.0,80,100400,0,0,359,0,0,0,0,0,0,0,140,2.1,10,10,12.5,335,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.1,81,100400,0,0,359,0,0,0,0,0,0,0,130,2.1,10,10,9.3,335,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.5,83,100300,0,0,359,0,0,0,0,0,0,0,50,2.1,10,10,6.4,335,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.0,80,100300,0,0,359,0,0,0,0,0,0,0,140,2.1,10,10,6.0,335,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.0,83,100300,0,0,356,0,0,0,0,0,0,0,90,2.5,10,10,4.7,327,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,10.0,83,100300,8,322,357,1,6,1,128,0,123,4,130,0.0,10,10,4.0,274,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,10.0,80,100400,215,1370,359,38,12,36,4309,23,4096,160,130,0.3,10,10,4.0,297,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,10.1,77,100400,495,1370,352,77,4,75,8232,354,11402,296,90,1.5,9,9,4.0,457,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,10.5,74,100500,748,1370,358,118,2,117,12604,181,16745,455,90,1.6,9,9,4.0,457,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.0,69,100500,953,1370,353,226,6,221,23609,649,29404,911,240,2.2,8,8,4.0,476,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,10.6,72,100500,1098,1370,361,259,4,255,26968,459,32688,1184,260,3.7,9,9,8.0,579,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,10.7,70,100400,1171,1370,364,345,14,334,35737,1414,41440,1722,260,3.9,9,9,8.4,1542,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,10.6,70,100400,1169,1370,363,425,45,387,49201,3894,45074,2246,250,5.1,9,9,9.7,4572,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,10.6,70,100400,1090,1370,363,457,97,379,52304,8608,43706,2197,240,4.9,9,9,9.7,4749,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.6,72,100300,941,1370,353,409,128,321,46473,11077,36687,1822,280,3.8,8,8,9.7,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.6,72,100300,732,1370,341,356,230,233,40048,18259,26370,1255,260,5.1,5,5,9.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,10.2,75,100300,477,1370,342,165,78,138,18328,4797,15360,680,270,5.1,7,7,10.6,335,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.0,78,100300,197,1370,361,29,8,27,3312,0,3189,122,270,5.8,10,10,12.4,326,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.1,81,100300,5,242,359,0,0,0,0,0,0,0,240,3.5,10,10,9.8,274,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,10.6,84,100300,0,0,359,0,0,0,0,0,0,0,280,2.7,10,10,11.3,266,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.6,87,100300,0,0,356,0,0,0,0,0,0,0,250,3.4,10,10,11.1,205,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.5,89,100400,0,0,354,0,0,0,0,0,0,0,250,2.2,10,10,9.5,152,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.1,87,100400,0,0,353,0,0,0,0,0,0,0,260,2.7,10,10,8.0,152,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.6,90,100400,0,0,354,0,0,0,0,0,0,0,230,0.2,10,10,8.0,152,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.6,90,100400,0,0,354,0,0,0,0,0,0,0,230,1.3,10,10,7.9,159,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,10.5,89,100300,0,0,354,0,0,0,0,0,0,0,230,0.0,10,10,6.6,220,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.1,84,100400,0,0,356,0,0,0,0,0,0,0,160,0.2,10,10,8.0,274,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.6,87,100400,0,0,357,0,0,0,0,0,0,0,160,2.1,10,10,8.0,274,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.6,87,100400,0,0,356,0,0,0,0,0,0,0,130,3.4,10,10,7.7,274,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,10.6,89,100400,10,351,355,1,6,1,175,0,170,6,160,1.6,10,10,5.0,274,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,10.8,90,100400,221,1369,355,39,13,37,4476,42,4254,166,120,2.8,10,10,5.4,327,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.7,87,100500,501,1369,357,50,1,50,5447,96,7680,195,100,1.6,10,10,5.2,409,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.5,83,100500,753,1369,359,75,0,75,8104,30,10948,291,70,1.6,10,10,8.4,510,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.4,77,100500,958,1369,358,123,0,123,13087,40,16879,507,130,2.6,10,10,11.0,464,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,11.0,88,100600,1102,1369,358,187,1,186,19684,82,24310,870,270,5.1,10,10,14.4,520,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,11.6,88,100600,1175,1369,352,333,11,324,34564,1122,40255,1686,280,1.8,9,9,10.0,803,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.3,10.5,73,100500,1172,1369,359,458,65,403,52865,5742,46754,2334,140,1.9,9,9,16.1,662,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,10.0,65,100500,1094,1369,345,685,498,288,80295,39192,33904,1668,230,4.4,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.0,70,100500,945,1369,360,426,150,323,48419,13038,36865,1832,260,6.6,9,9,16.1,1559,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.0,72,100400,735,1369,350,291,101,237,32661,8064,26735,1274,260,6.2,8,8,16.0,1820,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.0,75,100400,481,1369,347,142,42,127,15900,2504,14288,629,250,5.9,8,8,16.0,1743,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.0,77,100400,200,1369,352,39,18,37,4444,0,4157,162,250,5.6,9,9,16.1,1633,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.1,78,100400,5,257,362,0,0,0,0,0,0,0,250,4.5,10,10,15.6,1182,9,999999999,189,0.0000,0,88,999.000,13.0,1.0 +2012,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,13.2,11.8,91,100300,0,0,360,0,0,0,0,0,0,0,210,4.1,10,10,3.4,305,9,999999999,209,0.0000,0,88,999.000,2.0,1.0 +2012,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,12.0,10.9,93,100400,0,0,353,0,0,0,0,0,0,0,250,4.7,10,10,4.5,556,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.4,89,100400,0,0,344,0,0,0,0,0,0,0,250,7.1,9,9,16.1,1341,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,8.7,79,100400,0,0,321,0,0,0,0,0,0,0,270,10.0,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,15.0,1.0 +2012,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,12.2,7.3,72,100400,0,0,317,0,0,0,0,0,0,0,270,11.5,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,7.5,74,100400,0,0,318,0,0,0,0,0,0,0,270,11.6,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,5.1,69,100400,0,0,307,0,0,0,0,0,0,0,330,2.2,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,5.5,71,100400,0,0,305,0,0,0,0,0,0,0,330,3.2,2,2,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,5.0,68,100400,0,0,294,0,0,0,0,0,0,0,290,4.1,0,0,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,5.1,68,100400,0,0,295,0,0,0,0,0,0,0,290,3.4,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,5.7,69,100400,12,380,315,2,191,0,275,0,54,2,280,5.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,6.0,68,100500,227,1368,318,155,756,29,18112,2463,3436,132,270,3.4,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,5.4,63,100500,507,1368,320,367,802,70,43486,39208,8315,350,270,2.3,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,4.0,53,100500,759,1368,321,582,880,94,70782,53399,11517,512,270,4.3,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,5.0,51,100500,963,1368,327,790,998,87,99624,59880,11020,496,250,5.7,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,4.7,48,100500,1107,1368,329,955,1098,67,125172,63372,8790,388,280,8.8,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,6.6,54,100500,1179,1368,332,1021,1106,68,134724,62864,9023,395,240,8.8,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,4.9,44,100500,1176,1368,337,1056,1176,46,143275,65134,6222,265,280,8.7,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,-1.0,26,100400,1097,1368,338,987,1177,43,133346,67232,5837,250,330,9.7,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,-1.2,26,100300,948,1368,337,836,1139,47,110076,65096,6230,268,340,6.6,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,-1.7,25,100400,739,1368,337,605,1005,63,75706,57626,7888,339,340,9.3,3,3,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,-2.3,24,100400,484,1368,334,361,858,58,43306,40544,6921,286,330,10.1,3,3,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,-2.5,24,100400,203,1368,332,132,685,30,15300,1069,3503,134,330,10.3,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,-0.2,32,100400,6,273,330,1,233,0,191,0,0,0,300,6.2,4,4,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,-1.6,30,100400,0,0,310,0,0,0,0,0,0,0,330,6.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,-0.5,33,100500,0,0,310,0,0,0,0,0,0,0,310,5.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,0.1,35,100500,0,0,310,0,0,0,0,0,0,0,340,5.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,0.6,38,100500,0,0,309,0,0,0,0,0,0,0,350,4.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,0.6,37,100500,0,0,310,0,0,0,0,0,0,0,350,5.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,0.5,38,100500,0,0,321,0,0,0,0,0,0,0,10,4.5,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,-0.7,34,100500,0,0,320,0,0,0,0,0,0,0,350,3.6,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,-1.0,35,100400,0,0,317,0,0,0,0,0,0,0,30,3.2,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,0.0,40,100400,0,0,313,0,0,0,0,0,0,0,100,0.0,3,3,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,1.2,50,100400,0,0,306,0,0,0,0,0,0,0,100,1.5,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,1.7,50,100500,13,409,309,3,292,0,439,0,22,1,150,1.3,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,1.6,44,100500,233,1368,321,149,653,38,17162,6719,4344,170,110,0.2,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,0.4,34,100500,513,1368,333,403,948,48,49337,43631,5873,240,110,1.3,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,-1.6,24,100500,764,1368,343,660,1101,45,84939,60492,5761,243,310,0.4,4,4,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,-5.6,15,100500,968,1368,347,871,1175,39,116595,67382,5268,224,310,3.6,3,3,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.5,0.9,26,100400,1111,1368,357,926,1030,90,119123,63300,11565,520,270,4.5,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,3.0,33,100300,1183,1368,352,901,849,166,111710,57757,20671,961,250,7.3,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,0.9,29,100300,1179,1368,368,697,403,349,81675,35026,41224,2024,260,7.8,9,9,16.1,7620,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,3.6,36,100200,1100,1368,363,726,582,258,86089,45629,30731,1494,260,8.1,8,8,16.1,7620,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,6.0,45,100100,951,1368,348,705,804,147,85457,53762,17829,833,260,7.3,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,5.6,45,100100,742,1368,345,529,744,125,62670,48134,14914,676,250,8.2,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,5.3,44,100100,487,1368,340,355,812,65,42055,37971,7747,324,250,9.0,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,4.9,43,100000,207,1368,339,136,709,29,15838,0,3402,130,250,9.4,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,3.8,41,100100,7,289,335,1,184,0,148,0,15,0,260,6.4,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,3.5,41,100100,0,0,334,0,0,0,0,0,0,0,290,3.9,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,5.3,50,100100,0,0,328,0,0,0,0,0,0,0,260,2.5,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,7.3,62,100200,0,0,313,0,0,0,0,0,0,0,250,1.9,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,8.3,66,100200,0,0,315,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.2,73,100200,0,0,307,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,6.9,63,100200,0,0,310,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,4.8,58,100200,0,0,303,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,3.3,53,100200,0,0,301,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,3.3,55,100200,0,0,312,0,0,0,0,0,0,0,100,0.0,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,5.2,64,100300,0,0,313,0,0,0,0,0,0,0,100,2.1,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,6.6,68,100300,15,438,322,4,352,0,613,0,11,0,120,2.1,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,5.9,58,100400,239,1367,329,163,747,32,19003,5265,3732,144,110,2.2,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,7.3,57,100400,519,1367,338,400,912,54,48446,41125,6577,272,110,2.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,3.8,38,100400,769,1367,347,624,983,71,77680,56337,8860,386,110,1.3,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,3.3,32,100500,973,1367,356,801,1004,86,101304,60781,10927,492,260,0.0,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,9.1,50,100400,1115,1367,360,917,1001,100,116751,59085,12727,578,260,4.2,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,7.1,46,100400,1187,1367,353,909,862,161,112941,56654,20090,932,260,5.1,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,6.2,43,100300,1183,1367,353,902,853,164,111921,56746,20416,949,250,5.1,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,7.3,47,100300,1103,1367,353,863,903,134,107482,57482,16754,778,280,5.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,7.8,49,100200,954,1367,353,736,879,123,90355,55434,15121,698,270,4.6,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,7.8,49,100200,745,1367,353,545,790,114,65038,48963,13673,616,270,4.6,5,5,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,9.0,56,100200,490,1367,350,338,720,80,39457,35023,9353,397,260,4.9,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,9.9,63,100200,210,1367,347,122,523,42,13743,2208,4693,185,260,5.0,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,9.0,65,100200,7,305,339,1,144,0,141,0,31,1,260,4.5,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,9.4,70,100300,0,0,336,0,0,0,0,0,0,0,260,3.9,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,9.4,72,100300,0,0,334,0,0,0,0,0,0,0,240,2.6,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,9.5,72,100400,0,0,331,0,0,0,0,0,0,0,240,2.5,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,10.0,75,100400,0,0,329,0,0,0,0,0,0,0,250,2.0,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.0,78,100300,0,0,327,0,0,0,0,0,0,0,140,1.6,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.9,80,100300,0,0,324,0,0,0,0,0,0,0,140,1.9,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.5,80,100200,0,0,327,0,0,0,0,0,0,0,290,0.3,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,9.9,83,100200,0,0,324,0,0,0,0,0,0,0,290,2.5,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.4,86,100200,0,0,317,0,0,0,0,0,0,0,290,2.0,3,3,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,9.4,83,100200,0,0,319,0,0,0,0,0,0,0,120,1.5,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.4,79,100300,17,467,327,5,393,0,848,0,2,0,120,1.3,5,5,15.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,9.5,77,100300,246,1366,349,131,412,57,14617,7436,6379,258,120,0.0,9,9,12.7,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,10.1,76,100300,524,1366,353,306,462,129,34649,27957,14650,649,260,0.0,9,9,11.5,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,10.5,66,100400,775,1366,367,489,535,185,56383,38140,21496,1010,260,0.4,9,9,12.9,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,10.0,60,100400,978,1366,364,682,686,191,81130,47938,22783,1089,260,3.1,8,8,12.0,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,9.9,60,100300,1120,1366,372,761,634,241,90764,46491,28953,1402,250,4.6,9,9,16.1,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,9.1,55,100300,1191,1366,364,823,662,246,99000,48330,29703,1420,250,4.6,8,8,16.1,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,10.5,64,100300,1186,1366,343,990,1032,94,127668,59104,12164,544,250,4.6,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,9.2,57,100200,1107,1366,345,944,1074,74,122618,60453,9677,431,250,4.6,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,7.9,51,100100,957,1366,341,802,1039,74,102198,59309,9482,423,250,4.9,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,8.3,56,100100,748,1366,326,672,1174,29,88625,56897,3865,158,270,7.2,0,0,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,8.6,59,100100,494,1366,330,376,892,54,45278,38233,6481,267,260,6.9,1,1,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,8.9,63,100100,213,1366,336,133,618,36,15157,1623,4144,162,260,6.8,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,9.0,68,100100,8,321,331,1,105,0,137,0,50,2,260,7.0,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,9.3,72,100000,0,0,328,0,0,0,0,0,0,0,250,5.3,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,8.9,72,100100,0,0,325,0,0,0,0,0,0,0,230,2.1,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.0,76,100100,0,0,328,0,0,0,0,0,0,0,230,2.2,5,5,15.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.4,80,100100,0,0,326,0,0,0,0,0,0,0,250,2.7,5,5,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.4,80,100100,0,0,346,0,0,0,0,0,0,0,250,3.0,9,9,16.1,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.3,79,100100,0,0,346,0,0,0,0,0,0,0,220,1.9,9,9,16.1,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.6,8.8,78,100000,0,0,344,0,0,0,0,0,0,0,80,0.2,9,9,16.1,7620,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,8.3,83,100000,0,0,329,0,0,0,0,0,0,0,80,1.5,8,8,16.1,7620,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,8.3,83,100000,0,0,318,0,0,0,0,0,0,0,100,1.5,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.0,84,100000,0,0,321,0,0,0,0,0,0,0,80,1.9,5,5,15.3,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,9.6,86,100000,20,495,342,6,419,0,1088,0,0,0,80,0.0,9,9,9.5,7514,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,11.0,85,100100,252,1365,351,137,438,57,15357,7855,6372,258,270,0.2,9,9,8.2,7228,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,9.7,75,100100,530,1365,352,315,483,127,35692,29213,14499,642,270,1.5,9,9,10.2,4267,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,7.9,62,100200,780,1365,348,513,600,170,59696,42250,19883,927,240,1.9,8,8,14.7,4267,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,8.9,64,100200,982,1365,339,740,832,142,90236,53757,17352,811,240,4.6,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,8.4,62,100200,1124,1365,336,903,955,117,113819,58356,14761,677,240,4.8,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,8.5,61,100200,1194,1365,336,996,1030,95,128638,60238,12280,548,250,6.3,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,5.5,50,100200,1190,1365,332,1017,1080,77,133431,62797,10093,444,270,7.1,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,5.2,49,100200,1110,1365,332,958,1096,67,125564,63016,8814,389,250,6.9,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,6.7,54,100200,960,1365,333,796,1018,80,100914,59451,10221,458,270,8.7,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.7,56,100100,751,1365,331,590,923,83,72294,53174,10158,447,240,8.2,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,5.8,54,100100,497,1365,327,365,829,64,43500,38790,7612,318,250,7.9,3,3,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,5.1,54,100100,217,1365,320,140,671,33,16134,2457,3853,149,250,7.6,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,6.1,62,100200,9,337,306,2,309,0,383,0,0,0,250,6.3,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,6.2,64,100200,0,0,305,0,0,0,0,0,0,0,250,3.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,6.6,64,100300,0,0,307,0,0,0,0,0,0,0,10,2.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,6.0,64,100400,0,0,304,0,0,0,0,0,0,0,70,3.4,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,5.4,63,100400,0,0,302,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,2.5,48,100500,0,0,304,0,0,0,0,0,0,0,360,1.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,-7.8,20,100500,0,0,296,0,0,0,0,0,0,0,360,4.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,-7.9,21,100500,0,0,291,0,0,0,0,0,0,0,10,5.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,-8.3,21,100500,0,0,289,0,0,0,0,0,0,0,10,3.9,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,-8.3,21,100500,0,0,289,0,0,0,0,0,0,0,340,6.2,0,0,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,-7.7,23,100600,0,0,287,0,0,0,0,0,0,0,10,3.5,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,1.5,53,100600,22,524,304,7,434,0,1122,0,6,0,30,2.7,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,4.3,59,100700,258,1365,312,169,691,39,19616,9939,4539,178,50,3.5,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,3.2,48,100700,536,1365,321,410,894,59,49590,43720,7170,299,30,3.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,2.1,40,100700,785,1365,332,617,919,88,75755,55748,10854,481,110,2.0,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,1.1,35,100700,987,1365,335,777,916,115,96566,59249,14305,657,110,1.5,5,5,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,-3.0,23,100700,1128,1365,338,915,974,110,116305,62891,14067,640,240,2.3,5,5,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,-0.9,26,100700,1198,1365,345,987,1006,104,127065,63422,13474,602,240,4.3,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,-2.5,24,100600,1193,1365,359,810,630,260,97489,49587,31454,1503,240,5.8,9,9,16.1,7620,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,0.2,29,100500,1113,1365,357,789,711,209,95402,52766,25440,1215,240,6.4,8,8,16.1,7620,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,2.0,33,100400,963,1365,341,770,946,102,96139,59597,12816,583,240,4.1,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,3.9,40,100400,754,1365,338,578,875,95,70206,53132,11534,513,260,4.1,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,4.5,42,100400,500,1365,340,346,722,81,40445,37266,9550,406,250,3.6,4,4,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,5.0,45,100400,220,1365,341,124,486,46,14001,5289,5191,206,250,2.9,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,5.1,47,100300,10,353,352,2,269,0,312,0,7,0,220,1.6,8,8,16.1,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,6.1,52,100400,0,0,335,0,0,0,0,0,0,0,150,1.9,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,6.0,53,100400,0,0,330,0,0,0,0,0,0,0,70,0.2,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,5.5,51,100500,0,0,330,0,0,0,0,0,0,0,70,1.3,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,4.5,45,100500,0,0,333,0,0,0,0,0,0,0,70,0.0,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,5.0,50,100500,0,0,329,0,0,0,0,0,0,0,20,0.0,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,3.8,49,100500,0,0,320,0,0,0,0,0,0,0,20,0.4,2,2,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,-5.1,24,100400,0,0,301,0,0,0,0,0,0,0,20,2.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,-5.9,25,100400,0,0,294,0,0,0,0,0,0,0,80,1.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,-7.8,21,100400,0,0,294,0,0,0,0,0,0,0,20,2.1,0,0,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,-7.3,24,100400,0,0,301,0,0,0,0,0,0,0,90,1.6,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,-8.4,19,100500,24,553,312,8,441,0,1191,0,22,1,30,2.3,5,5,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,-9.3,16,100500,263,1364,317,179,739,36,20954,13035,4243,165,30,3.6,4,4,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,-12.1,10,100500,541,1364,327,483,1169,19,63616,51414,2500,96,10,3.5,2,2,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,-11.8,9,100500,790,1364,326,711,1174,31,94417,64953,4136,170,30,2.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,-12.8,7,100500,991,1364,333,892,1172,40,119778,68799,5379,229,20,2.6,0,0,16.0,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.7,-13.8,6,100500,1132,1364,343,1018,1173,44,138187,69909,6021,257,70,3.0,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,-13.8,6,100400,1202,1364,337,1081,1175,46,147656,70146,6239,263,270,3.6,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,-2.7,19,100400,1196,1364,334,1076,1175,46,146669,67916,6227,263,270,7.1,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,-1.8,20,100400,1116,1364,337,1004,1174,44,135932,67378,5921,254,260,6.8,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,-1.8,20,100400,966,1364,336,869,1172,39,116320,66165,5226,222,260,7.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,1.1,28,100400,757,1364,334,681,1175,29,90149,60710,3889,159,270,7.7,0,0,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,2.6,33,100400,503,1364,330,446,1163,18,58553,43914,2304,88,270,7.4,0,0,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,3.8,39,100400,223,1364,326,170,941,16,20832,0,2009,74,270,6.9,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,3.4,40,100400,11,369,320,2,222,0,284,0,33,1,280,4.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,3.9,44,100400,0,0,317,0,0,0,0,0,0,0,250,1.9,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,4.2,44,100500,0,0,319,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,6.1,56,100500,0,0,314,0,0,0,0,0,0,0,170,1.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,6.0,57,100500,0,0,312,0,0,0,0,0,0,0,160,1.5,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,5.2,53,100500,0,0,312,0,0,0,0,0,0,0,260,1.6,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,6.6,64,100500,0,0,307,0,0,0,0,0,0,0,260,2.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,6.4,66,100400,0,0,318,0,0,0,0,0,0,0,260,1.3,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.4,78,100400,0,0,317,0,0,0,0,0,0,0,250,0.2,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.9,83,100400,0,0,316,0,0,0,0,0,0,0,250,1.5,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,7.7,82,100400,0,0,310,0,0,0,0,0,0,0,250,0.0,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.9,6.7,75,100400,27,582,315,10,230,5,1161,0,636,23,80,0.2,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,2.9,48,100500,269,1363,336,151,459,60,16927,11811,6747,273,80,1.9,8,8,16.1,7620,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,0.1,30,100500,547,1363,340,448,1017,41,55932,47314,5074,206,270,0.4,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,1.4,28,100600,795,1363,353,701,1137,38,91679,61052,5023,210,270,3.2,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,7.8,45,100600,996,1363,359,827,1019,83,105127,59248,10554,475,270,4.1,5,5,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,8.0,46,100600,1136,1363,358,876,872,149,108693,56307,18546,864,260,4.2,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,6.0,41,100500,1205,1363,354,882,771,201,108179,53899,24737,1157,270,5.2,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,4.9,37,100500,1199,1363,356,948,922,137,119538,59230,17292,788,270,5.6,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.4,4.2,35,100500,1118,1363,356,904,965,112,114467,60389,14208,649,270,5.1,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,3.3,36,100400,968,1363,347,729,828,141,88943,55571,17216,802,270,5.2,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,6.7,48,100500,759,1363,347,525,685,143,61791,45927,16897,776,270,6.2,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,6.4,49,100400,506,1363,338,343,687,88,39918,36173,10265,440,270,5.1,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,6.2,50,100400,227,1363,335,136,567,42,15497,5446,4800,189,270,4.1,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,7.4,59,100400,12,385,332,2,179,0,272,0,61,2,270,4.0,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,8.9,70,100400,0,0,324,0,0,0,0,0,0,0,250,3.2,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,8.8,75,100400,0,0,309,0,0,0,0,0,0,0,260,3.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,8.3,74,100500,0,0,307,0,0,0,0,0,0,0,240,2.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,8.2,74,100500,0,0,307,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.9,72,100500,0,0,307,0,0,0,0,0,0,0,190,1.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.6,8.2,75,100400,0,0,306,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,7.2,76,100300,0,0,299,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,7.2,75,100300,0,0,301,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,7.2,80,100300,0,0,297,0,0,0,0,0,0,0,260,0.0,0,0,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,7.9,78,100300,0,0,302,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,8.6,80,100300,29,610,317,11,505,0,1726,0,10,0,260,0.0,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,10.3,81,100300,275,1362,323,206,900,25,24847,7562,2975,113,260,0.2,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,7.8,59,100300,552,1362,319,496,1180,18,65480,46031,2370,91,260,2.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,7.9,56,100400,800,1362,324,719,1171,32,95069,58692,4217,175,260,1.7,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,8.9,60,100400,1000,1362,325,899,1169,41,120194,61573,5428,233,280,3.6,0,0,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,7.3,49,100300,1139,1362,330,1025,1173,44,138726,63492,5996,257,270,3.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,8.0,51,100300,1208,1362,331,1087,1174,46,147985,63274,6209,262,260,5.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,9.4,60,100300,1202,1362,342,1033,1086,74,135812,60749,9789,428,270,6.0,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,5.5,45,100300,1121,1362,345,884,915,131,110644,58508,16411,758,250,4.9,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,9.5,63,100200,971,1362,357,630,560,231,73867,42016,27232,1320,250,7.0,8,8,16.1,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.0,69,100200,762,1362,340,543,738,130,64319,46682,15463,706,280,5.7,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,8.8,64,100200,509,1362,346,304,495,119,34538,29063,13613,598,260,4.6,7,7,16.0,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,8.1,62,100200,230,1362,357,101,233,61,11099,4368,6793,276,260,3.7,9,9,16.1,6096,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.0,77,100300,13,402,352,3,116,2,369,0,234,8,260,4.6,9,9,16.1,4788,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.3,77,100300,0,0,331,0,0,0,0,0,0,0,280,6.7,6,6,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.0,81,100400,0,0,318,0,0,0,0,0,0,0,250,3.7,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.3,83,100400,0,0,326,0,0,0,0,0,0,0,260,3.8,6,6,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.3,80,100400,0,0,332,0,0,0,0,0,0,0,290,3.8,8,8,16.1,305,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,8.3,80,100300,0,0,320,0,0,0,0,0,0,0,80,2.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,8.3,83,100200,0,0,318,0,0,0,0,0,0,0,80,2.5,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,8.3,83,100200,0,0,318,0,0,0,0,0,0,0,270,2.2,5,5,15.5,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.5,8.6,82,100200,0,0,323,0,0,0,0,0,0,0,300,3.7,6,6,12.7,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,8.9,86,100200,0,0,347,0,0,0,0,0,0,0,280,4.6,10,10,16.0,305,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,8.2,82,100100,0,0,317,0,0,0,0,0,0,0,330,3.0,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,7.8,80,100200,32,638,318,13,550,0,2545,0,0,0,260,2.8,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,7.8,77,100200,281,1361,320,180,641,48,20622,12913,5471,218,280,4.5,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.6,8.1,74,100200,557,1361,343,317,422,145,35882,27683,16445,738,270,2.9,9,9,16.1,459,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.6,75,100200,804,1361,345,466,408,225,53333,31762,25901,1238,290,0.0,9,9,16.1,2442,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,7.8,65,100200,1004,1361,332,761,839,142,93063,54539,17457,816,290,2.1,5,5,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,7.8,60,100200,1143,1361,329,987,1095,68,129789,61674,8965,395,270,2.9,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,7.7,59,100100,1212,1361,319,1090,1174,45,148494,63422,6204,262,270,5.3,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,7.2,57,100100,1205,1361,318,1084,1173,45,147620,63692,6186,261,260,7.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,7.2,57,100100,1124,1361,332,961,1075,74,125392,61533,9617,427,250,5.7,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,7.3,58,100000,974,1361,331,802,1001,86,101381,58836,10893,491,250,5.7,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.8,62,100000,765,1361,330,596,903,89,72826,52550,10863,482,250,5.7,3,3,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.8,62,100000,512,1361,330,379,836,65,45185,39240,7738,325,260,5.4,3,3,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.9,63,100000,233,1361,329,149,656,37,17190,4976,4286,167,260,4.9,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,8.4,68,100100,14,418,332,3,268,0,422,0,39,1,270,3.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.9,72,100100,0,0,331,0,0,0,0,0,0,0,260,2.8,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,8.8,71,100100,0,0,351,0,0,0,0,0,0,0,150,1.9,9,9,16.1,1559,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.3,67,100100,0,0,352,0,0,0,0,0,0,0,140,4.7,9,9,16.1,1846,9,999999999,170,0.0000,0,88,999.000,10.0,1.0 +2012,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,14.3,8.5,68,100100,0,0,352,0,0,0,0,0,0,0,120,5.2,9,9,15.3,1874,9,999999999,170,0.0000,0,88,999.000,84.0,1.0 +2012,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,13.2,10.0,81,100100,0,0,358,0,0,0,0,0,0,0,130,5.3,10,10,8.3,913,9,999999999,189,0.0000,0,88,999.000,3.0,1.0 +2012,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,12.1,11.0,93,100000,0,0,354,0,0,0,0,0,0,0,110,4.1,10,10,11.4,431,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,11.0,88,100000,0,0,358,0,0,0,0,0,0,0,160,4.6,10,10,11.5,407,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,11.0,88,100000,0,0,358,0,0,0,0,0,0,0,150,3.7,10,10,6.7,261,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,99900,0,0,340,0,0,0,0,0,0,0,150,3.6,8,8,16.0,436,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,10.4,85,100000,0,0,347,0,0,0,0,0,0,0,190,6.6,9,9,16.1,531,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.5,80,100100,35,666,346,15,158,11,1665,0,1215,46,280,6.8,9,9,14.7,492,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.9,82,100200,286,1361,347,141,316,74,15617,9662,8277,343,260,7.3,9,9,16.1,769,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.2,77,100300,563,1361,347,312,388,152,35161,25802,17181,775,260,8.0,9,9,16.1,858,9,999999999,179,0.0000,0,88,999.000,3.0,1.0 +2012,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,13.8,10.2,79,100400,809,1361,352,467,402,228,53405,31076,26228,1257,260,5.4,9,9,14.1,2460,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.0,83,100500,1008,1361,356,522,254,334,59786,21851,38453,1919,260,3.1,10,10,4.0,771,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.5,83,100600,1147,1361,356,727,510,297,85622,39490,35208,1724,260,5.2,9,9,13.3,739,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.4,74,100600,1215,1361,345,892,774,201,109257,52177,24745,1155,250,6.0,7,7,16.1,792,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.0,72,100600,1208,1361,337,1034,1078,77,135665,60189,10175,445,240,7.1,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.1,73,100600,1127,1361,357,775,653,234,92846,47234,28223,1361,250,6.6,9,9,16.1,4480,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.5,75,100600,977,1361,350,669,651,201,79278,46121,24001,1152,250,6.3,8,8,16.1,6096,9,999999999,189,0.0000,0,88,999.000,8.0,1.0 +2012,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,14.4,10.0,75,100600,768,1361,334,568,807,113,68148,49002,13616,616,250,6.7,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,9.7,75,100600,515,1361,340,326,576,108,37351,32186,12420,542,270,7.2,7,7,16.0,4572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,9.5,75,100600,236,1361,361,96,181,64,10550,3691,7114,291,270,7.5,10,10,16.1,4572,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.9,80,100700,15,434,349,4,91,3,477,0,358,12,250,5.9,9,9,16.1,4572,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.5,78,100700,0,0,329,0,0,0,0,0,0,0,270,7.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,10.0,81,100700,0,0,329,0,0,0,0,0,0,0,270,5.0,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.2,84,100800,0,0,327,0,0,0,0,0,0,0,280,4.1,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,9.2,79,100800,0,0,338,0,0,0,0,0,0,0,320,4.5,8,8,16.1,488,9,999999999,179,0.0000,0,88,999.000,52.0,1.0 +2012,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,12.7,7.9,73,100800,0,0,324,0,0,0,0,0,0,0,280,4.4,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.8,80,100900,0,0,323,0,0,0,0,0,0,0,300,3.0,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,7.7,77,100800,0,0,317,0,0,0,0,0,0,0,10,1.9,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,7.2,75,100800,0,0,314,0,0,0,0,0,0,0,10,0.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,7.2,80,100800,0,0,309,0,0,0,0,0,0,0,100,0.0,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,7.3,80,100900,0,0,310,0,0,0,0,0,0,0,100,0.2,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,7.9,80,100900,38,694,318,17,611,0,3344,0,0,0,100,1.5,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.8,79,101000,292,1360,324,191,667,47,21969,14159,5466,218,120,1.6,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,8.3,71,101000,568,1360,347,336,468,140,38113,30289,16004,717,270,2.7,9,9,16.1,4877,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,8.3,69,101100,814,1360,350,494,470,213,56854,35728,24626,1173,260,3.3,9,9,16.1,4877,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.3,64,101100,1012,1360,348,670,589,232,79070,44167,27481,1332,250,4.6,8,8,16.0,4877,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,8.3,64,101000,1150,1360,356,730,512,297,86203,40570,35289,1724,230,4.7,9,9,16.1,4877,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,8.4,62,101000,1218,1360,358,801,569,291,95550,43910,34961,1672,230,5.9,9,9,16.1,4877,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,8.9,64,100900,1211,1360,359,817,616,269,98001,46133,32442,1547,240,7.3,9,9,16.1,4877,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.0,65,100900,1129,1360,351,820,754,194,99740,51819,23713,1127,240,7.6,8,8,16.1,4877,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,9.4,67,100800,979,1360,339,767,903,117,94802,55406,14525,670,240,6.9,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,9.4,69,100800,770,1360,337,571,808,113,68503,49365,13630,617,250,8.2,5,5,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,9.4,71,100800,518,1360,342,327,573,109,37499,32314,12562,549,250,7.9,7,7,16.0,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,9.4,72,100800,240,1360,354,107,247,64,11840,5094,7064,288,250,7.4,9,9,16.1,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,9.4,72,100800,16,451,353,4,124,3,484,0,307,11,270,4.9,9,9,16.1,5452,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,9.5,75,100800,0,0,351,0,0,0,0,0,0,0,250,3.5,9,9,16.1,807,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.4,77,100800,0,0,341,0,0,0,0,0,0,0,260,3.2,8,8,16.1,2438,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.4,77,100700,0,0,329,0,0,0,0,0,0,0,260,3.5,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.5,78,100700,0,0,348,0,0,0,0,0,0,0,250,3.0,9,9,16.1,2288,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.1,81,100600,0,0,349,0,0,0,0,0,0,0,230,2.2,9,9,16.1,1072,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.6,84,100600,0,0,350,0,0,0,0,0,0,0,250,3.0,9,9,16.1,501,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.5,83,100400,0,0,359,0,0,0,0,0,0,0,190,2.2,10,10,16.1,1016,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.9,80,100300,0,0,359,0,0,0,0,0,0,0,150,2.8,10,10,16.1,566,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.4,77,100300,0,0,358,0,0,0,0,0,0,0,160,4.1,10,10,16.0,718,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.3,77,100200,0,0,348,0,0,0,0,0,0,0,150,3.6,9,9,16.1,868,9,999999999,179,0.0000,0,88,999.000,15.0,1.0 +2012,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,13.2,9.1,76,100200,41,721,347,18,96,15,1922,0,1608,62,160,3.7,9,9,15.2,1039,9,999999999,179,0.0000,0,88,999.000,5.0,1.0 +2012,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,12.8,10.6,87,100100,298,1359,357,125,193,83,13822,6700,9209,385,130,4.0,10,10,7.7,1542,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,11.0,87,100100,573,1359,359,281,259,172,31421,18060,19323,882,150,4.6,10,10,6.7,858,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.1,83,100000,818,1359,353,472,398,232,53905,30705,26643,1280,160,7.6,9,9,11.3,935,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.6,78,99900,1016,1359,348,658,551,246,77222,41436,29025,1415,170,6.2,8,8,12.0,1043,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,10.7,79,99800,1154,1359,365,678,393,344,79042,32444,40336,1993,180,6.0,10,10,11.3,769,9,999999999,200,0.0000,0,88,999.000,3.0,1.0 +2012,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,11.1,9.0,87,99800,1221,1359,347,646,260,412,75052,22980,48235,2365,270,7.6,10,10,4.1,691,9,999999999,170,0.0000,0,88,999.000,8.0,1.0 +2012,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,11.7,9.3,85,99800,1214,1359,350,686,339,384,80050,28997,45067,2205,280,7.3,10,10,5.8,1272,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,8.4,80,99700,1132,1359,340,709,492,300,83448,39254,35483,1740,280,8.3,9,9,13.3,1871,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.6,76,99700,982,1359,344,674,655,201,80088,47030,23979,1150,260,9.0,9,9,15.7,3132,9,999999999,170,0.0000,0,88,999.000,68.0,1.0 +2012,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,12.2,6.7,69,99700,773,1359,333,517,626,161,60491,43648,18898,877,270,10.3,8,8,12.0,1537,9,999999999,150,0.0000,0,88,999.000,8.0,1.0 +2012,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,11.9,7.5,75,99700,521,1359,332,326,557,113,37289,32426,12929,566,270,11.4,8,8,14.2,2177,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.2,79,99600,243,1359,332,123,353,60,13638,6993,6666,271,270,12.5,8,8,16.1,2743,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,7.1,74,99600,17,467,319,5,176,3,603,0,334,12,280,13.1,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,6.0,68,99600,0,0,318,0,0,0,0,0,0,0,270,14.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,5.4,66,99700,0,0,314,0,0,0,0,0,0,0,280,11.5,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,3.9,61,99700,0,0,308,0,0,0,0,0,0,0,290,12.6,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,3.9,61,99700,0,0,308,0,0,0,0,0,0,0,290,10.4,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,5.0,1.0 +2012,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,11.0,3.9,62,99700,0,0,308,0,0,0,0,0,0,0,280,10.6,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,3.8,63,99700,0,0,305,0,0,0,0,0,0,0,290,8.4,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.8,3.2,64,99700,0,0,302,0,0,0,0,0,0,0,290,5.2,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,2.8,69,99800,0,0,295,0,0,0,0,0,0,0,30,1.5,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,2.8,69,99800,0,0,295,0,0,0,0,0,0,0,40,1.5,3,3,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.5,2.7,72,99800,0,0,292,0,0,0,0,0,0,0,60,1.6,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,2.3,61,99900,44,749,300,21,645,0,4155,0,0,0,350,1.9,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,3.3,62,100000,303,1358,304,208,747,42,24401,17334,4901,194,350,0.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,3.2,56,100000,578,1358,310,463,968,51,57078,47718,6335,263,260,0.5,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,3.1,53,100100,822,1358,313,654,935,88,80853,56568,10856,484,260,5.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,5.0,55,100100,1020,1358,327,803,912,119,100013,57922,14806,683,270,7.7,5,5,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,5.4,55,100200,1157,1358,329,930,952,119,117873,59569,15151,691,270,9.3,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,4.1,50,100200,1224,1358,328,996,978,115,127624,60882,14833,661,270,9.4,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,5.7,54,100300,1216,1358,332,1009,1016,100,130468,61132,12938,573,270,9.8,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.2,56,100300,1134,1358,333,942,1016,94,121068,60691,12064,543,260,9.8,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.7,58,100300,984,1358,334,787,941,105,98254,57709,13122,600,260,10.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.7,58,100300,776,1358,334,587,846,104,71063,51736,12624,567,270,11.8,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,7.0,61,100300,523,1358,331,369,748,81,43423,38605,9543,408,270,11.8,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.2,65,100300,246,1358,329,146,537,48,16484,8332,5485,219,270,11.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,7.3,68,100400,18,484,326,5,352,0,719,0,32,1,270,8.9,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,7.8,71,100500,0,0,344,0,0,0,0,0,0,0,280,5.5,9,9,16.1,1981,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,7.7,69,100500,0,0,333,0,0,0,0,0,0,0,270,3.4,7,7,16.1,1981,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,7.3,70,100600,0,0,306,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,7.9,76,100600,0,0,304,0,0,0,0,0,0,0,140,2.2,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.2,79,100700,0,0,302,0,0,0,0,0,0,0,90,2.6,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.5,7.7,78,100700,0,0,301,0,0,0,0,0,0,0,60,2.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,6.7,81,100700,0,0,293,0,0,0,0,0,0,0,80,2.0,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,6.7,83,100800,0,0,304,0,0,0,0,0,0,0,80,1.5,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.7,83,100800,0,0,308,0,0,0,0,0,0,0,90,1.5,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.2,6.8,85,100800,0,0,310,0,0,0,0,0,0,0,80,0.6,6,6,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,7.3,80,100900,48,776,326,23,645,0,3404,0,30,1,100,2.5,8,8,16.1,488,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,7.8,79,100900,308,1358,318,202,666,51,23279,16822,5837,235,100,2.5,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,7.8,69,101000,583,1358,327,443,872,69,53396,44498,8337,355,90,1.9,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,7.7,66,101000,827,1358,328,643,894,99,78776,53763,12169,548,90,0.0,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.7,58,101000,1024,1358,328,835,978,97,105447,58967,12279,558,250,0.0,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,8.8,64,101000,1160,1358,339,919,921,132,115461,57210,16618,763,250,5.2,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,8.3,60,101000,1227,1358,341,994,967,120,126814,58754,15356,686,270,5.7,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,8.4,60,100900,1219,1358,341,1003,999,106,129010,59431,13740,611,250,5.7,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,8.9,63,100900,1137,1358,341,929,984,105,118361,58625,13457,611,260,5.8,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,8.9,65,100800,987,1358,338,759,865,130,93205,54637,16035,745,250,6.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.9,67,100800,778,1358,336,562,759,127,66972,48182,15197,694,250,5.7,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.9,67,100800,526,1358,336,360,697,90,42022,36801,10549,455,260,6.0,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,9.0,68,100800,249,1358,336,148,538,49,16711,8281,5555,222,260,6.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,9.4,75,100800,20,500,331,6,410,0,927,0,10,0,260,5.5,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.3,77,100800,0,0,340,0,0,0,0,0,0,0,260,4.0,8,8,16.1,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,8.9,77,100800,0,0,318,0,0,0,0,0,0,0,260,3.0,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,9.0,78,100900,0,0,307,0,0,0,0,0,0,0,250,2.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,9.5,84,100900,0,0,306,0,0,0,0,0,0,0,250,1.9,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.0,86,100900,0,0,306,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,9.9,86,100900,0,0,319,0,0,0,0,0,0,0,250,0.0,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.9,83,100800,0,0,313,0,0,0,0,0,0,0,250,0.0,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.8,82,100800,0,0,303,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.3,80,100800,0,0,302,0,0,0,0,0,0,0,330,0.0,0,0,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,9.0,84,100800,0,0,303,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,9.4,85,100800,51,803,322,26,318,14,2884,0,1564,59,330,0.2,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,9.4,77,100900,314,1357,329,202,637,54,23132,16869,6252,253,330,1.5,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,9.3,69,100900,587,1357,336,433,813,81,51531,42858,9632,415,250,1.5,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,9.2,55,100900,831,1357,352,680,989,74,85052,55307,9341,413,60,1.9,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,11.0,64,100900,1028,1357,353,827,953,105,103737,56101,13256,608,260,5.1,5,5,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,9.9,68,100900,1164,1357,338,916,909,136,114836,56313,17151,790,270,5.7,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,9.4,64,100900,1230,1357,337,941,855,167,117293,55196,20884,953,270,5.8,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,9.6,62,100800,1221,1357,341,1005,999,107,129253,58734,13751,611,270,6.2,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,10.1,65,100800,1139,1357,343,980,1083,71,128383,59921,9262,409,270,6.1,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,10.6,67,100700,989,1357,341,831,1036,76,106151,57764,9680,433,260,5.6,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,11.0,68,100700,781,1357,348,584,821,111,70210,49162,13416,607,270,5.1,5,5,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,10.2,69,100700,529,1357,342,364,702,90,42410,36568,10508,453,270,5.1,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,9.4,70,100700,252,1357,334,148,527,51,16776,8636,5725,229,270,5.0,4,4,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,9.5,72,100600,21,516,329,7,460,0,1356,0,0,0,260,4.2,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.0,75,100600,0,0,326,0,0,0,0,0,0,0,250,4.3,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.0,75,100700,0,0,316,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.0,75,100700,0,0,316,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,10.0,75,100600,0,0,329,0,0,0,0,0,0,0,130,0.2,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.0,77,100600,0,0,327,0,0,0,0,0,0,0,130,1.9,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,9.9,77,100600,0,0,327,0,0,0,0,0,0,0,130,0.0,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,9.3,77,100600,0,0,323,0,0,0,0,0,0,0,90,0.2,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,8.8,80,100500,0,0,318,0,0,0,0,0,0,0,90,2.1,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,8.3,80,100500,0,0,315,0,0,0,0,0,0,0,90,2.1,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,9.5,86,100500,0,0,317,0,0,0,0,0,0,0,80,1.6,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,10.7,85,100500,54,829,329,29,730,0,5764,0,0,0,100,2.5,5,5,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.3,11.6,79,100600,319,1356,338,226,791,40,26589,16347,4716,187,60,1.3,4,4,14.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,11.1,67,100600,592,1356,345,493,1033,42,61658,45589,5212,214,260,0.4,3,3,15.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,11.2,61,100600,835,1356,352,716,1077,53,91823,55772,6795,294,260,3.5,3,3,13.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,11.7,63,100600,1031,1356,352,850,1000,90,107844,56651,11487,521,260,3.1,3,3,14.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,11.5,62,100600,1167,1356,353,957,991,105,122284,57254,13438,607,270,4.6,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,10.0,55,100500,1232,1356,353,1006,981,114,128833,58102,14654,650,270,4.6,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,9.9,55,100500,1224,1356,352,1040,1060,83,136101,59782,10885,474,270,4.8,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,9.5,54,100400,1141,1356,350,973,1065,77,126837,59936,9999,444,270,6.2,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,10.0,57,100400,991,1356,350,805,971,96,101203,56755,12077,549,260,6.3,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,10.0,60,100400,783,1356,345,594,848,104,71913,50471,12669,571,270,6.7,3,3,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,9.7,58,100300,532,1356,346,388,805,73,46100,39255,8643,367,270,5.9,3,3,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,9.5,57,100300,255,1356,347,161,620,44,18390,8647,5048,200,270,5.0,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,10.1,64,100300,22,533,344,7,416,0,1027,0,25,1,250,4.1,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.6,73,100300,0,0,332,0,0,0,0,0,0,0,250,4.0,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.6,76,100300,0,0,319,0,0,0,0,0,0,0,250,3.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.6,78,100300,0,0,316,0,0,0,0,0,0,0,260,2.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.6,78,100400,0,0,316,0,0,0,0,0,0,0,170,1.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,10.6,78,100400,0,0,316,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.7,84,100300,0,0,312,0,0,0,0,0,0,0,120,1.5,0,0,15.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.1,87,100300,0,0,312,0,0,0,0,0,0,0,130,1.6,0,0,13.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100300,0,0,310,0,0,0,0,0,0,0,140,2.1,0,0,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100300,0,0,328,0,0,0,0,0,0,0,180,2.1,5,5,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,11.2,87,100300,0,0,331,0,0,0,0,0,0,0,180,0.0,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,11.7,86,100300,58,855,335,32,328,18,3499,0,1979,76,180,0.0,5,5,15.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,11.7,80,100400,324,1355,340,211,656,54,24293,17317,6272,254,250,0.0,5,5,14.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,11.6,71,100400,597,1355,369,356,473,148,40437,30540,16841,762,250,0.0,9,9,14.5,7620,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,11.2,61,100400,839,1355,378,535,539,201,62030,38937,23459,1117,250,0.4,9,9,14.7,7620,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.7,65,100400,1035,1355,368,690,599,233,81566,43504,27667,1344,250,3.6,8,8,16.0,7620,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,11.0,59,100400,1170,1355,380,752,530,294,88986,40753,35047,1704,260,4.2,9,9,16.1,7620,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,10.7,59,100300,1235,1355,369,815,573,293,97348,43299,35177,1667,260,5.2,8,8,16.1,7620,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.2,63,100300,1226,1355,352,1012,1003,104,130306,57789,13487,597,250,5.7,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.6,65,100300,1144,1355,349,956,1026,90,123073,57785,11615,522,260,5.5,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.1,63,100300,993,1355,348,805,965,97,101047,55964,12252,558,260,4.2,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.1,65,100200,786,1355,346,611,895,93,74615,51080,11347,507,260,4.6,3,3,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,11.1,66,100200,535,1355,345,390,805,73,46314,38716,8685,369,260,4.6,3,3,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,11.0,67,100200,258,1355,343,160,598,46,18276,8722,5294,211,260,4.4,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,10.7,68,100200,24,549,366,8,457,0,1304,0,4,0,270,3.2,9,9,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.1,75,100200,0,0,362,0,0,0,0,0,0,0,280,3.5,9,9,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.2,75,100200,0,0,354,0,0,0,0,0,0,0,250,2.3,8,8,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,11.7,77,100300,0,0,342,0,0,0,0,0,0,0,250,0.0,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.7,76,100300,0,0,341,0,0,0,0,0,0,0,150,0.3,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.7,81,100300,0,0,334,0,0,0,0,0,0,0,150,2.6,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.7,84,100300,0,0,336,0,0,0,0,0,0,0,80,2.5,5,5,15.3,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,100200,0,0,354,0,0,0,0,0,0,0,150,2.1,9,9,9.3,244,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,100200,0,0,364,0,0,0,0,0,0,0,150,2.1,10,10,6.8,236,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,100200,0,0,364,0,0,0,0,0,0,0,140,2.1,10,10,9.0,190,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,11.2,87,100200,0,0,361,0,0,0,0,0,0,0,160,2.6,10,10,9.1,244,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.8,87,100300,61,881,354,24,133,18,2635,0,1981,76,100,2.5,9,9,4.8,254,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.7,83,100300,329,1355,357,155,266,90,17140,10522,10028,423,80,1.5,9,9,5.0,315,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,11.6,77,100300,601,1355,355,370,517,141,42275,32719,16147,729,80,1.9,8,8,6.7,396,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,11.8,75,100300,843,1355,345,622,790,130,74660,49035,15674,723,280,3.0,5,5,8.2,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,100400,1038,1355,348,779,815,155,95035,51733,18940,893,280,2.6,5,5,9.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,11.8,71,100300,1173,1355,349,906,870,153,112640,54156,19071,883,250,4.2,5,5,9.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.2,78,100300,1238,1355,345,949,856,167,118167,53662,20881,949,270,4.7,5,5,9.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.7,80,100300,1228,1355,346,972,919,139,122610,54970,17555,792,270,4.6,5,5,9.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.2,78,100200,1146,1355,345,907,919,130,113800,55100,16355,754,270,4.5,5,5,11.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.2,77,100200,996,1355,345,781,902,118,96648,53821,14695,680,270,4.0,5,5,9.8,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,100100,788,1355,348,597,843,106,72094,49232,12890,583,280,3.6,5,5,11.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,100100,537,1355,343,410,880,61,49285,39485,7341,308,270,3.6,3,3,12.8,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.2,75,100100,262,1355,342,171,676,41,19731,8018,4699,186,270,3.6,3,3,14.5,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.3,81,100100,25,566,337,9,488,0,1749,0,0,0,270,3.4,3,3,14.5,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100200,0,0,332,0,0,0,0,0,0,0,260,2.0,2,2,14.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.8,86,100200,0,0,322,0,0,0,0,0,0,0,260,1.3,0,0,12.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.9,82,100300,0,0,326,0,0,0,0,0,0,0,120,0.4,0,0,12.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.3,87,100300,0,0,324,0,0,0,0,0,0,0,120,3.0,0,0,12.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100300,0,0,336,0,0,0,0,0,0,0,130,2.6,3,3,12.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,13.2,90,100300,0,0,335,0,0,0,0,0,0,0,110,2.5,3,3,10.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.9,94,100200,0,0,330,0,0,0,0,0,0,0,120,1.9,3,3,8.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,13.2,96,100200,0,0,336,0,0,0,0,0,0,0,120,0.0,5,5,8.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,13.3,96,100200,0,0,348,0,0,0,0,0,0,0,330,0.0,8,8,6.0,183,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.2,93,100200,0,0,345,0,0,0,0,0,0,0,330,0.4,7,7,3.6,175,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.3,93,100300,65,907,325,39,133,33,4081,0,3429,139,330,0.0,1,1,2.4,159,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,13.3,92,100300,334,1354,359,158,267,92,17413,10480,10188,431,350,0.0,9,9,2.5,213,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.1,80,100300,606,1354,351,417,691,108,48625,38679,12596,558,350,1.8,6,6,4.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,13.3,74,100300,847,1354,350,685,964,82,85143,52466,10225,457,280,0.6,3,3,6.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,13.0,77,100300,1041,1354,345,842,960,104,105868,54959,13080,599,280,5.1,3,3,9.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.3,80,100300,1175,1354,344,937,931,128,117969,54704,16188,740,260,4.3,3,3,11.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.2,78,100300,1240,1354,348,962,879,157,120325,53633,19728,892,270,6.2,4,4,11.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.2,79,100300,1231,1354,370,809,565,295,96407,41911,35375,1682,250,5.3,9,9,1.6,51,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100200,1148,1354,367,758,576,270,90003,42213,32183,1564,270,6.1,9,9,2.3,152,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.2,83,100100,998,1354,377,574,375,298,66137,29889,34531,1711,270,5.5,10,10,1.5,152,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100100,790,1354,371,414,289,246,46869,22527,27971,1349,260,5.7,10,10,1.2,145,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.0,88,100100,540,1354,371,268,273,159,29919,17904,17850,808,280,5.7,10,10,1.2,91,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.2,93,100100,265,1354,368,100,137,73,10957,3484,8047,333,230,4.5,10,10,0.7,91,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,13.3,96,100100,27,583,366,10,68,9,1115,0,967,36,270,3.8,10,10,0.8,91,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,13.2,96,100200,0,0,366,0,0,0,0,0,0,0,260,1.5,10,10,1.3,91,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,13.3,96,100200,0,0,366,0,0,0,0,0,0,0,270,1.5,10,10,0.9,91,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,13.3,96,100300,0,0,366,0,0,0,0,0,0,0,250,0.0,10,10,2.4,91,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,13.3,96,100300,0,0,366,0,0,0,0,0,0,0,250,0.0,10,10,2.4,91,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,13.3,93,100300,0,0,351,0,0,0,0,0,0,0,120,0.2,8,8,2.5,98,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,13.3,90,100300,0,0,321,0,0,0,0,0,0,0,120,1.9,0,0,3.2,152,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,13.0,94,100200,0,0,366,0,0,0,0,0,0,0,120,0.0,10,10,4.8,183,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.3,93,100200,0,0,368,0,0,0,0,0,0,0,40,0.0,10,10,4.8,183,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.3,93,100100,0,0,368,0,0,0,0,0,0,0,40,0.0,10,10,4.8,183,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,13.2,90,100100,0,0,347,0,0,0,0,0,0,0,40,1.1,7,7,3.6,175,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.9,93,100200,68,932,329,42,94,37,4359,0,3883,158,40,0.0,1,1,2.5,162,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,13.9,93,100200,339,1353,373,144,188,97,15841,7698,10688,455,250,0.3,10,10,3.2,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100200,610,1353,378,310,284,182,34715,19752,20505,947,250,2.6,10,10,3.0,220,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.8,89,100200,851,1353,375,437,260,273,49451,20794,31138,1523,270,2.7,10,10,2.2,122,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100200,1045,1353,374,551,268,344,63198,22406,39726,1989,270,3.1,10,10,3.2,135,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.2,79,100200,1178,1353,357,819,668,238,98597,46471,28785,1375,280,3.8,7,7,7.0,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.1,82,100200,1242,1353,354,897,738,219,109517,49373,26936,1245,270,5.5,7,7,8.0,152,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.2,83,100200,1233,1353,377,773,487,330,91424,37662,39229,1878,270,5.1,10,10,7.6,143,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.2,85,100100,1150,1353,375,696,436,326,81479,34399,38396,1892,260,6.1,10,10,5.4,122,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.1,83,100100,1000,1353,376,590,409,288,68247,32195,33461,1654,250,4.5,10,10,1.1,122,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100100,793,1353,383,460,408,221,52522,30353,25372,1214,260,4.6,10,10,1.2,122,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.3,84,100100,543,1353,377,284,324,154,31780,20808,17328,783,260,4.9,10,10,1.2,122,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,13.3,91,100100,268,1353,370,104,151,74,11438,3976,8178,339,260,5.0,10,10,1.1,122,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.8,93,100100,28,599,365,11,76,9,1221,0,1049,39,260,3.5,10,10,0.4,122,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.9,94,100200,0,0,365,0,0,0,0,0,0,0,250,3.1,10,10,0.5,122,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,12.8,97,100300,0,0,362,0,0,0,0,0,0,0,280,1.8,10,10,0.9,122,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,12.8,96,100300,0,0,363,0,0,0,0,0,0,0,280,0.0,10,10,1.9,134,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.9,90,100300,0,0,368,0,0,0,0,0,0,0,280,0.0,10,10,3.2,190,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100300,0,0,371,0,0,0,0,0,0,0,240,0.0,10,10,3.2,244,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,13.3,90,100300,0,0,371,0,0,0,0,0,0,0,240,0.4,10,10,3.2,251,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.3,94,100200,0,0,368,0,0,0,0,0,0,0,240,2.9,10,10,3.2,296,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.3,93,100200,0,0,368,0,0,0,0,0,0,0,260,1.6,10,10,3.2,244,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.3,93,100200,0,0,368,0,0,0,0,0,0,0,270,2.6,10,10,3.2,214,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,13.3,97,100200,0,0,365,0,0,0,0,0,0,0,280,3.0,10,10,0.8,61,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,13.3,99,100200,72,957,363,23,75,19,2509,0,2071,80,260,1.9,10,10,0.8,64,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,13.2,96,100200,344,1352,366,137,151,99,15067,6379,10895,464,250,0.5,10,10,0.9,110,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.3,94,100300,614,1352,368,302,252,188,33765,17906,21075,975,250,2.2,10,10,3.1,213,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.3,93,100300,854,1352,368,446,277,271,50621,22159,30966,1514,260,2.2,10,10,4.1,205,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.3,93,100400,1048,1352,368,554,271,344,63620,22643,39776,1991,250,2.6,10,10,4.8,152,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,13.3,89,100400,1181,1352,372,677,356,366,78780,29189,42868,2113,270,3.1,10,10,6.8,166,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,13.2,85,100300,1245,1352,375,758,440,353,89299,34872,41859,1999,280,3.6,10,10,9.7,302,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.8,81,100300,1235,1352,376,805,551,302,95909,41329,36159,1716,270,5.6,10,10,11.6,385,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.8,83,100300,1152,1352,374,738,523,292,87118,39643,34663,1692,270,5.3,10,10,14.5,291,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100300,1002,1352,371,584,392,294,67471,31154,34132,1689,270,6.5,10,10,14.3,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.3,12.8,85,100300,795,1352,372,433,328,240,49105,25415,27348,1316,280,5.1,10,10,12.0,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,12.8,86,100300,545,1352,372,276,288,159,30776,18942,17886,810,260,4.8,10,10,14.2,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,12.7,85,100200,271,1352,372,112,187,75,12359,5126,8271,343,260,4.4,10,10,16.1,251,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100200,30,616,370,12,93,10,1330,0,1106,42,270,2.6,10,10,16.1,297,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.2,90,100200,0,0,364,0,0,0,0,0,0,0,240,2.5,10,10,16.1,244,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,12.2,89,100300,0,0,365,0,0,0,0,0,0,0,270,2.3,10,10,16.1,244,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,12.2,87,100300,0,0,366,0,0,0,0,0,0,0,260,3.6,10,10,15.5,236,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,12.2,93,100300,0,0,361,0,0,0,0,0,0,0,280,3.5,10,10,11.5,190,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,12.2,93,100300,0,0,361,0,0,0,0,0,0,0,300,3.1,10,10,12.9,244,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,12.8,98,100300,0,0,351,0,0,0,0,0,0,0,260,3.1,9,9,5.4,149,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,13.0,100,100400,0,0,361,0,0,0,0,0,0,0,270,3.1,10,10,4.8,457,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,12.0,94,100400,0,0,360,0,0,0,0,0,0,0,270,2.1,10,10,6.4,152,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,12.2,96,100400,0,0,359,0,0,0,0,0,0,0,270,2.1,10,10,6.0,159,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,12.1,95,100400,0,0,359,0,0,0,0,0,0,0,270,2.1,10,10,10.3,402,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,12.2,93,100400,76,982,361,26,93,20,2821,0,2254,87,260,1.7,10,10,11.3,339,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,12.2,92,100500,348,1352,362,148,186,100,16295,8148,11062,472,240,2.5,10,10,11.5,777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.2,90,100500,618,1352,364,309,266,188,34617,19083,21109,977,260,2.2,10,10,13.3,649,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,12.2,88,100500,858,1352,365,443,265,275,50295,21516,31409,1536,280,2.9,10,10,16.1,597,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100500,1051,1352,369,575,308,336,66267,25769,38922,1943,290,2.6,10,10,16.0,701,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100500,1184,1352,369,683,364,364,79664,30197,42713,2100,260,3.7,10,10,16.1,722,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,11.8,79,100500,1247,1352,372,756,431,358,89000,34734,42442,2023,280,4.3,10,10,16.1,905,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.6,75,100600,1237,1352,374,783,501,325,92838,39001,38754,1845,270,4.5,10,10,16.1,1133,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,11.2,78,100500,1154,1352,369,719,478,311,84611,37627,36771,1801,270,3.9,10,10,16.1,952,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.6,77,100500,1004,1352,372,594,411,289,68778,32749,33609,1660,270,2.7,10,10,16.1,998,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.1,75,100500,797,1352,372,431,321,242,48980,25284,27657,1331,280,3.1,10,10,16.0,943,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.1,75,100500,548,1352,372,283,310,158,31718,20615,17746,802,280,2.8,10,10,16.0,927,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.1,75,100400,274,1352,372,110,165,76,12062,4845,8410,349,280,2.6,10,10,16.1,906,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,10.9,72,100400,31,632,373,13,82,11,1432,0,1226,46,250,3.1,10,10,16.1,906,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.6,75,100500,0,0,368,0,0,0,0,0,0,0,280,3.6,10,10,16.1,1074,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.6,75,100500,0,0,368,0,0,0,0,0,0,0,250,0.4,10,10,16.1,1128,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,10.7,76,100600,0,0,368,0,0,0,0,0,0,0,250,3.1,10,10,16.1,1128,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.1,80,100600,0,0,366,0,0,0,0,0,0,0,250,2.9,10,10,16.1,1131,9,999999999,200,0.0000,0,88,999.000,5.0,1.0 +2012,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,14.9,11.1,78,100600,0,0,368,0,0,0,0,0,0,0,270,1.5,10,10,16.1,1158,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.2,81,100600,0,0,356,0,0,0,0,0,0,0,250,1.6,9,9,16.1,1165,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.1,86,100600,0,0,357,0,0,0,0,0,0,0,270,2.1,9,9,16.1,1219,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.1,81,100500,0,0,348,0,0,0,0,0,0,0,360,1.9,8,8,16.1,1219,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,11.1,83,100500,0,0,334,0,0,0,0,0,0,0,360,0.0,5,5,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,11.1,79,100600,0,0,337,0,0,0,0,0,0,0,10,0.2,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.1,83,100600,79,1006,353,29,263,13,3289,0,1520,56,10,2.1,9,9,16.1,7336,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,10.8,75,100600,353,1351,359,167,266,98,18530,11829,10879,463,10,2.2,9,9,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,8.9,59,100600,622,1351,365,349,387,171,39472,27340,19404,890,10,3.0,9,9,16.1,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,9.0,54,100500,861,1351,374,546,525,211,63410,39141,24631,1179,50,2.6,9,9,16.1,6273,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,9.4,49,100500,1054,1351,377,745,700,199,89540,48965,24031,1152,50,2.6,8,8,16.0,7620,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,9.3,51,100500,1186,1351,381,778,562,284,92705,43036,34083,1641,250,6.3,9,9,16.1,7299,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,8.9,54,100600,1249,1351,373,764,445,352,90300,36425,41893,1988,250,7.1,9,9,16.1,4805,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,8.9,55,100500,1239,1351,372,742,413,363,87330,34301,42970,2057,260,6.5,9,9,16.1,4267,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,9.0,59,100400,1156,1351,367,698,430,330,81841,35175,38956,1913,260,5.3,9,9,16.1,4480,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,10.0,63,100300,1006,1351,378,566,345,309,65272,28609,35883,1780,270,6.6,10,10,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,10.0,65,100300,800,1351,376,415,275,252,46990,22265,28678,1384,280,6.2,10,10,16.0,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,10.3,66,100300,551,1351,377,273,269,163,30511,18359,18352,832,290,5.4,10,10,16.0,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,10.6,68,100300,277,1351,376,108,149,77,11848,4528,8513,353,290,4.4,10,10,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,10.8,71,100400,33,649,373,14,75,12,1534,0,1339,51,260,3.6,10,10,16.1,6096,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.3,81,100500,0,0,373,0,0,0,0,0,0,0,260,7.5,10,10,16.1,6096,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.7,83,100500,0,0,373,0,0,0,0,0,0,0,270,6.0,10,10,16.1,6096,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.2,83,100500,0,0,371,0,0,0,0,0,0,0,240,3.9,10,10,16.1,6096,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.2,81,100400,0,0,373,0,0,0,0,0,0,0,210,2.3,10,10,16.1,6096,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.3,84,100500,0,0,360,0,0,0,0,0,0,0,250,3.9,9,9,16.1,6084,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.7,86,100500,0,0,361,0,0,0,0,0,0,0,250,2.3,9,9,16.1,5762,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.3,81,100400,0,0,373,0,0,0,0,0,0,0,250,0.0,10,10,16.1,3926,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100400,0,0,374,0,0,0,0,0,0,0,260,0.3,10,10,16.1,3622,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100300,0,0,374,0,0,0,0,0,0,0,260,2.6,10,10,16.0,3601,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,12.8,89,100300,0,0,359,0,0,0,0,0,0,0,210,1.6,9,9,16.1,5405,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.8,86,100200,83,1030,361,30,124,22,3301,0,2471,96,130,2.7,9,9,16.1,4808,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.8,80,100200,357,1350,367,166,247,100,18318,10930,11134,476,130,3.1,9,9,16.1,4877,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,12.7,73,100200,626,1350,373,364,433,163,41316,29001,18620,853,330,2.9,9,9,16.1,4948,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,11.8,59,100100,865,1350,386,553,540,207,64334,39062,24222,1160,300,1.6,9,9,16.1,5486,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,99900,1057,1350,381,728,653,217,86779,45488,26027,1257,300,2.1,8,8,16.0,5486,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,11.7,45,99900,1188,1350,409,873,769,196,106861,51025,24085,1129,270,1.7,9,9,16.1,5486,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,11.9,44,99800,1251,1350,413,897,722,227,109429,49348,27910,1282,270,3.3,9,9,16.1,5486,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.2,61,99700,1241,1350,393,822,578,291,98301,42495,34981,1648,250,5.0,9,9,16.1,5414,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,12.2,57,99700,1158,1350,392,676,383,348,78901,31244,40875,2017,270,4.3,9,9,16.1,4841,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,12.3,57,99700,1008,1350,392,550,308,320,63208,25481,36995,1842,240,6.7,9,9,16.1,4927,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.3,75,99800,802,1350,367,466,408,224,53266,30451,25709,1232,260,10.3,8,8,16.0,7442,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.7,72,99900,553,1350,375,271,258,165,30244,17321,18539,843,250,9.8,9,9,16.0,5918,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.3,71,99900,280,1350,374,106,135,78,11642,4046,8582,357,250,8.5,9,9,16.1,4465,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.9,78,99900,34,665,369,15,68,13,1634,0,1450,56,230,3.0,9,9,16.1,3942,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.2,80,100000,0,0,369,0,0,0,0,0,0,0,190,6.0,9,9,16.1,5775,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.7,80,100000,0,0,366,0,0,0,0,0,0,0,110,4.0,9,9,16.1,3246,9,999999999,229,0.0000,0,88,999.000,8.0,1.0 +2012,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,16.8,12.8,77,100100,0,0,380,0,0,0,0,0,0,0,230,4.0,10,10,12.7,1819,9,999999999,229,0.0000,0,88,999.000,30.0,1.0 +2012,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,15.0,14.0,94,100200,0,0,372,0,0,0,0,0,0,0,200,4.8,10,10,6.9,536,9,999999999,250,0.0000,0,88,999.000,33.0,1.0 +2012,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,15.0,14.4,96,100100,0,0,373,0,0,0,0,0,0,0,70,3.0,10,10,10.0,772,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,14.4,96,100000,0,0,373,0,0,0,0,0,0,0,90,5.4,10,10,13.3,801,9,999999999,250,0.0000,0,88,999.000,10.0,1.0 +2012,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,15.5,14.3,93,99900,0,0,375,0,0,0,0,0,0,0,120,3.5,10,10,14.8,427,9,999999999,250,0.0000,0,88,999.000,5.0,1.0 +2012,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,15.0,13.9,93,99900,0,0,372,0,0,0,0,0,0,0,120,2.3,10,10,5.0,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.9,93,99900,0,0,372,0,0,0,0,0,0,0,50,0.0,10,10,6.0,469,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,14.3,96,99900,0,0,362,0,0,0,0,0,0,0,50,0.6,9,9,8.7,1830,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,14.0,94,100000,87,1054,349,39,112,32,4186,0,3428,136,120,0.9,7,7,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,13.7,93,100200,362,1349,361,163,223,103,17973,9986,11407,489,190,3.0,9,9,15.7,425,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,13.1,84,100300,630,1349,365,343,350,179,38588,24338,20290,938,210,5.1,9,9,14.5,947,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.7,88,100400,868,1349,365,490,361,257,55938,28018,29544,1440,250,4.9,9,9,14.5,812,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,13.3,82,100400,1059,1349,360,680,530,264,79840,39402,31143,1527,250,4.6,8,8,14.0,411,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,13.2,76,100400,1191,1349,373,747,487,317,88099,37508,37644,1828,250,1.5,9,9,14.5,586,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.9,73,100500,1253,1349,375,837,592,288,100320,43265,34681,1618,250,3.6,9,9,14.5,772,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.8,80,100600,1243,1349,373,845,624,270,101561,44342,32694,1530,260,5.6,9,9,16.1,1612,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100600,1160,1349,364,822,701,219,99269,47598,26639,1270,260,5.2,8,8,16.1,2286,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100600,1010,1349,351,778,863,132,95680,52096,16283,760,250,5.7,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100600,804,1349,362,511,536,192,59135,37484,22293,1056,260,5.7,8,8,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,13.1,78,100600,556,1349,363,331,477,135,37569,28840,15363,688,270,6.1,8,8,16.1,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.1,80,100600,283,1349,343,179,619,49,20473,11332,5665,228,260,5.9,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.8,76,100500,36,682,339,16,604,0,3140,0,0,0,270,7.1,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.2,81,100500,0,0,337,0,0,0,0,0,0,0,260,6.0,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.3,84,100600,0,0,335,0,0,0,0,0,0,0,240,4.5,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100600,0,0,336,0,0,0,0,0,0,0,240,3.8,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,13.2,91,100600,0,0,342,0,0,0,0,0,0,0,270,1.5,6,6,16.1,77777,9,999999999,229,0.0000,0,88,999.000,15.0,1.0 +2012,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,14.3,10.1,76,100600,0,0,334,0,0,0,0,0,0,0,270,3.6,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.4,79,100600,0,0,339,0,0,0,0,0,0,0,230,1.7,7,7,16.1,427,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.0,80,100600,0,0,329,0,0,0,0,0,0,0,180,0.0,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.9,80,100600,0,0,341,0,0,0,0,0,0,0,180,0.0,8,8,16.1,1676,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,9.4,77,100500,0,0,329,0,0,0,0,0,0,0,180,0.0,5,5,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,10.1,83,100600,0,0,328,0,0,0,0,0,0,0,110,0.0,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,10.6,83,100600,103,1223,331,52,446,18,5916,0,2037,76,110,0.2,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,10.6,75,100600,366,1349,338,230,584,71,26201,21697,8120,337,110,1.3,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,10.7,70,100700,634,1349,344,462,783,94,54885,43589,11178,491,110,0.2,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,11.2,65,100700,871,1349,352,676,880,108,82770,52240,13222,603,250,2.3,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.7,65,100600,1062,1349,368,710,598,239,84175,43517,28471,1384,250,4.1,8,8,16.0,1067,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.7,68,100600,1193,1349,349,956,939,125,121046,55821,15927,722,270,6.1,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,11.6,69,100600,1255,1349,345,1006,941,130,128050,56028,16661,732,250,5.8,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.0,64,100500,1245,1349,346,1044,1030,93,135898,58275,12199,528,260,6.6,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,10.4,62,100500,1162,1349,346,1002,1083,70,131892,59538,9186,403,270,6.3,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,9.0,55,100400,1012,1349,346,856,1043,73,110155,58870,9463,423,260,6.8,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,10.0,60,100300,806,1349,345,638,920,88,78556,52681,10848,484,280,7.2,3,3,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,9.7,61,100300,558,1349,342,408,799,78,48517,40742,9245,396,260,7.2,3,3,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,9.3,62,100300,286,1349,339,173,550,56,19608,13130,6381,258,260,7.0,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,9.0,63,100300,38,699,336,17,275,9,1921,0,1050,39,250,4.8,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,10.1,68,100300,0,0,334,0,0,0,0,0,0,0,230,2.5,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,10.7,71,100300,0,0,324,0,0,0,0,0,0,0,220,2.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.2,76,100300,0,0,322,0,0,0,0,0,0,0,210,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100300,0,0,320,0,0,0,0,0,0,0,170,1.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.6,80,100200,0,0,320,0,0,0,0,0,0,0,160,1.9,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.1,78,100200,0,0,319,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.2,82,100100,0,0,317,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.6,86,100100,0,0,315,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.1,83,100100,0,0,315,0,0,0,0,0,0,0,90,0.0,0,0,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,10.7,84,100000,0,0,326,0,0,0,0,0,0,0,90,0.2,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,11.8,87,100100,107,1241,329,59,544,16,6787,0,1839,68,90,1.3,3,3,15.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.3,12.1,81,100100,370,1348,336,246,672,62,28427,22606,7123,293,90,0.0,3,3,13.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,11.6,69,100100,637,1348,351,473,814,88,56465,44007,10526,461,150,0.2,5,5,14.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,10.7,59,100000,874,1348,357,688,905,100,84691,53178,12418,564,150,2.3,5,5,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.7,61,100000,1065,1348,360,841,910,122,104892,54626,15318,709,270,4.1,5,5,14.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.1,59,100000,1195,1348,360,935,891,145,117238,54983,18213,832,270,5.1,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.1,59,99900,1257,1348,360,969,862,165,121247,54292,20700,922,270,5.2,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,11.0,59,99900,1246,1348,356,1024,989,109,131864,57422,14138,617,280,5.8,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,10.7,59,99800,1163,1348,351,984,1044,83,127862,58563,10828,481,270,6.1,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,11.0,60,99700,1014,1348,354,803,916,114,100023,54867,14281,658,250,5.6,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,10.6,59,99700,808,1348,351,627,882,98,76538,51440,12022,541,260,4.6,3,3,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,11.2,62,99700,561,1348,350,411,804,77,48893,40221,9175,393,250,4.3,3,3,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.8,66,99700,289,1348,349,179,581,54,20322,12727,6157,249,250,3.9,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.2,70,99700,40,715,347,18,291,9,2032,0,1069,40,200,2.5,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.2,73,99700,0,0,350,0,0,0,0,0,0,0,220,1.9,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,99800,0,0,345,0,0,0,0,0,0,0,110,0.2,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.3,76,99800,0,0,328,0,0,0,0,0,0,0,110,1.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,99800,0,0,327,0,0,0,0,0,0,0,100,4.9,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,99800,0,0,327,0,0,0,0,0,0,0,120,3.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.3,84,99800,0,0,326,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.0,82,99800,0,0,358,0,0,0,0,0,0,0,80,2.1,8,8,16.1,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,99800,0,0,336,0,0,0,0,0,0,0,70,2.1,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,99800,0,0,341,0,0,0,0,0,0,0,90,2.1,5,5,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.8,90,99800,0,0,332,0,0,0,0,0,0,0,80,1.6,3,3,15.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,12.8,89,99900,110,1255,333,60,514,18,6840,0,2045,77,100,2.3,3,3,11.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,12.8,80,100000,374,1347,347,233,571,74,26510,21362,8481,354,140,3.6,5,5,11.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,100000,641,1347,352,490,868,77,59117,44603,9330,405,130,3.2,4,4,11.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,12.7,69,100000,877,1347,348,725,998,75,91170,53928,9431,420,130,0.0,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.2,61,100000,1067,1347,344,960,1159,42,129142,59100,5665,244,130,0.0,0,0,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,12.9,60,100000,1197,1347,349,1077,1161,45,146479,59020,6127,259,130,2.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.2,61,100000,1259,1347,349,1132,1162,46,154719,58845,6337,259,250,5.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,12.8,64,100000,1248,1347,344,1122,1161,46,153218,59176,6319,260,270,5.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,12.8,66,100000,1165,1347,341,1048,1161,44,142114,59037,6034,257,250,6.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,12.8,68,100000,1016,1347,339,913,1157,41,122194,58218,5485,236,250,6.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.8,73,100000,810,1347,348,605,809,118,72752,48295,14231,650,240,5.7,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.9,73,100000,563,1347,362,340,491,134,38629,29806,15355,688,250,5.3,7,7,14.9,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.8,76,100000,292,1347,371,118,169,82,13038,5489,9034,378,260,4.1,9,9,15.9,663,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100000,41,732,366,20,85,17,2150,0,1876,73,250,4.0,9,9,14.7,588,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100100,0,0,376,0,0,0,0,0,0,0,280,3.4,10,10,16.1,423,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.8,81,100100,0,0,376,0,0,0,0,0,0,0,270,2.0,10,10,15.9,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.8,83,100200,0,0,374,0,0,0,0,0,0,0,250,1.8,10,10,14.5,408,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100200,0,0,376,0,0,0,0,0,0,0,250,3.0,10,10,14.5,457,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100200,0,0,376,0,0,0,0,0,0,0,300,2.6,10,10,14.2,443,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.9,82,100200,0,0,376,0,0,0,0,0,0,0,270,2.1,10,10,12.9,373,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,100200,0,0,375,0,0,0,0,0,0,0,300,1.9,10,10,12.7,419,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,100200,0,0,375,0,0,0,0,0,0,0,280,0.2,10,10,11.3,373,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,100200,0,0,375,0,0,0,0,0,0,0,280,1.5,10,10,11.0,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.8,89,100200,0,0,375,0,0,0,0,0,0,0,250,3.0,10,10,11.3,419,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.3,86,100200,113,1269,375,35,102,27,3904,0,2962,114,230,2.1,10,10,11.3,366,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100200,378,1347,377,154,157,110,17031,7584,12209,527,240,2.2,10,10,11.3,373,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,13.2,82,100300,644,1347,378,313,234,201,35008,17152,22580,1055,240,2.9,10,10,11.3,443,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.8,77,100300,880,1347,380,455,261,284,51691,21262,32472,1596,250,3.7,10,10,12.9,488,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100300,1070,1347,382,573,280,350,65938,23484,40571,2030,250,4.1,10,10,12.0,488,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100400,1199,1347,383,687,353,373,80154,28945,43806,2144,250,5.0,10,10,14.5,480,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100400,1261,1347,383,738,378,384,86554,30784,45339,2143,250,4.7,10,10,14.7,434,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,100300,1250,1347,382,763,440,354,89934,34795,42019,1991,270,5.2,10,10,16.1,484,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.3,80,100300,1167,1347,381,718,457,322,84330,35611,38091,1864,260,5.6,10,10,16.1,464,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,100300,1017,1347,382,599,402,295,69359,31691,34394,1703,270,5.0,10,10,16.1,510,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100300,813,1347,377,432,299,252,49016,23416,28720,1391,270,4.6,10,10,16.0,451,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.0,82,100300,566,1347,376,278,257,170,31022,17432,19077,871,280,5.0,10,10,16.1,403,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.2,83,100300,295,1347,377,111,132,82,12259,4324,9101,381,270,4.5,10,10,16.1,510,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.8,81,100300,43,748,376,21,66,19,2219,0,1997,78,270,4.0,10,10,16.1,457,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,13.0,83,100300,0,0,376,0,0,0,0,0,0,0,280,3.6,10,10,16.1,409,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.8,83,100300,0,0,374,0,0,0,0,0,0,0,280,4.0,10,10,16.1,321,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.0,88,100300,0,0,371,0,0,0,0,0,0,0,260,3.1,10,10,14.4,337,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.1,88,100300,0,0,371,0,0,0,0,0,0,0,250,3.1,10,10,14.8,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.4,94,100200,0,0,368,0,0,0,0,0,0,0,260,3.4,10,10,8.0,213,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.9,97,100200,0,0,369,0,0,0,0,0,0,0,290,2.2,10,10,7.9,205,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.8,96,100100,0,0,369,0,0,0,0,0,0,0,290,3.2,10,10,6.6,152,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.3,94,100100,0,0,368,0,0,0,0,0,0,0,290,3.7,10,10,8.0,159,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,13.3,96,100100,0,0,366,0,0,0,0,0,0,0,290,4.1,10,10,8.0,213,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,13.3,96,100100,0,0,366,0,0,0,0,0,0,0,280,3.5,10,10,10.0,220,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,13.3,89,100100,116,1283,372,48,229,28,5274,0,3084,119,250,2.7,10,10,12.9,274,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100200,382,1346,371,202,360,99,22456,16280,11109,476,270,3.6,10,10,12.9,341,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100200,648,1346,371,345,323,190,38839,22994,21449,998,280,3.6,10,10,12.2,712,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,13.4,89,100200,883,1346,373,440,226,291,49870,18498,33235,1637,260,3.1,10,10,10.5,246,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100200,1072,1346,378,563,259,356,64698,21671,41226,2067,250,3.1,10,10,14.0,316,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100200,1201,1346,380,644,272,401,74713,23038,46870,2304,260,4.5,10,10,8.6,227,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,13.0,78,100200,1262,1346,381,675,265,426,78567,22658,49969,2374,270,4.1,10,10,12.9,477,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,12.5,78,100200,1251,1346,378,648,233,431,75334,20224,50484,2423,270,3.0,10,10,12.9,668,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.8,83,100200,1168,1346,374,577,194,408,66538,16841,47432,2362,260,3.6,10,10,13.5,575,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.8,84,100100,1019,1346,373,500,201,348,57199,17099,40057,2008,280,3.2,10,10,16.1,419,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100100,815,1346,371,385,191,269,43462,15513,30571,1488,270,4.1,10,10,16.0,392,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.9,84,100100,568,1346,374,263,207,175,29263,14289,19622,898,270,3.8,10,10,16.1,616,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100100,298,1346,371,105,103,82,11554,3420,9063,379,280,3.6,10,10,16.1,758,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100000,45,765,371,9,74,6,1022,0,732,26,280,3.5,10,10,16.1,732,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100100,0,0,371,0,0,0,0,0,0,0,270,3.1,10,10,16.1,717,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100100,0,0,371,0,0,0,0,0,0,0,260,3.0,10,10,16.1,682,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.5,85,100100,0,0,370,0,0,0,0,0,0,0,260,2.6,10,10,16.1,1005,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100100,0,0,371,0,0,0,0,0,0,0,250,3.0,10,10,16.1,815,9,999999999,229,0.0000,0,88,999.000,3.0,1.0 +2012,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,15.0,12.8,87,100100,0,0,371,0,0,0,0,0,0,0,250,2.1,10,10,16.1,762,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.7,86,100100,0,0,371,0,0,0,0,0,0,0,250,2.2,10,10,16.1,762,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.2,84,100000,0,0,370,0,0,0,0,0,0,0,270,2.5,10,10,16.1,762,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.2,87,100000,0,0,367,0,0,0,0,0,0,0,250,1.6,10,10,16.1,762,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.2,87,100000,0,0,367,0,0,0,0,0,0,0,280,2.6,10,10,16.0,762,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.7,84,100100,0,0,366,0,0,0,0,0,0,0,260,2.3,10,10,16.1,744,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.7,83,100100,120,1295,367,46,182,29,5043,0,3266,127,270,0.2,10,10,15.7,617,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,11.7,80,100200,386,1345,370,196,318,104,21760,15308,11642,500,270,1.5,10,10,12.9,663,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.8,78,100200,651,1345,373,343,310,193,38571,22533,21811,1016,230,1.6,10,10,12.9,617,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100300,886,1345,373,455,255,287,51756,20932,32843,1615,280,2.2,10,10,12.9,678,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100300,1074,1345,373,546,227,365,62739,19455,42164,2115,270,3.1,10,10,12.0,746,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,12.2,79,100300,1203,1345,364,657,294,395,76457,24908,46225,2265,260,3.5,9,9,12.9,867,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.2,72,100300,1264,1345,371,727,354,394,85235,29425,46521,2192,250,3.3,9,9,12.9,994,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.2,73,100300,1253,1345,370,746,403,371,87708,32705,43880,2078,260,5.0,9,9,12.9,1339,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,100300,1170,1345,368,682,377,354,79605,30853,41551,2044,260,4.7,9,9,13.3,1129,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,100300,1021,1345,368,570,332,318,65666,27234,36852,1834,260,4.9,9,9,16.1,1379,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,100200,817,1345,379,399,217,267,45075,17606,30360,1477,280,3.6,10,10,16.0,1436,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,11.9,75,100200,571,1345,377,259,193,177,28841,13506,19827,908,270,4.1,10,10,16.0,1467,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,11.6,75,100200,301,1345,375,104,97,82,11493,3341,9125,382,270,4.7,10,10,16.1,1486,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.2,73,100200,47,782,374,8,55,6,987,0,759,27,260,5.0,10,10,16.1,1433,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100200,0,0,373,0,0,0,0,0,0,0,270,4.0,10,10,16.1,1433,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.2,81,100300,0,0,373,0,0,0,0,0,0,0,260,3.7,10,10,16.1,1425,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.1,83,100300,0,0,370,0,0,0,0,0,0,0,280,4.6,10,10,16.1,1372,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.6,80,100300,0,0,369,0,0,0,0,0,0,0,270,4.7,10,10,16.1,1354,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.1,78,100300,0,0,368,0,0,0,0,0,0,0,270,5.0,10,10,16.1,1219,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.0,80,100300,0,0,366,0,0,0,0,0,0,0,250,4.0,10,10,16.1,1236,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.7,79,100300,0,0,365,0,0,0,0,0,0,0,250,3.7,10,10,16.1,1379,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.1,81,100300,0,0,366,0,0,0,0,0,0,0,250,4.0,10,10,16.1,1433,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.1,81,100300,0,0,366,0,0,0,0,0,0,0,270,3.6,10,10,16.0,1433,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.1,80,100400,0,0,356,0,0,0,0,0,0,0,280,3.5,9,9,16.1,1433,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100400,123,1309,359,54,271,29,6000,0,3263,126,280,2.7,9,9,15.7,1433,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,11.2,78,100500,390,1345,359,217,417,96,24287,19225,10779,460,280,3.4,9,9,13.1,1799,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,11.7,77,100500,654,1345,363,375,406,177,42496,28443,20185,934,280,1.7,9,9,14.5,4205,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,11.8,75,100600,888,1345,365,501,357,265,57418,28374,30541,1493,250,3.7,9,9,14.5,1433,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,100600,1076,1345,361,672,484,285,78782,37244,33617,1654,250,4.6,8,8,14.0,1433,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,11.6,67,100600,1205,1345,353,890,778,194,109438,51263,23905,1110,280,6.1,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.2,64,100600,1266,1345,354,928,762,210,114212,51030,26021,1167,260,5.8,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.6,67,100600,1254,1345,373,736,381,380,86441,31442,44942,2127,260,6.3,9,9,16.1,4572,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.1,65,100600,1171,1345,365,707,426,336,82937,34359,39647,1940,270,6.7,8,8,16.1,4572,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.1,65,100500,1023,1345,346,770,814,150,94050,51968,18432,867,260,6.6,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.1,67,100500,819,1345,344,595,760,133,71170,47818,15934,735,260,5.7,3,3,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.1,67,100500,573,1345,344,395,693,100,46154,38209,11694,512,270,6.0,3,3,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,11.1,68,100400,304,1345,343,178,506,64,20134,14250,7250,297,270,6.1,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.2,73,100400,49,798,338,20,486,2,2557,0,312,10,280,5.0,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100500,0,0,334,0,0,0,0,0,0,0,260,4.0,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.6,80,100500,0,0,334,0,0,0,0,0,0,0,240,3.5,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100600,0,0,333,0,0,0,0,0,0,0,250,2.7,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100600,0,0,333,0,0,0,0,0,0,0,240,3.0,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.2,79,100600,0,0,338,0,0,0,0,0,0,0,220,2.2,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.7,84,100500,0,0,336,0,0,0,0,0,0,0,240,2.7,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,100500,0,0,332,0,0,0,0,0,0,0,240,0.0,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,100400,0,0,329,0,0,0,0,0,0,0,270,0.2,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,100400,0,0,329,0,0,0,0,0,0,0,270,1.5,3,3,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,12.2,89,100500,0,0,330,0,0,0,0,0,0,0,250,2.1,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,12.1,87,100500,126,1322,336,73,220,53,7739,0,5585,227,250,1.9,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,12.2,82,100600,393,1344,361,223,439,94,25026,19874,10626,453,260,2.0,9,9,16.1,356,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.1,79,100600,657,1344,363,382,425,174,43409,29426,19903,920,260,0.5,9,9,14.7,471,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,11.7,75,100700,891,1344,365,521,402,254,59878,31362,29362,1431,260,4.7,9,9,15.7,596,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,11.7,72,100700,1078,1344,360,671,478,288,78664,37078,33918,1669,260,5.1,8,8,12.0,721,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,11.7,70,100700,1207,1344,371,696,360,373,81347,29832,43852,2134,260,4.6,9,9,16.1,1128,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.8,66,100700,1267,1344,368,803,499,333,95476,38727,39831,1844,260,6.2,8,8,16.1,4267,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.1,67,100700,1255,1344,355,935,793,194,115635,51561,24108,1084,260,6.2,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.7,65,100700,1173,1344,355,858,758,197,104833,50420,24146,1135,270,6.1,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.7,66,100600,1024,1344,355,728,706,189,87397,47895,22844,1093,260,5.1,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.7,68,100600,821,1344,366,473,391,234,54076,30015,26892,1295,270,5.1,8,8,16.0,4749,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,12.0,70,100600,576,1344,364,306,330,164,34317,22288,18518,844,260,4.8,8,8,16.0,6273,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.3,73,100500,306,1344,371,117,133,86,12846,4786,9528,400,260,4.7,9,9,16.1,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.8,78,100500,51,815,369,11,100,8,1327,0,885,32,270,5.0,9,9,16.1,7620,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.7,81,100500,0,0,365,0,0,0,0,0,0,0,260,4.2,9,9,16.1,7442,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.3,81,100500,0,0,355,0,0,0,0,0,0,0,260,5.0,8,8,16.1,6096,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.8,84,100500,0,0,343,0,0,0,0,0,0,0,260,4.0,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100500,0,0,361,0,0,0,0,0,0,0,250,3.6,9,9,16.1,4572,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.8,87,100400,0,0,360,0,0,0,0,0,0,0,260,3.4,9,9,16.1,4749,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,12.8,91,100400,0,0,350,0,0,0,0,0,0,0,260,2.1,8,8,16.1,6096,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.8,93,100300,0,0,335,0,0,0,0,0,0,0,140,1.9,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,12.8,92,100300,0,0,336,0,0,0,0,0,0,0,140,0.0,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,11.7,86,100300,0,0,335,0,0,0,0,0,0,0,70,0.0,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,11.6,91,100400,0,0,330,0,0,0,0,0,0,0,70,2.2,5,5,15.3,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.4,91,100400,129,1336,332,67,406,28,7490,0,3131,120,90,2.9,6,6,10.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,12.7,85,100400,397,1343,361,225,440,95,25285,19970,10711,458,80,3.4,9,9,13.1,319,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.1,74,100400,660,1343,369,415,533,153,47644,34911,17634,807,60,2.3,9,9,14.5,452,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,12.7,73,100500,893,1343,350,727,966,84,90869,53451,10589,476,100,2.6,4,4,10.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.2,61,100500,1080,1343,358,905,1022,84,116376,56653,10764,484,190,2.6,3,3,12.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,12.8,66,100500,1208,1343,356,958,915,135,120926,54400,17075,771,240,4.7,3,3,14.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,12.9,67,100400,1268,1343,356,988,880,156,124211,53549,19755,865,260,5.8,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.3,70,100400,1257,1343,355,925,770,205,113881,50107,25321,1142,250,6.5,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100400,1174,1343,357,887,820,170,109510,51503,21111,983,260,5.0,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.3,68,100300,1026,1343,356,780,835,143,95659,51272,17596,825,260,4.5,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.3,73,100300,823,1343,351,595,750,136,70997,46382,16263,752,260,4.1,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.3,73,100300,578,1343,351,390,658,107,45339,36356,12489,551,240,4.1,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.3,73,100200,309,1343,351,177,473,68,19914,13668,7711,318,240,4.0,3,3,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100200,53,831,346,22,236,13,2483,0,1442,54,260,3.0,3,3,14.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,100200,0,0,342,0,0,0,0,0,0,0,250,2.5,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.4,81,100300,0,0,330,0,0,0,0,0,0,0,250,2.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,100300,0,0,331,0,0,0,0,0,0,0,250,1.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.8,81,100300,0,0,332,0,0,0,0,0,0,0,310,3.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.3,81,100300,0,0,329,0,0,0,0,0,0,0,310,1.9,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100200,0,0,327,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100200,0,0,339,0,0,0,0,0,0,0,120,0.3,3,3,15.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100200,0,0,361,0,0,0,0,0,0,0,120,2.1,9,9,11.3,305,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100200,0,0,354,0,0,0,0,0,0,0,130,2.1,8,8,11.0,312,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.8,86,100200,0,6,371,0,0,0,0,0,0,0,130,2.2,10,10,11.3,373,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.7,83,100200,132,1343,374,51,176,34,5668,0,3774,148,110,2.9,10,10,11.3,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.2,80,100300,400,1343,374,200,302,110,22246,15175,12291,531,100,1.7,10,10,11.3,435,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,12.2,77,100300,663,1343,377,347,300,199,39033,22023,22463,1050,170,1.7,10,10,13.1,502,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,12.3,69,100300,896,1343,375,526,408,254,60518,31556,29395,1433,260,3.3,9,9,14.7,610,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,12.8,66,100400,1082,1343,362,836,863,141,103449,52679,17478,816,260,4.6,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,12.8,67,100400,1210,1343,351,982,960,117,125276,55404,14933,667,250,3.7,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.8,63,100300,1270,1343,344,1143,1160,46,156573,59029,6328,254,280,4.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,12.8,64,100300,1258,1343,344,1132,1159,46,154868,59006,6319,257,260,6.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.9,68,100300,1175,1343,354,890,824,169,110016,51863,20990,976,270,6.5,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100300,1027,1343,360,708,650,211,84292,44829,25222,1217,250,4.7,5,5,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.3,73,100300,824,1343,370,455,338,248,51810,26145,28363,1374,250,4.6,8,8,14.0,457,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,13.3,74,100300,580,1343,368,308,327,166,34517,21912,18735,856,270,4.9,8,8,14.3,457,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.2,75,100300,312,1343,375,118,130,88,13019,4736,9721,410,270,5.0,9,9,14.3,457,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.9,78,100300,55,847,369,12,83,9,1379,0,987,36,260,4.0,9,9,12.9,457,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100300,0,0,370,0,0,0,0,0,0,0,270,3.0,9,9,13.1,457,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.3,81,100300,0,0,369,0,0,0,0,0,0,0,240,1.9,9,9,14.5,471,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.3,83,100400,0,0,367,0,0,0,0,0,0,0,240,0.0,9,9,14.5,571,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.2,79,100300,0,0,370,0,0,0,0,0,0,0,80,0.2,9,9,14.7,514,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.8,76,100300,0,0,371,0,0,0,0,0,0,0,80,2.0,9,9,16.1,488,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100300,0,0,346,0,0,0,0,0,0,0,160,1.6,5,5,15.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.8,81,100200,0,0,376,0,0,0,0,0,0,0,160,2.5,10,10,12.9,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.8,83,100300,0,0,374,0,0,0,0,0,0,0,110,1.9,10,10,12.9,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100200,0,0,376,0,0,0,0,0,0,0,100,0.0,10,10,12.0,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100200,0,20,376,0,0,0,0,0,0,0,100,2.2,10,10,10.5,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.0,82,100300,135,1342,376,51,162,35,5655,0,3870,152,90,2.6,10,10,6.4,457,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.8,77,100300,403,1342,370,218,383,103,24400,18381,11590,499,90,0.0,9,9,6.6,464,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.9,73,100300,666,1342,358,464,700,117,54520,41170,13808,620,220,1.2,6,6,8.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,13.3,72,100300,898,1342,352,704,895,105,86654,51538,13013,595,260,3.2,3,3,9.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100300,1084,1342,354,850,891,130,105782,53071,16249,755,260,3.6,3,3,9.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,12.9,67,100300,1211,1342,356,929,848,163,115659,52606,20405,932,280,4.7,3,3,9.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.2,70,100300,1271,1342,351,977,855,168,122331,52660,21108,924,260,5.8,2,2,9.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.9,68,100200,1259,1342,339,1133,1158,46,155060,58879,6303,256,250,6.4,0,0,11.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.3,70,100200,1177,1342,354,886,813,173,109378,51295,21461,999,270,8.1,3,3,13.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.4,73,100100,1029,1342,351,778,822,148,95175,50840,18166,854,250,7.1,3,3,14.2,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100100,826,1342,368,471,376,239,53732,28453,27484,1328,250,6.2,8,8,12.0,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,13.9,79,100100,583,1342,367,306,316,169,34270,21164,18979,868,240,5.6,8,8,12.5,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100000,315,1342,365,134,193,89,14786,7050,9825,415,240,5.0,8,8,12.9,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.8,84,100000,57,864,344,24,97,20,2639,0,2200,86,240,4.4,3,3,12.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.4,84,100100,0,0,341,0,0,0,0,0,0,0,260,2.7,3,3,11.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.9,89,100100,0,0,342,0,0,0,0,0,0,0,250,4.3,4,4,11.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.9,90,100100,0,0,375,0,0,0,0,0,0,0,250,3.9,10,10,12.7,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,13.8,92,100100,0,0,372,0,0,0,0,0,0,0,150,2.2,10,10,11.1,236,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.4,87,100200,0,0,375,0,0,0,0,0,0,0,70,2.3,10,10,9.7,183,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.8,90,100200,0,0,375,0,0,0,0,0,0,0,70,0.2,10,10,9.5,186,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,13.2,90,100100,0,0,371,0,0,0,0,0,0,0,70,1.6,10,10,8.2,213,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.9,91,100000,0,0,368,0,0,0,0,0,0,0,80,2.0,10,10,9.3,213,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.3,93,100000,0,0,368,0,0,0,0,0,0,0,80,1.5,10,10,6.0,213,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,13.3,93,100000,0,34,369,0,0,0,0,0,0,0,190,0.2,10,10,3.2,213,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,13.3,89,100100,139,1341,362,60,241,35,6622,0,3883,152,190,1.3,9,9,3.2,220,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.2,85,100100,406,1341,357,244,511,89,27632,22480,10118,431,260,0.0,8,8,3.4,274,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.2,79,100100,668,1341,349,498,815,92,59583,44240,11031,487,260,2.3,5,5,4.2,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,13.1,81,100100,900,1341,354,584,556,211,68220,39606,24763,1191,260,3.8,7,7,4.8,274,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100100,1086,1341,364,674,472,292,78929,36347,34376,1693,260,3.6,8,8,4.8,274,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,100100,1213,1341,372,668,301,396,77716,25178,46387,2260,240,4.2,9,9,5.0,274,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100100,1272,1341,370,707,309,414,82682,25885,48745,2276,260,4.7,9,9,6.4,274,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,13.3,79,100000,1260,1341,363,758,417,367,89380,33256,43488,2036,240,5.1,8,8,7.1,274,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.2,74,99900,1178,1341,358,825,676,232,99669,46522,28167,1338,260,5.8,6,6,11.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.2,78,99900,1031,1341,358,685,587,234,80976,42044,27805,1352,250,5.9,7,7,13.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,99900,828,1341,346,622,818,117,75160,48457,14220,651,260,5.1,3,3,14.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,13.0,75,99900,585,1341,347,405,699,101,47417,37991,11794,518,250,4.6,3,3,15.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.8,73,99900,318,1341,348,194,558,62,22083,15664,7102,291,250,4.3,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.9,76,99800,59,880,345,27,531,3,3356,0,426,14,260,5.5,3,3,15.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.4,85,99900,0,0,337,0,0,0,0,0,0,0,260,3.4,2,2,11.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,99900,0,0,325,0,0,0,0,0,0,0,230,1.9,0,0,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.9,89,100000,0,0,326,0,0,0,0,0,0,0,130,0.2,0,0,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.9,86,100000,0,0,328,0,0,0,0,0,0,0,130,1.6,0,0,13.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.8,84,100000,0,0,330,0,0,0,0,0,0,0,130,1.9,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.3,84,100000,0,0,326,0,0,0,0,0,0,0,130,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,13.4,90,99900,0,0,322,0,0,0,0,0,0,0,310,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.8,90,99900,0,0,325,0,0,0,0,0,0,0,310,0.2,0,0,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,99900,0,0,336,0,0,0,0,0,0,0,310,2.1,3,3,14.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,14.0,93,100000,0,48,337,0,0,0,0,0,0,0,320,1.3,3,3,6.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,14.4,89,100000,142,1341,339,91,672,20,10517,0,2319,87,320,0.0,2,2,6.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,14.4,85,100000,410,1341,332,368,1171,10,48969,24947,1353,49,270,0.0,0,0,8.2,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,14.4,78,100100,671,1341,338,603,1155,25,79295,48515,3309,133,270,0.4,0,0,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,14.4,74,100100,902,1341,342,812,1153,36,107847,55285,4838,206,270,3.0,0,0,9.8,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,100000,1087,1341,364,889,972,101,112724,54030,12842,586,260,2.6,3,3,11.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.5,68,100000,1214,1341,364,952,892,145,119573,52616,18241,825,250,3.8,3,3,11.3,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.0,71,100000,1273,1341,364,983,861,165,123065,51564,20777,906,260,5.2,3,3,11.3,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100000,1262,1341,362,943,797,193,116516,49826,23955,1069,240,6.0,3,3,11.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.0,73,99900,1179,1341,364,850,727,210,103279,47457,25658,1211,240,4.7,4,4,9.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,14.9,78,99900,1032,1341,356,751,749,175,90705,47645,21207,1010,250,4.7,3,3,12.9,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,99800,830,1341,350,577,678,158,68144,43365,18703,876,270,5.1,3,3,12.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,14.4,79,99800,587,1341,352,390,626,115,45050,35186,13377,595,260,4.8,3,3,13.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.4,79,99800,321,1341,352,188,500,69,21210,14715,7755,321,260,4.4,3,3,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.3,81,99800,61,896,346,29,250,17,3179,0,1924,74,250,3.0,2,2,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.2,78,99800,0,0,331,0,0,0,0,0,0,0,250,2.2,0,0,14.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.3,76,99900,0,0,328,0,0,0,0,0,0,0,260,2.6,0,0,14.5,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.4,84,100000,0,0,327,0,0,0,0,0,0,0,200,2.5,0,0,14.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.9,86,100000,0,0,342,0,0,0,0,0,0,0,90,1.6,3,3,14.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100000,0,0,374,0,0,0,0,0,0,0,120,2.2,9,9,12.9,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.3,84,100000,0,0,384,0,0,0,0,0,0,0,130,3.2,10,10,12.9,312,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.8,86,100000,0,0,378,0,0,0,0,0,0,0,90,3.7,10,10,12.9,366,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100000,0,0,377,0,0,0,0,0,0,0,90,4.5,10,10,12.9,373,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100000,0,0,377,0,0,0,0,0,0,0,100,4.1,10,10,12.0,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.3,83,100000,0,62,378,0,0,0,0,0,0,0,110,3.7,10,10,9.7,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.2,80,100000,145,1340,380,55,164,38,6092,0,4158,164,80,4.1,10,10,9.7,434,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.8,77,100100,412,1340,380,206,297,114,22892,15360,12772,555,100,4.0,10,10,9.8,488,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,100100,673,1340,375,392,423,180,44564,29421,20515,953,130,3.5,9,9,11.5,502,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.9,70,100100,904,1340,378,516,369,267,59192,28912,30835,1511,150,3.0,9,9,12.9,610,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100100,1089,1340,373,684,491,286,80316,37239,33712,1657,120,2.1,8,8,12.0,610,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.2,65,100100,1215,1340,365,887,750,206,108574,49368,25353,1174,120,2.5,5,5,12.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.3,61,100100,1275,1340,365,1007,907,144,127472,53831,18372,791,160,3.0,3,3,13.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.2,65,100100,1263,1340,362,956,824,180,118996,51733,22524,997,270,5.6,4,4,14.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,12.7,66,100000,1180,1340,356,874,780,187,107385,50555,23115,1080,260,5.3,3,3,13.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,12.3,66,100000,1034,1340,353,740,719,186,89147,48041,22500,1075,260,6.9,3,3,14.3,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100000,832,1340,351,585,697,153,69335,44923,18149,848,260,4.6,3,3,12.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,12.8,72,100000,590,1340,352,381,584,124,43865,34543,14317,640,260,3.5,4,4,11.6,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.8,73,100000,323,1340,353,168,358,82,18731,12748,9165,384,280,2.8,5,5,11.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,12.9,77,100000,64,912,357,20,208,10,2297,0,1158,42,270,3.8,7,7,11.3,579,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100000,0,0,366,0,0,0,0,0,0,0,270,4.4,9,9,11.5,525,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.8,80,100100,0,0,377,0,0,0,0,0,0,0,290,2.5,10,10,12.9,564,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.7,77,100100,0,0,379,0,0,0,0,0,0,0,340,2.2,10,10,13.1,471,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.1,75,100100,0,0,378,0,0,0,0,0,0,0,130,2.7,10,10,14.7,568,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,11.6,75,100100,0,0,375,0,0,0,0,0,0,0,130,3.0,10,10,16.1,488,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.0,72,100100,0,0,374,0,0,0,0,0,0,0,100,2.5,10,10,16.1,491,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.6,72,100100,0,0,371,0,0,0,0,0,0,0,90,2.2,10,10,16.1,518,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.6,72,100100,0,0,371,0,0,0,0,0,0,0,110,3.0,10,10,15.9,532,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.6,72,100100,0,0,371,0,0,0,0,0,0,0,70,2.6,10,10,14.0,636,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.0,69,100100,0,77,370,0,0,0,0,0,0,0,120,2.5,10,10,15.9,610,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,10.0,69,100200,148,1339,371,53,133,38,5842,0,4234,166,100,2.0,10,10,14.5,620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,10.1,68,100200,415,1339,373,201,267,118,22306,14567,13145,572,150,1.6,10,10,14.3,701,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,10.6,69,100300,675,1339,374,341,262,208,38328,19901,23574,1107,220,2.1,10,10,12.9,708,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,10.7,65,100300,906,1339,370,511,354,272,58643,28454,31354,1537,170,2.2,9,9,13.1,776,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.1,65,100300,1090,1339,365,675,468,294,79216,36654,34715,1708,270,3.1,8,8,14.0,884,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,11.1,61,100300,1217,1339,355,941,865,156,117849,54036,19588,887,260,4.9,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,11.1,60,100300,1276,1339,349,1006,903,146,127485,55111,18554,796,230,3.7,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.1,59,100300,1264,1339,339,1137,1156,46,155894,60184,6305,254,250,4.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.2,59,100300,1182,1339,354,906,847,159,112737,53396,19869,916,250,5.8,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,12.3,64,100200,1035,1339,355,799,860,134,98630,52553,16632,776,270,6.6,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100200,834,1339,356,559,614,177,65504,41622,20791,982,270,6.2,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,12.9,72,100200,592,1339,363,332,389,160,37481,25725,18156,828,270,6.5,7,7,16.1,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.7,75,100300,326,1339,371,116,104,91,12861,4084,10091,427,260,6.5,9,9,16.1,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,12.1,75,100300,66,928,354,20,52,18,2233,0,1954,75,250,5.1,7,7,16.1,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100300,0,0,363,0,0,0,0,0,0,0,250,4.1,9,9,14.7,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100400,0,0,363,0,0,0,0,0,0,0,270,4.2,9,9,16.1,419,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100500,0,0,363,0,0,0,0,0,0,0,270,4.4,9,9,16.1,373,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.2,81,100500,0,0,362,0,0,0,0,0,0,0,280,3.0,9,9,16.1,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.2,83,100500,0,0,371,0,0,0,0,0,0,0,250,2.0,10,10,16.1,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.2,80,100500,0,0,374,0,0,0,0,0,0,0,250,1.3,10,10,15.9,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.2,78,100400,0,0,375,0,0,0,0,0,0,0,160,0.2,10,10,14.1,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100400,0,0,373,0,0,0,0,0,0,0,160,1.6,10,10,11.3,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100400,0,0,373,0,0,0,0,0,0,0,340,2.1,10,10,11.0,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.3,80,100500,1,92,374,0,0,0,0,0,0,0,360,1.5,10,10,12.7,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.8,81,100500,151,1339,376,56,145,39,6115,0,4333,171,340,1.6,10,10,11.3,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.8,83,100600,418,1339,374,201,264,119,22345,14024,13262,578,270,2.2,10,10,11.3,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.8,80,100600,678,1339,377,344,269,208,38722,19989,23556,1108,310,2.7,10,10,11.5,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.8,77,100600,908,1339,380,459,236,299,52258,19483,34221,1692,280,3.2,10,10,12.9,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.8,73,100600,1092,1339,385,592,290,355,68359,24231,41298,2063,260,3.6,10,10,12.0,449,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.8,73,100600,1218,1339,375,705,362,375,82483,29701,44184,2134,280,4.4,9,9,14.5,5023,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100600,1277,1339,377,737,356,397,86530,29355,46963,2165,260,4.7,9,9,14.5,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100600,1265,1339,377,727,352,395,85323,29034,46654,2180,250,5.9,9,9,14.7,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,12.8,71,100600,1183,1339,388,626,257,399,72533,21878,46549,2296,270,7.2,10,10,16.1,416,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.8,73,100600,1036,1339,385,531,237,348,60953,19965,40202,2014,270,7.2,10,10,16.1,335,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,100500,835,1339,380,392,181,279,44270,14804,31671,1549,270,7.2,10,10,16.0,335,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,12.5,78,100500,594,1339,378,249,140,187,27805,10053,20956,967,250,5.6,10,10,16.0,335,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.3,78,100500,329,1339,376,105,70,88,11629,2678,9770,412,250,4.4,10,10,16.1,324,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100500,68,944,374,13,50,11,1554,0,1264,47,260,4.7,10,10,16.1,274,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.7,83,100600,0,0,373,0,0,0,0,0,0,0,270,5.5,10,10,16.1,274,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.3,84,100600,0,0,370,0,0,0,0,0,0,0,260,3.7,10,10,15.7,274,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100700,0,0,371,0,0,0,0,0,0,0,260,4.4,10,10,12.9,274,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.7,87,100700,0,0,370,0,0,0,0,0,0,0,260,3.1,10,10,13.3,274,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.2,87,100700,0,0,367,0,0,0,0,0,0,0,260,2.7,10,10,16.1,274,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.2,87,100700,0,0,367,0,0,0,0,0,0,0,230,0.2,10,10,15.5,274,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.3,87,100600,0,0,367,0,0,0,0,0,0,0,230,1.6,10,10,11.3,274,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,12.8,91,100600,0,0,367,0,0,0,0,0,0,0,270,2.2,10,10,11.3,266,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.8,93,100600,0,0,365,0,0,0,0,0,0,0,250,2.6,10,10,11.0,213,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,12.2,89,100600,1,106,365,0,0,0,0,0,0,0,270,2.7,10,10,11.1,220,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.2,86,100600,154,1338,367,57,144,40,6228,0,4423,175,310,2.9,10,10,9.8,274,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100700,421,1338,370,211,300,117,23496,15949,13046,568,340,1.5,10,10,11.5,281,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.2,83,100700,680,1338,371,353,291,206,39820,21620,23304,1095,90,1.6,10,10,12.9,342,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.3,78,100700,909,1338,376,478,274,292,54547,22408,33516,1654,230,2.8,10,10,12.9,396,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,100700,1093,1338,380,588,281,358,67883,23567,41620,2080,250,4.6,10,10,12.0,388,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.3,72,100700,1219,1338,372,723,396,362,84860,32089,42773,2058,240,4.5,9,9,14.7,335,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,12.9,71,100600,1278,1338,359,902,687,246,109893,47225,30132,1338,270,4.2,6,6,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.7,77,100600,1266,1338,379,660,237,436,76843,20435,51115,2401,270,6.8,10,10,16.1,335,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.1,75,100600,1184,1338,378,600,215,410,69471,18638,47793,2360,260,7.7,10,10,16.1,335,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,11.8,75,100500,1038,1338,358,598,368,312,69227,29834,36399,1807,270,7.6,8,8,16.1,335,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,11.7,72,100500,837,1338,347,583,679,159,69035,44819,18842,882,250,6.2,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.0,74,100500,596,1338,342,422,733,96,49742,39912,11337,497,260,6.7,3,3,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.2,75,100500,332,1338,342,203,554,66,23062,17330,7500,309,260,7.1,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.2,78,100400,70,960,336,33,520,6,4012,0,704,25,260,6.0,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100500,0,0,323,0,0,0,0,0,0,0,240,4.2,0,0,15.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.1,80,100500,0,0,323,0,0,0,0,0,0,0,240,4.7,0,0,14.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.8,81,100500,0,0,320,0,0,0,0,0,0,0,230,4.9,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.2,84,100500,0,0,320,0,0,0,0,0,0,0,200,3.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,12.2,87,100500,0,0,318,0,0,0,0,0,0,0,120,2.1,0,0,15.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.7,89,100500,0,0,338,0,0,0,0,0,0,0,40,2.4,5,5,13.5,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.2,89,100500,0,0,371,0,0,0,0,0,0,0,50,0.2,10,10,12.7,213,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.9,88,100500,0,0,360,0,0,0,0,0,0,0,80,1.9,9,9,11.5,213,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.3,93,100500,0,0,351,0,0,0,0,0,0,0,80,0.0,8,8,12.0,213,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.3,90,100500,1,120,330,0,0,0,0,0,0,0,60,0.0,3,3,7.8,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,13.2,91,100600,156,1337,360,63,192,41,6961,0,4501,178,60,1.5,9,9,6.4,255,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,13.3,82,100600,423,1337,345,314,837,49,37407,28671,5872,239,140,1.3,4,4,8.2,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,13.2,73,100600,682,1337,350,565,1004,53,70621,48190,6635,282,140,0.2,3,3,9.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.8,63,100500,911,1337,356,785,1071,56,101467,55405,7242,317,240,1.7,2,2,11.6,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.8,63,100500,1094,1337,344,984,1150,43,132760,58315,5784,249,240,3.6,0,0,14.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.0,66,100500,1220,1337,342,1097,1153,45,149702,58519,6179,257,250,5.2,0,0,14.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,10.7,55,100500,1279,1337,342,1150,1155,46,157954,60384,6340,250,260,6.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,11.1,53,100400,1267,1337,347,1139,1154,46,156215,60074,6330,253,260,7.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,11.2,55,100400,1185,1337,345,1066,1153,45,145144,59902,6083,257,260,9.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,11.7,57,100300,1039,1337,345,934,1149,42,125444,58871,5597,241,260,7.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.7,61,100300,839,1337,340,754,1148,34,99892,56250,4506,189,260,7.7,0,0,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,12.0,65,100300,598,1337,338,514,1076,33,65610,45689,4192,170,260,8.0,0,0,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,12.2,68,100300,334,1337,335,248,856,35,29708,18003,4144,163,260,8.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.2,73,100200,72,976,330,44,797,1,6151,0,105,3,250,6.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.3,78,100200,0,0,326,0,0,0,0,0,0,0,250,4.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.9,78,100200,0,0,329,0,0,0,0,0,0,0,220,3.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.2,80,100200,0,0,329,0,0,0,0,0,0,0,250,2.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.7,78,100300,0,0,328,0,0,0,0,0,0,0,350,0.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.2,78,100300,0,0,325,0,0,0,0,0,0,0,350,1.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.2,84,100300,0,0,320,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,12.1,90,100200,0,0,315,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.6,90,100200,0,0,312,0,0,0,0,0,0,0,40,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100200,0,0,310,0,0,0,0,0,0,0,40,1.5,0,0,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,11.7,89,100200,1,134,313,0,0,0,0,0,0,0,50,2.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,11.7,85,100200,159,1337,330,100,635,24,11491,0,2820,107,90,3.0,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,11.6,71,100300,425,1337,342,344,985,31,42558,30251,3790,149,40,2.1,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,11.0,63,100200,684,1337,344,586,1066,41,74773,50706,5243,219,120,1.9,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,10.3,54,100200,912,1337,341,821,1149,37,109408,58605,4903,208,260,0.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,12.8,66,100200,1095,1337,341,986,1151,43,133090,58343,5766,248,260,4.1,0,0,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,12.7,67,100200,1221,1337,339,1098,1153,45,149851,58762,6203,258,270,4.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,12.2,63,100200,1279,1337,341,1151,1154,46,157941,59241,6369,251,250,4.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,12.1,61,100200,1268,1337,343,1140,1154,46,156271,59296,6345,254,270,5.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,11.7,61,100100,1186,1337,341,1067,1152,45,145235,59509,6105,257,260,6.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,11.6,59,100100,1040,1337,354,822,904,119,102567,54082,14906,689,270,6.4,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,10.6,59,100000,841,1337,337,756,1148,34,100227,57117,4519,190,260,4.1,0,0,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,10.9,60,100000,601,1337,337,528,1117,27,68509,47042,3451,138,250,4.4,0,0,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,11.1,61,100000,337,1337,337,257,899,31,31069,18699,3705,144,250,4.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.3,66,100000,75,991,332,47,832,0,6808,0,65,2,250,4.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.9,76,100000,0,0,331,0,0,0,0,0,0,0,260,3.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100100,0,0,329,0,0,0,0,0,0,0,240,2.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.4,81,100100,0,0,330,0,0,0,0,0,0,0,200,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100100,0,0,330,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.9,84,100100,0,0,330,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100100,0,0,327,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.9,87,100000,0,0,327,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.8,90,100000,0,0,339,0,0,0,0,0,0,0,90,0.0,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100000,0,0,336,0,0,0,0,0,0,0,90,0.0,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,13.0,90,100000,2,147,339,0,0,0,0,0,0,0,90,2.2,5,5,12.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,14.3,88,100000,161,1336,348,93,514,31,10486,0,3490,135,80,2.5,5,5,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,13.8,76,100100,428,1336,353,327,888,43,39434,28992,5185,209,120,1.9,4,4,9.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,13.4,67,100100,685,1336,343,616,1150,26,81085,50000,3432,139,120,0.2,0,0,11.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,14.0,64,100100,914,1336,351,822,1148,37,109323,55642,4912,209,260,2.3,0,0,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.4,63,100100,1097,1336,354,986,1149,43,132947,56865,5788,249,260,3.6,0,0,12.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,14.4,64,100000,1222,1336,354,1099,1153,45,149915,57241,6170,256,270,4.7,0,0,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,14.3,65,100000,1280,1336,352,1152,1154,46,158000,57398,6316,249,250,5.1,0,0,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,13.8,61,99900,1268,1336,353,1141,1154,46,156335,57836,6313,252,260,5.2,0,0,13.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.4,62,99900,1187,1336,350,1068,1152,45,145298,58087,6081,256,260,6.2,0,0,14.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.8,67,99800,1042,1336,346,937,1149,41,125820,57116,5556,239,270,6.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,99800,842,1336,347,757,1147,34,100252,55402,4530,190,260,6.2,0,0,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,12.8,62,99800,603,1336,346,531,1119,26,68882,45746,3408,136,260,5.4,0,0,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,12.9,64,99800,339,1336,343,268,956,25,32870,17347,3091,119,260,4.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,13.8,76,99800,77,1007,336,47,783,2,6238,0,207,7,260,6.4,0,0,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.9,78,99800,0,0,329,0,0,0,0,0,0,0,260,3.9,0,0,14.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.8,83,99800,0,0,330,0,0,0,0,0,0,0,280,2.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.4,80,99900,0,0,330,0,0,0,0,0,0,0,250,1.5,0,0,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.0,82,99900,0,0,332,0,0,0,0,0,0,0,170,1.5,0,0,14.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,99900,0,0,331,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,99900,0,0,345,0,0,0,0,0,0,0,20,0.2,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.3,86,99800,0,0,344,0,0,0,0,0,0,0,20,1.3,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.8,89,99800,0,0,339,0,0,0,0,0,0,0,20,0.0,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,99800,0,0,356,0,0,0,0,0,0,0,130,0.0,8,8,14.0,350,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,14.3,88,99800,2,160,379,0,0,0,0,0,0,0,130,2.0,10,10,4.2,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.3,86,99900,164,1336,381,63,161,43,6909,0,4751,189,90,2.6,10,10,6.8,247,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,99900,430,1336,381,217,302,120,24108,16007,13360,584,120,2.7,10,10,9.7,291,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,13.9,77,99900,687,1336,377,398,414,186,45289,28815,21209,991,110,2.2,9,9,9.7,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,14.3,73,100000,915,1336,360,700,842,123,85340,49648,15043,697,150,1.9,4,4,10.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.9,64,99900,1098,1336,366,908,991,94,115974,54679,12023,545,280,0.0,3,3,12.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,99900,1222,1336,360,1001,974,110,128426,54273,14187,625,280,5.2,2,2,13.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,99900,1281,1336,349,1153,1154,46,158158,57295,6313,248,260,5.6,0,0,14.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,14.4,68,99900,1269,1336,363,945,788,197,116918,49821,24431,1075,240,4.5,3,3,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,14.4,72,99800,1188,1336,358,872,759,197,106714,48787,24188,1130,230,3.7,3,3,13.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,14.3,71,99900,1043,1336,362,755,735,181,91121,47485,21955,1048,250,4.9,4,4,14.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,99800,844,1336,390,381,155,284,43083,12513,32231,1582,270,6.2,10,10,9.0,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.4,81,99800,605,1336,387,252,136,191,28148,9623,21396,992,240,4.8,10,10,9.3,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,14.0,83,99800,342,1336,351,167,292,93,18536,11669,10296,437,230,3.6,5,5,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.3,71,99800,79,1022,353,32,146,23,3511,0,2571,100,240,3.0,5,5,12.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.9,78,99800,0,0,349,0,0,0,0,0,0,0,260,2.7,5,5,12.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.2,80,99900,0,0,349,0,0,0,0,0,0,0,230,3.5,5,5,12.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.8,78,99900,0,0,348,0,0,0,0,0,0,0,200,3.2,5,5,12.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.9,81,100000,0,0,349,0,0,0,0,0,0,0,250,4.1,6,6,12.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.7,80,99900,0,0,366,0,0,0,0,0,0,0,250,2.3,9,9,12.9,488,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.1,78,99900,0,0,365,0,0,0,0,0,0,0,340,0.2,9,9,12.9,488,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.6,78,99900,0,0,362,0,0,0,0,0,0,0,340,2.1,9,9,12.9,484,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,99900,0,0,359,0,0,0,0,0,0,0,310,2.0,9,9,12.9,457,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,99900,0,0,339,0,0,0,0,0,0,0,320,2.1,5,5,12.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,11.7,80,99900,2,173,360,0,0,0,0,0,0,0,320,1.6,9,9,8.0,474,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,11.8,78,100000,166,1335,363,69,207,43,7629,0,4802,191,300,1.9,9,9,8.4,701,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,11.7,75,100000,432,1335,358,255,482,99,28872,23788,11276,485,310,2.2,8,8,10.0,975,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,11.7,70,100000,689,1335,348,527,858,85,63819,46775,10299,453,270,2.7,4,4,13.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,11.7,67,100000,916,1335,348,717,885,109,88349,52387,13536,621,260,3.8,3,3,14.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.7,65,100100,1099,1335,350,870,907,124,109070,54332,15614,720,270,5.7,3,3,14.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.7,61,100100,1223,1335,355,963,895,142,121433,54380,18039,807,240,5.1,3,3,14.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,11.8,62,100100,1282,1335,354,990,860,165,124481,53451,20783,887,260,5.2,3,3,14.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,12.1,65,100100,1270,1335,349,1004,905,143,127323,54423,18219,782,270,5.8,2,2,14.5,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.7,66,100000,1189,1335,335,1070,1151,44,145783,59439,6073,256,260,6.2,0,0,14.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,11.8,68,100000,1044,1335,333,939,1147,42,126225,58744,5601,241,250,6.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.2,68,99900,846,1335,336,761,1148,34,100949,55958,4489,189,260,5.1,0,0,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,12.2,69,99900,607,1335,341,441,772,90,52286,41268,10683,467,250,4.6,1,1,15.2,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.1,70,99900,345,1335,347,204,502,74,23030,17842,8408,350,250,4.1,3,3,14.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,11.8,71,99900,82,1038,344,36,413,11,4228,0,1293,47,270,4.0,3,3,15.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.2,75,100000,0,0,345,0,0,0,0,0,0,0,260,3.5,4,4,11.5,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.2,78,100000,0,0,326,0,0,0,0,0,0,0,240,2.3,0,0,12.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.2,78,100100,0,0,326,0,0,0,0,0,0,0,20,0.2,0,0,12.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.2,78,100100,0,0,326,0,0,0,0,0,0,0,20,1.3,0,0,12.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.1,78,100100,0,0,325,0,0,0,0,0,0,0,20,0.0,0,0,12.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,11.8,78,100100,0,0,330,0,0,0,0,0,0,0,110,0.4,1,1,12.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.7,80,100000,0,0,376,0,0,0,0,0,0,0,110,2.9,10,10,12.9,488,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.2,78,100000,0,0,375,0,0,0,0,0,0,0,100,1.6,10,10,12.9,488,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100000,0,0,373,0,0,0,0,0,0,0,80,2.6,10,10,12.0,488,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.3,80,100100,3,185,374,0,0,0,0,0,0,0,110,0.2,10,10,12.7,488,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.7,80,100100,169,1335,376,60,124,44,6570,0,4860,193,110,1.6,10,10,10.9,484,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.3,78,100200,434,1335,376,211,267,124,23434,14833,13844,607,130,2.3,10,10,8.2,464,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,12.8,74,100200,690,1335,373,397,403,189,45157,28602,21575,1009,130,0.0,9,9,9.8,525,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,12.8,66,100200,917,1335,375,590,535,222,68852,38767,26008,1257,260,0.6,8,8,11.5,579,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100200,1099,1335,362,843,842,149,104156,51675,18464,864,250,4.1,5,5,12.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.3,67,100200,1224,1335,354,984,937,125,125253,54318,15962,707,240,4.2,2,2,11.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.3,66,100200,1282,1335,344,1154,1153,46,158389,58233,6349,248,270,5.0,0,0,14.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100100,1271,1335,357,967,829,178,120585,51671,22267,969,270,4.8,3,3,12.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100100,1190,1335,357,907,832,166,112577,51645,20638,950,270,6.2,3,3,12.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100100,1046,1335,353,811,865,133,100292,52018,16524,770,270,6.1,2,2,11.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100100,847,1335,342,762,1146,34,100945,55061,4550,192,250,5.7,0,0,11.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.3,70,100000,609,1335,346,439,758,93,51904,40410,11041,484,260,5.7,1,1,12.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.3,73,100000,347,1335,351,199,462,79,22396,16858,8908,373,260,5.6,3,3,12.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,13.2,75,100000,96,1200,351,40,276,20,4486,0,2271,86,250,4.5,4,4,12.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.8,86,100100,0,0,367,0,0,0,0,0,0,0,240,3.6,9,9,10.0,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.2,83,100100,0,0,359,0,0,0,0,0,0,0,270,3.3,8,8,12.9,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100100,0,0,346,0,0,0,0,0,0,0,260,2.1,5,5,12.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.4,84,100200,0,0,346,0,0,0,0,0,0,0,270,1.8,5,5,12.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100200,0,0,367,0,0,0,0,0,0,0,20,0.2,9,9,12.7,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.8,87,100100,0,0,359,0,0,0,0,0,0,0,20,1.3,8,8,11.3,305,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100100,0,0,344,0,0,0,0,0,0,0,20,0.0,5,5,11.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.3,87,100100,0,0,343,0,0,0,0,0,0,0,130,0.0,5,5,11.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100100,0,0,341,0,0,0,0,0,0,0,130,0.0,5,5,9.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,13.4,90,100100,3,197,362,0,0,0,0,0,0,0,130,2.1,9,9,7.7,312,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,14.0,89,100100,171,1334,366,70,198,45,7715,0,4946,197,110,1.8,9,9,4.8,294,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.9,86,100100,436,1334,360,259,487,100,29250,23410,11304,487,70,1.3,8,8,4.8,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,14.0,80,100200,692,1334,354,515,805,97,61594,44238,11668,519,280,0.5,5,5,6.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.4,71,100200,918,1334,366,717,880,111,88204,50525,13687,629,280,4.0,5,5,7.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,14.4,75,100200,1100,1334,361,834,821,157,102605,50337,19390,911,240,3.6,5,5,6.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,14.4,73,100200,1224,1334,364,907,776,194,111660,49346,24049,1100,270,5.1,5,5,6.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.3,73,100200,1283,1334,363,877,626,275,106010,43904,33452,1477,270,5.1,5,5,8.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,14.3,71,100100,1271,1334,365,939,770,204,115831,49283,25348,1113,270,6.3,5,5,8.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,14.2,71,100100,1191,1334,368,827,654,243,99665,45002,29404,1392,270,6.5,6,6,10.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,14.4,78,100000,1047,1334,372,627,419,298,72861,32363,34873,1727,260,6.3,8,8,11.3,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,14.4,75,100000,849,1334,361,577,634,174,67891,41840,20532,971,260,6.7,5,5,11.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.1,77,100000,611,1334,352,413,650,115,48037,36994,13462,601,260,6.7,3,3,11.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.9,77,100000,350,1334,356,191,402,86,21330,15421,9597,405,260,6.7,5,5,11.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.3,86,100000,98,1213,370,23,46,20,2577,0,2203,83,250,3.2,9,9,9.8,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.8,86,100000,0,0,360,0,0,0,0,0,0,0,230,3.9,8,8,11.7,244,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.4,84,100100,0,0,341,0,0,0,0,0,0,0,240,2.5,3,3,14.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,14.0,88,100100,0,0,367,0,0,0,0,0,0,0,190,1.5,9,9,12.8,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100200,0,0,367,0,0,0,0,0,0,0,260,0.2,9,9,11.3,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100200,0,0,367,0,0,0,0,0,0,0,260,1.6,9,9,11.3,315,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.8,87,100200,0,0,359,0,0,0,0,0,0,0,20,2.0,8,8,11.5,396,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.4,87,100100,0,0,339,0,0,0,0,0,0,0,240,1.3,3,3,12.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,14.0,90,100100,0,0,339,0,0,0,0,0,0,0,240,0.0,3,3,11.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,14.4,93,100100,0,0,345,0,0,0,0,0,0,0,240,0.0,5,5,9.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,14.0,93,100100,3,209,373,0,0,0,0,0,0,0,240,0.0,10,10,9.1,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,14.4,92,100200,173,1333,376,61,124,45,6738,0,4987,199,260,0.0,10,10,4.8,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.4,86,100200,437,1333,382,218,287,123,24180,15492,13762,604,260,0.0,10,10,4.8,230,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,14.5,80,100200,693,1333,378,420,473,175,48050,31821,20045,933,260,0.0,9,9,5.3,378,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.5,71,100300,919,1333,380,624,624,193,73556,42155,22886,1096,260,3.4,8,8,7.7,457,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.0,76,100200,1101,1333,364,832,814,159,102183,49722,19654,925,260,3.1,5,5,6.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.8,75,100300,1225,1333,364,891,742,209,109138,47983,25776,1184,270,5.7,5,5,7.2,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,14.4,75,100300,1283,1333,393,612,157,461,71068,13595,53902,2469,260,5.8,10,10,8.4,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,14.4,76,100300,1272,1333,382,708,309,413,82850,25557,48682,2247,280,6.6,9,9,11.5,266,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,14.2,76,100200,1192,1333,363,801,596,268,95821,42432,32287,1538,260,5.7,6,6,12.9,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100200,1048,1333,357,785,798,157,95918,50101,19308,911,270,6.1,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100100,851,1333,354,636,803,124,76852,48272,15008,692,270,5.7,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,13.3,71,100100,613,1333,353,431,715,102,50658,39433,12052,533,260,5.4,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.3,73,100100,352,1333,351,206,484,78,23200,17721,8813,369,260,5.0,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.2,75,100100,100,1224,348,46,337,20,5138,0,2298,87,240,4.2,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.9,76,100100,0,0,346,0,0,0,0,0,0,0,270,4.8,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,100100,0,0,342,0,0,0,0,0,0,0,240,2.5,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.3,80,100200,0,0,330,0,0,0,0,0,0,0,250,1.9,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.2,77,100200,0,0,332,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.9,76,100200,0,0,346,0,0,0,0,0,0,0,30,0.2,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.4,79,100100,0,0,346,0,0,0,0,0,0,0,30,2.1,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.3,89,100100,0,0,342,0,0,0,0,0,0,0,280,2.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100100,0,0,342,0,0,0,0,0,0,0,310,2.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100100,0,0,360,0,0,0,0,0,0,0,330,0.0,8,8,14.0,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,14.5,89,100100,4,220,349,0,0,0,0,0,0,0,360,1.7,5,5,7.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.9,89,100100,175,1333,372,72,200,46,7930,0,5067,202,290,0.0,9,9,6.6,244,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,14.5,86,100200,439,1333,372,236,364,116,26346,18911,13013,568,270,0.3,9,9,8.0,255,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.3,83,100200,694,1333,366,423,479,174,48435,32262,19950,928,270,1.6,8,8,8.6,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,14.4,77,100200,920,1333,359,669,747,153,80381,46816,18494,871,270,2.2,5,5,9.8,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,100200,1102,1333,367,843,838,150,104067,50790,18634,872,280,3.1,5,5,11.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,100100,1226,1333,367,930,822,174,115425,50659,21717,984,270,4.7,5,5,11.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,100100,1284,1333,367,941,755,214,115869,48701,26444,1142,260,5.0,5,5,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,14.4,70,100100,1273,1333,364,946,782,199,116988,49571,24709,1079,260,4.6,4,4,10.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,14.4,68,100000,1193,1333,363,924,862,152,115352,51683,19090,873,260,4.7,3,3,13.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,14.5,70,99900,1049,1333,362,809,855,137,99916,50907,16954,792,280,5.0,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,99900,852,1333,365,642,817,120,77720,47592,14591,672,270,4.1,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,15.0,72,99900,615,1333,363,428,696,107,50077,38038,12528,556,250,4.1,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.0,73,99800,354,1333,361,211,505,76,23768,17647,8649,362,250,4.0,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.1,79,99800,102,1233,356,45,307,22,5065,0,2447,93,260,3.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.6,85,99800,0,0,350,0,0,0,0,0,0,0,270,3.0,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.5,86,99800,0,0,337,0,0,0,0,0,0,0,240,2.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.1,82,99900,0,0,338,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.6,88,99900,0,0,351,0,0,0,0,0,0,0,160,0.3,3,3,15.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.5,90,99800,0,0,351,0,0,0,0,0,0,0,160,2.5,4,4,14.5,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.9,87,99800,0,0,347,0,0,0,0,0,0,0,160,2.5,3,3,14.3,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,15.0,88,99700,0,0,384,0,0,0,0,0,0,0,150,0.1,10,10,12.9,332,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.3,86,99700,0,0,381,0,0,0,0,0,0,0,140,2.6,10,10,12.9,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,99700,0,0,381,0,0,0,0,0,0,0,170,2.6,10,10,12.0,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,99700,4,230,363,0,0,0,0,0,0,0,160,2.5,8,8,11.3,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,99700,177,1332,348,103,520,34,11580,0,3817,149,150,2.1,4,4,13.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.9,77,99800,441,1332,350,329,844,50,39355,30097,6027,247,250,2.4,3,3,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.9,72,99800,695,1332,355,556,933,68,68346,47026,8437,366,250,4.7,3,3,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.9,70,99800,921,1332,363,694,812,132,84301,49083,16148,752,260,5.3,5,5,14.2,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,99800,1102,1332,380,709,525,275,83677,38608,32586,1594,240,6.2,8,8,12.0,950,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.3,67,99700,1226,1332,369,899,756,203,110320,48692,25088,1148,220,5.0,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,13.9,65,99700,1284,1332,367,963,800,192,119650,50395,23959,1025,260,4.7,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.9,64,99600,1273,1332,362,1026,942,127,131247,53921,16250,686,240,5.1,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.9,64,99600,1193,1332,351,1073,1148,45,146061,57454,6115,257,240,5.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.8,63,99500,1050,1332,368,787,798,157,96166,49782,19333,912,230,4.2,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,99400,854,1332,362,622,755,138,74617,47140,16659,774,240,5.1,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.8,63,99400,617,1332,359,415,639,119,48221,37469,13857,620,270,4.6,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,12.8,65,99400,357,1332,357,200,429,85,22409,16989,9553,403,270,3.9,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,12.5,62,99400,104,1241,359,48,343,22,5434,0,2432,92,180,2.5,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.4,10.3,52,99400,0,0,361,0,0,0,0,0,0,0,140,1.6,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,12.9,69,99400,0,0,350,0,0,0,0,0,0,0,140,2.7,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.3,75,99400,0,0,334,0,0,0,0,0,0,0,150,3.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.4,78,99500,0,0,339,0,0,0,0,0,0,0,150,3.7,1,1,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,99500,0,0,376,0,0,0,0,0,0,0,140,4.0,9,9,16.1,549,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.8,78,99500,0,0,375,0,0,0,0,0,0,0,170,3.6,9,9,16.1,541,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.1,77,99400,0,0,354,0,0,0,0,0,0,0,110,2.9,6,6,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,99400,0,0,349,0,0,0,0,0,0,0,120,2.5,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,99400,0,0,349,0,0,0,0,0,0,0,140,1.5,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.2,80,99400,4,240,370,0,0,0,0,0,0,0,150,2.2,9,9,12.9,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.8,77,99500,178,1332,370,72,184,47,7896,104,5209,208,150,3.0,9,9,12.9,588,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.8,75,99500,442,1332,372,236,355,118,26356,19149,13225,578,150,2.8,9,9,12.9,893,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.7,69,99500,696,1332,378,404,413,189,46039,29278,21575,1010,160,3.5,9,9,12.9,952,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,12.3,65,99500,922,1332,380,539,394,266,62074,30790,30795,1510,170,3.5,9,9,13.1,1006,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,12.8,66,99500,1103,1332,375,708,521,277,83563,39004,32857,1607,250,6.2,8,8,14.0,1006,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.2,59,99500,1227,1332,364,946,853,160,118373,52889,20106,903,250,6.2,4,4,14.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,12.1,60,99500,1285,1332,359,992,856,166,124665,53072,20976,885,230,6.1,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,11.8,57,99500,1274,1332,361,1009,906,142,128099,54530,18131,769,250,5.8,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,12.3,58,99400,1194,1332,363,925,862,152,115690,53005,19152,873,250,6.2,3,3,15.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.4,66,99400,1051,1332,360,808,847,140,99748,51431,17291,809,250,6.2,3,3,14.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,99300,855,1332,366,583,636,174,68618,42221,20623,976,260,6.2,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,13.9,69,99300,619,1332,364,386,522,143,44207,32562,16471,748,260,5.6,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.8,71,99300,359,1332,362,192,375,91,21414,15342,10180,432,260,4.9,5,5,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.4,74,99300,106,1251,356,42,215,25,4665,0,2772,107,270,3.7,5,5,14.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.7,77,99400,0,0,355,0,0,0,0,0,0,0,240,4.0,5,5,12.2,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.2,75,99400,0,0,385,0,0,0,0,0,0,0,230,2.3,10,10,14.7,617,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,99400,0,0,382,0,0,0,0,0,0,0,170,4.0,10,10,16.1,678,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,99400,0,0,382,0,0,0,0,0,0,0,150,3.3,10,10,16.1,721,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.7,75,99400,0,0,382,0,0,0,0,0,0,0,160,5.0,10,10,16.1,632,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.2,72,99400,0,0,381,0,0,0,0,0,0,0,150,4.6,10,10,16.1,586,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.2,72,99400,0,0,381,0,0,0,0,0,0,0,130,4.5,10,10,16.1,643,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.2,72,99400,0,0,381,0,0,0,0,0,0,0,120,4.0,10,10,16.1,783,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,99400,0,0,382,0,0,0,0,0,0,0,160,2.6,10,10,16.0,1157,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.7,75,99400,5,250,372,0,0,0,0,0,0,0,140,3.0,9,9,16.1,867,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.3,73,99500,180,1331,371,71,176,48,7865,272,5268,211,140,2.8,9,9,15.8,913,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,99500,443,1331,372,231,330,121,25762,18065,13556,594,190,3.3,9,9,14.7,629,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,99500,697,1331,372,382,341,203,43191,24950,23108,1088,190,4.8,9,9,15.8,570,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.7,72,99600,923,1331,375,514,335,282,58951,26711,32542,1603,260,5.3,9,9,14.5,663,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.7,65,99600,1103,1331,368,686,470,296,80562,36481,35051,1722,270,7.2,8,8,14.0,654,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,10.5,64,99700,1227,1331,369,681,307,398,79649,26193,46836,2244,260,8.5,9,9,16.1,914,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,9.2,58,99600,1285,1331,362,752,373,392,88767,31265,46607,2087,270,6.3,8,8,16.1,914,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,7.8,54,99600,1274,1331,346,880,643,265,106952,47234,32349,1430,260,6.8,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,7.9,53,99600,1195,1331,345,898,803,177,111353,53425,22072,1015,240,7.6,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,8.4,56,99600,1052,1331,341,797,818,150,98091,53203,18556,870,240,6.9,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,8.9,58,99600,857,1331,341,640,799,126,77485,50479,15286,704,260,8.7,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,8.6,58,99600,621,1331,339,427,676,112,50071,40615,13144,584,250,9.0,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,8.3,58,99600,362,1331,338,214,499,79,24271,20384,8942,374,250,9.7,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,8.3,60,99600,108,1261,335,52,357,23,5803,0,2550,97,260,12.8,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.3,65,99600,0,0,330,0,0,0,0,0,0,0,270,12.2,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,8.2,66,99600,0,0,328,0,0,0,0,0,0,0,280,10.4,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,7.2,60,99700,0,0,329,0,0,0,0,0,0,0,260,7.2,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.1,60,99700,0,0,328,0,0,0,0,0,0,0,320,3.1,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,6.8,60,99800,0,0,326,0,0,0,0,0,0,0,70,3.1,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,7.2,62,99800,0,0,326,0,0,0,0,0,0,0,50,2.9,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.2,67,99800,0,0,321,0,0,0,0,0,0,0,30,1.5,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.2,67,99900,0,0,326,0,0,0,0,0,0,0,350,1.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.2,67,99900,0,0,326,0,0,0,0,0,0,0,330,1.5,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,7.2,68,100000,5,260,325,0,0,0,0,0,0,0,360,2.5,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,7.3,64,100100,182,1331,330,101,469,37,11431,0,4230,165,360,2.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,7.8,62,100200,445,1331,335,313,738,66,36740,32388,7771,324,180,1.5,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,7.9,60,100300,698,1331,358,417,451,181,47837,32736,20827,969,180,1.7,9,9,16.1,959,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,8.3,60,100300,923,1331,354,579,496,235,67593,38076,27571,1336,260,3.8,8,8,16.1,1067,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,8.3,56,100400,1104,1331,346,820,780,173,100573,52217,21285,1003,210,5.1,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,7.9,56,100500,1227,1331,343,886,726,217,108709,50688,26716,1222,230,6.7,5,5,14.7,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,8.9,59,100500,1286,1331,346,926,721,230,113838,50157,28385,1220,260,6.7,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,8.8,59,100500,1275,1331,344,902,687,244,110302,48848,29941,1314,270,6.7,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,8.4,56,100500,1196,1331,344,901,807,176,111753,53344,21894,1005,260,6.5,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,8.9,56,100500,1054,1331,343,821,874,130,102191,54644,16228,753,230,5.3,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,8.9,58,100500,858,1331,346,605,693,158,71972,46717,18874,884,250,6.7,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,9.2,61,100500,623,1331,345,400,564,136,46132,36161,15725,710,240,5.9,5,5,15.2,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,9.5,63,100500,364,1331,344,190,348,95,21208,15807,10612,451,240,5.0,5,5,14.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,10.0,68,100500,110,1270,342,45,232,26,5048,0,2917,112,230,4.3,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.0,69,100500,0,0,338,0,0,0,0,0,0,0,230,5.7,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.9,69,100500,0,0,335,0,0,0,0,0,0,0,250,5.5,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.5,67,100500,0,0,334,0,0,0,0,0,0,0,230,4.0,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.1,70,100500,0,0,335,0,0,0,0,0,0,0,200,3.2,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.6,73,100500,0,0,335,0,0,0,0,0,0,0,240,3.7,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.5,77,100500,0,0,330,0,0,0,0,0,0,0,240,3.6,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,10.1,76,100500,0,0,325,0,0,0,0,0,0,0,80,0.2,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.5,86,100500,0,0,309,0,0,0,0,0,0,0,80,2.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.0,83,100500,0,0,327,0,0,0,0,0,0,0,80,1.5,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,10.1,86,100500,5,269,320,0,0,0,0,0,0,0,80,1.6,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,10.6,80,100500,183,1330,331,111,575,32,12663,0,3646,141,90,2.6,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,10.9,72,100600,446,1330,355,283,577,89,32406,27790,10287,440,140,2.6,8,8,16.1,518,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,10.2,64,100600,699,1330,369,454,573,153,52702,38287,17825,820,120,2.9,9,9,16.1,732,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,10.7,67,100600,924,1330,359,599,547,219,70171,40117,25784,1244,250,4.7,8,8,16.1,792,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.1,65,100600,1104,1330,352,820,781,172,100560,50955,21184,999,250,5.1,5,5,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,10.7,61,100600,1227,1330,348,947,853,160,118603,53656,20109,900,250,5.1,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,11.1,63,100500,1286,1330,349,1009,888,151,127901,54447,19174,799,260,5.2,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,11.1,61,100500,1275,1330,352,1011,907,141,128549,54918,18008,760,260,6.3,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,11.0,60,100400,1196,1330,352,935,879,145,117571,54174,18278,828,270,6.8,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,10.6,59,100400,1055,1330,351,824,878,128,102580,53879,16011,743,270,7.2,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,10.6,63,100300,860,1330,346,621,738,144,74428,47710,17360,809,260,7.2,3,3,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.2,65,100300,625,1330,339,445,735,100,52590,41482,11867,524,250,7.2,1,1,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.6,68,100300,366,1330,332,282,908,33,34271,22776,3952,155,250,6.9,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.2,68,100200,112,1278,329,75,765,10,8960,0,1255,45,250,4.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.1,72,100200,0,0,331,0,0,0,0,0,0,0,230,2.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.8,68,100200,0,0,332,0,0,0,0,0,0,0,190,1.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.3,73,100300,0,0,330,0,0,0,0,0,0,0,240,3.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.7,80,100300,0,0,326,0,0,0,0,0,0,0,250,2.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.2,78,100300,0,0,325,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.4,81,100200,0,0,324,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.8,89,100200,0,0,325,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.3,87,100200,0,0,324,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100200,0,0,341,0,0,0,0,0,0,0,250,0.0,5,5,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.9,87,100200,6,276,336,1,240,0,191,0,0,0,250,0.2,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.4,84,100200,184,1330,341,114,597,31,12986,0,3548,137,250,1.5,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,13.8,79,100300,447,1330,345,356,950,37,43596,31147,4495,180,320,1.3,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.4,68,100300,700,1330,343,629,1144,27,82846,50497,3551,144,260,0.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,14.3,68,100300,924,1330,348,831,1142,38,110581,55282,5011,214,260,3.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100300,1104,1330,345,993,1144,43,134084,57105,5839,251,260,5.1,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.9,62,100300,1228,1330,347,1105,1148,45,151110,58308,6170,254,250,4.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.2,65,100300,1286,1330,345,1157,1148,46,158958,58079,6359,245,260,4.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,100200,1276,1330,347,1148,1149,46,157648,58425,6317,247,270,5.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,12.7,60,100200,1197,1330,347,1077,1147,45,146829,58411,6113,256,270,5.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,11.8,55,100100,1056,1330,348,950,1144,42,127955,58630,5615,241,260,6.6,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,12.8,59,100100,861,1330,349,774,1142,35,102686,55576,4639,196,260,6.2,0,0,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.8,61,100100,626,1330,347,558,1131,25,72957,47288,3287,132,260,5.1,0,0,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,12.7,63,100100,368,1330,344,279,875,37,33533,22602,4407,174,260,4.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,11.8,64,100100,114,1285,337,70,645,15,8191,0,1766,65,260,4.9,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100100,0,0,336,0,0,0,0,0,0,0,250,3.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,12.9,71,100100,0,0,336,0,0,0,0,0,0,0,220,3.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.8,78,100100,0,0,335,0,0,0,0,0,0,0,190,2.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.2,77,100100,0,0,332,0,0,0,0,0,0,0,160,2.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.7,75,100100,0,0,331,0,0,0,0,0,0,0,160,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,12.1,73,100100,0,0,330,0,0,0,0,0,0,0,50,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,11.9,78,100100,0,0,323,0,0,0,0,0,0,0,50,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.3,84,100200,0,0,326,0,0,0,0,0,0,0,50,1.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100200,0,0,336,0,0,0,0,0,0,0,40,2.1,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,14.0,90,100200,6,284,345,1,223,0,164,0,2,0,100,0.2,5,5,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,14.4,89,100300,186,1329,348,104,474,38,11695,0,4281,168,100,1.9,5,5,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,14.3,79,100300,448,1329,354,342,880,46,41241,30690,5563,227,110,0.2,4,4,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,13.8,69,100300,700,1329,355,594,1041,46,75396,48863,5827,246,110,1.3,2,2,13.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,13.5,62,100400,924,1329,351,831,1141,38,110652,55957,5010,214,260,0.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100400,1104,1329,355,993,1144,43,134062,56035,5801,249,260,4.6,0,0,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.4,63,100400,1228,1329,354,1104,1146,45,150783,56918,6205,255,270,5.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,14.4,64,100400,1287,1329,354,1157,1148,46,158911,56965,6327,243,260,5.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,14.3,66,100400,1276,1329,351,1148,1148,46,157569,57060,6290,246,260,6.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.9,66,100300,1198,1329,348,1077,1146,45,146740,57327,6115,256,260,5.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.8,68,100300,1057,1329,360,781,770,168,95063,48874,20590,976,270,6.8,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.8,63,100300,862,1329,359,626,746,142,75058,46905,17110,797,270,7.2,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.2,61,100300,628,1329,350,455,761,95,53955,41833,11335,499,270,6.7,1,1,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,11.8,60,100300,370,1329,343,294,955,28,36136,23000,3428,133,270,6.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,12.2,66,100300,116,1294,338,76,720,13,8934,0,1537,56,270,5.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.3,71,100300,0,0,333,0,0,0,0,0,0,0,250,4.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100300,0,0,331,0,0,0,0,0,0,0,230,4.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.7,75,100300,0,0,331,0,0,0,0,0,0,0,220,2.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.2,75,100400,0,0,328,0,0,0,0,0,0,0,210,3.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.2,78,100400,0,0,325,0,0,0,0,0,0,0,210,3.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100400,0,0,323,0,0,0,0,0,0,0,180,2.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100400,0,0,323,0,0,0,0,0,0,0,190,2.7,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.3,81,100400,0,0,323,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100400,0,0,335,0,0,0,0,0,0,0,270,2.1,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.3,83,100400,6,291,340,1,205,0,155,0,7,0,280,2.0,5,5,15.9,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.8,83,100500,187,1329,344,104,460,39,11634,0,4395,173,260,1.3,5,5,14.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,12.9,79,100500,448,1329,368,248,392,115,27797,20984,12991,567,250,1.0,9,9,14.5,3158,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.9,76,100500,701,1329,358,475,641,137,55574,40037,16099,736,270,3.6,7,7,14.5,518,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,100500,925,1329,354,686,782,142,83068,48817,17269,808,260,3.1,5,5,14.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100500,1105,1329,356,818,774,175,100090,49787,21506,1016,270,3.1,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.3,70,100500,1228,1329,355,977,912,134,123837,53579,17056,754,250,4.7,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.3,68,100500,1287,1329,356,1012,891,149,128218,53124,18965,787,240,5.6,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.2,70,100500,1277,1329,354,999,881,153,126157,52930,19408,821,260,5.1,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.9,70,100400,1199,1329,351,907,815,172,112462,51238,21466,984,260,5.2,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100400,1058,1329,354,810,839,143,99935,51210,17693,828,250,5.7,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100300,864,1329,354,650,810,124,78696,48587,15017,693,270,5.7,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.3,73,100300,630,1329,351,444,716,105,52320,40094,12402,551,260,6.0,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.3,75,100300,373,1329,348,216,467,85,24322,18935,9617,406,260,6.1,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,100300,118,1303,346,54,298,28,6007,0,3078,119,260,4.9,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100300,0,0,344,0,0,0,0,0,0,0,270,3.6,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.4,81,100400,0,0,343,0,0,0,0,0,0,0,280,3.6,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100400,0,0,342,0,0,0,0,0,0,0,250,3.4,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.4,84,100400,0,0,341,0,0,0,0,0,0,0,240,2.5,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.8,87,100300,0,0,341,0,0,0,0,0,0,0,220,1.9,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100300,0,0,339,0,0,0,0,0,0,0,220,0.0,3,3,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.4,87,100200,0,0,339,0,0,0,0,0,0,0,220,0.0,3,3,14.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.8,88,100200,0,0,340,0,0,0,0,0,0,0,140,0.0,3,3,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100200,0,0,356,0,0,0,0,0,0,0,140,0.0,8,8,14.0,335,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.8,87,100200,6,297,377,1,56,1,130,0,95,3,140,1.9,10,10,10.7,335,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.3,86,100300,188,1329,375,65,112,49,7167,354,5437,218,140,0.0,10,10,6.6,335,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.3,80,100300,449,1329,370,244,373,118,27331,20093,13260,580,110,0.0,9,9,8.2,342,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.1,74,100200,701,1329,357,492,699,124,58035,41976,14609,663,110,1.7,6,6,9.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,12.9,66,100200,925,1329,357,759,971,83,95651,53512,10494,473,260,0.5,3,3,11.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.3,65,100100,1105,1329,360,911,980,96,116398,54726,12345,559,260,4.1,3,3,9.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100100,1228,1329,345,1105,1146,46,150948,57385,6229,256,250,4.3,0,0,11.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100000,1287,1329,345,1158,1148,46,159077,57423,6354,244,270,5.8,0,0,11.8,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100000,1277,1329,360,989,860,162,124321,51945,20516,870,260,6.7,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.0,69,99900,1199,1329,360,926,854,156,115652,51630,19524,889,260,6.8,3,3,15.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.4,73,99900,1059,1329,357,809,834,145,99672,50378,17906,840,270,7.0,3,3,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,14.4,75,99800,865,1329,356,627,743,144,75091,45920,17298,808,260,5.1,3,3,14.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,14.4,77,99800,632,1329,357,414,594,132,47845,35586,15268,690,270,5.4,4,4,14.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.3,78,99800,375,1329,358,200,370,96,22331,15984,10738,459,270,5.6,5,5,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.3,84,99800,120,1311,359,41,125,30,4557,0,3323,129,250,4.8,7,7,12.9,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99800,0,0,332,0,0,0,0,0,0,0,260,2.7,0,0,11.8,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.0,81,99900,0,0,347,0,0,0,0,0,0,0,250,0.3,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.4,84,99900,0,0,347,0,0,0,0,0,0,0,250,2.6,3,3,15.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,99900,0,0,345,0,0,0,0,0,0,0,250,2.5,3,3,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.4,87,99900,0,0,344,0,0,0,0,0,0,0,230,2.1,3,3,12.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.3,89,99900,0,0,347,0,0,0,0,0,0,0,250,1.8,5,5,12.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,99900,0,0,378,0,0,0,0,0,0,0,250,0.0,10,10,9.7,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,99900,0,0,378,0,0,0,0,0,0,0,70,0.0,10,10,9.7,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,99900,0,0,378,0,0,0,0,0,0,0,70,0.0,10,10,9.0,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.9,86,99900,7,303,378,1,1,1,127,0,126,4,70,2.0,10,10,5.0,251,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.0,84,99900,189,1328,382,18,3,18,2003,210,2926,74,110,1.6,10,10,6.6,312,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.4,83,99900,450,1328,385,61,3,60,6657,249,9246,237,110,2.3,10,10,8.0,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.5,81,100000,702,1328,377,150,7,147,16082,677,20797,569,110,0.0,9,9,8.0,366,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.0,78,99900,925,1328,369,306,34,282,35041,2625,32544,1606,250,0.5,7,7,8.6,366,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,99900,1105,1328,370,513,149,389,58896,12586,44999,2260,250,1.9,5,5,9.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.9,72,99900,1228,1328,362,687,315,396,80164,25720,46494,2225,250,4.7,3,3,11.5,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.3,70,99900,1287,1328,360,764,391,385,90047,31129,45686,2027,270,5.7,3,3,12.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,14.3,71,99900,1277,1328,379,549,94,459,63788,8104,53711,2456,260,5.4,8,8,11.3,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.4,73,99900,1200,1328,363,623,234,411,72202,19745,48027,2348,270,5.0,5,5,11.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,14.4,75,99900,1060,1328,361,534,216,361,61274,18079,41750,2095,280,4.5,5,5,12.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,14.4,75,99800,866,1328,361,406,176,291,45964,14257,33185,1636,270,4.1,5,5,11.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,14.4,75,99800,633,1328,361,275,153,202,30742,11137,22683,1061,270,4.4,5,5,11.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,14.5,76,99800,377,1328,361,131,87,106,14476,4032,11787,508,270,4.6,5,5,11.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,99800,122,1320,374,12,4,12,1429,0,1388,50,260,4.5,9,9,9.3,404,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,99900,0,0,385,0,0,0,0,0,0,0,260,3.5,10,10,6.8,244,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.0,87,99900,0,0,384,0,0,0,0,0,0,0,270,3.0,10,10,9.8,244,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100000,0,0,382,0,0,0,0,0,0,0,260,2.0,10,10,10.7,244,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100000,0,0,382,0,0,0,0,0,0,0,230,1.7,10,10,6.8,244,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,15.0,88,100000,0,0,384,0,0,0,0,0,0,0,270,2.1,10,10,11.2,305,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.9,89,99900,0,0,383,0,0,0,0,0,0,0,240,2.1,10,10,9.7,305,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,99900,0,0,383,0,0,0,0,0,0,0,130,2.1,10,10,9.7,312,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,99900,0,0,381,0,0,0,0,0,0,0,120,2.0,10,10,9.8,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,99900,0,0,381,0,0,0,0,0,0,0,150,1.7,10,10,11.0,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,99900,7,308,381,1,1,1,127,0,126,4,150,3.1,10,10,12.9,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100000,189,1328,381,18,3,18,2003,210,2926,74,150,3.0,10,10,12.9,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,100000,450,1328,381,49,1,49,5413,134,7600,193,130,2.1,10,10,12.9,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.9,80,100100,702,1328,384,101,1,101,10946,131,14565,390,140,2.0,10,10,12.9,373,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.0,78,100100,925,1328,387,166,2,165,17703,164,22320,680,140,2.3,10,10,12.9,469,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,100100,1105,1328,393,259,4,256,27263,401,32535,1267,260,1.7,10,10,14.0,556,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,13.9,72,100100,1228,1328,375,481,59,426,55833,5025,49859,2397,260,3.6,8,8,16.1,610,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.9,65,100000,1287,1328,363,809,478,345,96258,36578,41356,1818,260,4.3,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.8,65,100000,1278,1328,363,823,518,324,98245,38786,38971,1733,270,5.7,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100000,1200,1328,362,651,281,397,75814,23575,46570,2268,270,5.8,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.4,69,99900,1060,1328,362,528,205,364,60604,17362,42070,2111,260,5.9,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,99900,868,1328,360,391,149,293,44233,12160,33430,1648,250,3.6,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,14.0,76,99900,635,1328,366,224,66,192,25140,4702,21701,1011,250,4.1,7,7,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.0,77,99900,379,1328,378,65,7,63,7057,637,9738,252,250,4.4,9,9,15.9,342,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.3,80,100000,123,1328,377,12,4,12,1431,0,1392,50,260,3.0,9,9,14.7,417,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100000,0,0,376,0,0,0,0,0,0,0,260,2.3,9,9,16.1,579,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100000,0,0,376,0,0,0,0,0,0,0,140,0.3,9,9,16.1,571,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.8,77,100000,0,0,387,0,0,0,0,0,0,0,140,2.5,10,10,16.1,518,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.4,75,100000,0,0,386,0,0,0,0,0,0,0,140,2.1,10,10,16.1,514,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100000,0,0,387,0,0,0,0,0,0,0,140,1.9,10,10,16.1,488,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.8,78,100000,0,0,386,0,0,0,0,0,0,0,130,0.2,10,10,16.1,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,99900,0,0,383,0,0,0,0,0,0,0,130,2.0,10,10,16.1,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,99900,0,0,382,0,0,0,0,0,0,0,60,1.6,10,10,16.1,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,99900,0,0,380,0,0,0,0,0,0,0,130,2.1,10,10,16.0,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,99900,7,313,380,1,1,1,128,0,126,4,80,2.5,10,10,16.1,488,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.8,77,100000,190,1327,380,19,3,19,2105,233,3076,78,150,1.6,10,10,16.1,502,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.8,75,100000,451,1327,383,53,2,53,5800,162,8141,208,140,2.1,10,10,16.1,617,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.8,70,100100,702,1327,378,151,7,148,16095,684,20892,572,140,2.0,9,9,16.1,671,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,12.9,68,100100,925,1327,381,229,8,223,24094,786,29674,921,160,1.9,9,9,16.1,681,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100100,1105,1327,376,369,28,346,42885,2315,40402,2008,240,4.6,8,8,16.0,762,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.3,67,100200,1228,1327,360,629,219,426,73043,18764,49872,2396,260,4.7,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.3,65,100100,1287,1327,360,761,386,387,89774,31073,45969,2034,260,5.1,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.3,65,100100,1278,1327,360,794,461,351,94301,35738,41916,1872,250,5.0,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.3,63,100100,1201,1327,363,728,426,343,85712,33499,40637,1956,260,4.2,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.3,63,100100,1061,1327,362,623,388,313,72403,30708,36603,1815,260,5.2,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100000,869,1327,357,456,274,277,51961,21940,31719,1556,250,5.7,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,13.3,69,100000,637,1327,355,292,188,202,32693,13812,22706,1061,250,5.1,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.4,71,100000,381,1327,354,137,99,109,15162,4745,12082,521,250,4.7,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,13.9,77,100100,125,1327,357,23,18,22,2651,0,2465,93,250,4.9,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100100,0,9,373,0,0,0,0,0,0,0,240,3.9,9,9,16.1,518,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.9,80,100200,0,0,384,0,0,0,0,0,0,0,250,2.5,10,10,16.1,521,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100200,0,0,376,0,0,0,0,0,0,0,240,2.1,9,9,16.1,549,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100200,0,0,376,0,0,0,0,0,0,0,260,2.1,9,9,16.1,549,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.8,78,100200,0,0,386,0,0,0,0,0,0,0,250,2.2,10,10,16.1,549,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100200,0,0,383,0,0,0,0,0,0,0,120,2.7,10,10,16.1,549,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.2,78,100100,0,0,382,0,0,0,0,0,0,0,120,2.9,10,10,16.1,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.8,77,100100,0,0,380,0,0,0,0,0,0,0,180,1.7,10,10,16.1,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100100,0,0,382,0,0,0,0,0,0,0,140,3.1,10,10,16.0,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100200,7,318,382,1,1,1,128,0,126,4,100,1.5,10,10,16.1,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100200,191,1327,372,19,3,19,2105,233,3076,78,100,1.3,9,9,16.1,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.8,75,100300,451,1327,372,68,4,67,7398,353,10246,265,150,0.2,9,9,15.9,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.8,73,100300,702,1327,375,134,4,132,14310,403,18783,511,150,1.9,9,9,14.7,556,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,100300,925,1327,375,194,3,191,20495,337,25665,790,150,0.0,9,9,16.1,617,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100300,1105,1327,388,225,2,224,23716,185,28670,1109,240,0.0,10,10,16.0,678,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.9,70,100400,1228,1327,378,393,19,376,40720,1932,45310,2512,240,4.3,9,9,16.1,721,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.4,71,100400,1287,1327,391,438,25,414,45319,2588,48988,3611,230,5.8,10,10,16.1,625,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.9,77,100400,1278,1327,387,450,31,420,52659,2581,49513,2239,270,6.3,10,10,16.1,539,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.9,73,100300,1202,1327,381,477,65,418,55333,5566,48834,2386,260,6.6,9,9,16.1,708,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,13.9,74,100300,1062,1327,366,489,146,372,56072,12429,42952,2159,270,6.2,7,7,16.1,762,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,100300,870,1327,355,495,364,257,56694,27960,29546,1442,260,5.7,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,14.0,77,100300,638,1327,370,210,49,186,23635,3424,21092,980,260,7.1,8,8,16.1,762,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.9,78,100300,383,1327,368,87,19,82,9911,744,9335,394,260,6.1,8,8,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.0,82,100300,127,1327,346,29,9,29,3274,0,3183,123,250,4.7,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.3,85,100300,0,18,348,0,0,0,0,0,0,0,250,5.3,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.0,82,100300,0,0,355,0,0,0,0,0,0,0,270,6.0,6,6,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,14.2,84,100300,0,0,358,0,0,0,0,0,0,0,240,3.9,7,7,16.1,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.3,86,100300,0,0,371,0,0,0,0,0,0,0,250,2.6,9,9,16.1,392,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.8,84,100300,0,0,380,0,0,0,0,0,0,0,270,2.7,10,10,16.1,373,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.2,83,100300,0,0,366,0,0,0,0,0,0,0,250,3.4,9,9,16.1,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.8,83,100200,0,0,356,0,0,0,0,0,0,0,160,2.2,8,8,16.1,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100200,0,0,341,0,0,0,0,0,0,0,180,2.3,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100200,0,0,339,0,0,0,0,0,0,0,320,0.0,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.9,83,100200,7,322,344,1,18,1,129,0,115,4,320,2.3,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,12.5,78,100300,191,1327,347,47,36,42,5278,10,4703,186,330,0.5,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,5.8,44,100300,451,1327,349,166,97,133,18469,6019,14854,654,330,4.2,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,4.2,36,100300,702,1327,354,294,125,228,33210,10263,25859,1225,360,4.5,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,10.7,57,100300,925,1327,360,391,108,316,44563,9233,36165,1795,270,3.7,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,11.7,59,100400,1105,1327,363,470,99,388,54158,8594,44989,2253,260,4.6,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,11.7,57,100400,1228,1327,366,583,155,439,67638,13684,51309,2467,260,6.9,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,11.6,60,100300,1287,1327,361,675,238,444,78876,20676,52224,2328,270,8.3,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,10.4,52,100300,1279,1327,363,772,415,372,91381,33775,44305,1979,270,8.9,4,4,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,9.1,47,100200,1202,1327,360,718,403,353,84573,33183,41818,2010,270,8.9,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,10.7,55,100200,1063,1327,357,624,388,314,72719,31431,36736,1819,250,6.4,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,11.1,57,100100,871,1327,357,459,275,278,52297,22459,31869,1562,260,7.7,3,3,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,11.4,59,100100,640,1327,356,300,204,202,33686,15253,22759,1063,270,8.8,3,3,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,11.7,61,100000,384,1327,354,152,136,112,16773,6877,12464,539,270,9.6,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.7,66,100000,129,1327,349,30,36,27,3411,0,3027,116,260,8.1,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.8,68,100000,0,25,343,0,0,0,0,0,0,0,270,7.1,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.3,73,100000,0,0,331,0,0,0,0,0,0,0,260,2.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.7,75,100000,0,0,331,0,0,0,0,0,0,0,160,2.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,11.6,75,100100,0,0,325,0,0,0,0,0,0,0,110,3.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.1,73,100000,0,0,324,0,0,0,0,0,0,0,90,3.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.1,75,100000,0,0,322,0,0,0,0,0,0,0,80,2.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100000,0,0,320,0,0,0,0,0,0,0,90,3.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.1,78,100000,0,0,319,0,0,0,0,0,0,0,60,2.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.1,81,100000,0,0,317,0,0,0,0,0,0,0,80,1.5,0,0,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,11.8,81,100000,8,325,340,1,21,1,129,0,113,4,90,1.3,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.1,77,100000,192,1326,345,49,42,43,5522,61,4855,192,90,0.0,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,11.8,70,100000,452,1326,348,180,131,135,19961,7796,15067,666,260,0.2,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.1,67,100000,702,1326,347,335,208,225,37698,16056,25440,1208,260,2.3,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,11.0,59,100000,925,1326,338,629,624,194,74443,43650,23034,1102,260,3.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,10.0,51,100000,1104,1326,344,803,738,189,97870,49846,23108,1096,280,4.6,0,0,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,7.5,40,99900,1228,1326,346,962,881,146,121611,55896,18562,822,250,4.8,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,9.1,46,99900,1287,1326,346,1052,964,116,135993,57243,15095,610,250,6.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,7.1,38,99800,1279,1326,347,1056,985,107,137416,58748,13912,567,250,5.2,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,9.7,49,99800,1203,1326,344,896,783,186,110734,51820,23113,1060,260,6.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,8.2,42,99700,1064,1326,346,817,842,142,101244,53960,17646,823,250,5.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,11.1,55,99700,872,1326,345,596,637,177,70491,43644,21058,998,270,4.6,0,0,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,11.4,57,99700,641,1326,344,431,633,125,50247,38659,14635,659,260,5.7,0,0,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,11.7,60,99700,386,1326,342,209,382,98,23430,17791,11002,470,260,6.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.7,66,99700,131,1326,335,51,180,34,5678,0,3730,146,240,5.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.8,68,99700,0,34,347,0,0,0,0,0,0,0,240,4.4,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.1,72,99700,0,0,341,0,0,0,0,0,0,0,210,3.1,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.6,70,99800,0,0,330,0,0,0,0,0,0,0,210,3.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.1,67,99800,0,0,329,0,0,0,0,0,0,0,210,2.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.1,67,99800,0,0,329,0,0,0,0,0,0,0,60,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,11.2,68,99800,0,0,329,0,0,0,0,0,0,0,60,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.4,76,99800,0,0,329,0,0,0,0,0,0,0,80,1.6,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.9,84,99800,0,0,330,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,99800,0,0,325,0,0,0,0,0,0,0,70,2.1,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,14.0,87,99800,8,327,328,1,37,1,130,0,101,3,70,1.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,14.4,83,99900,192,1326,348,59,74,48,6495,183,5331,213,100,2.3,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,14.0,72,99900,452,1326,353,206,211,134,22819,12120,14920,660,100,0.0,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,11.2,54,100000,702,1326,346,488,681,128,57484,42252,15082,685,260,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,12.5,54,100000,925,1326,354,674,745,154,81092,47731,18577,874,260,1.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.0,64,100000,1104,1326,373,574,241,373,66139,20016,43260,2165,260,5.1,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.9,65,100000,1228,1326,370,653,257,415,76008,21476,48624,2332,260,4.7,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,13.9,61,100000,1287,1326,369,718,308,419,84187,25543,49464,2194,250,5.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,13.9,61,99900,1279,1326,369,760,393,381,89687,31349,45282,2026,250,5.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,13.9,61,99900,1203,1326,369,703,372,365,82372,29887,43063,2079,260,5.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,14.0,62,99900,1065,1326,365,631,399,310,73365,31230,36309,1800,270,4.7,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,99900,874,1326,349,617,693,160,73318,43937,19135,902,260,5.7,0,0,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,14.4,69,99900,643,1326,347,417,574,138,48087,35148,16017,728,250,5.1,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.9,68,99800,388,1326,345,211,388,98,23643,17467,10991,471,250,4.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.5,68,99800,132,1326,343,58,243,33,6366,0,3695,144,260,4.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,10.4,54,99800,0,42,341,0,0,0,0,0,0,0,250,3.0,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,9.6,52,99900,0,0,340,0,0,0,0,0,0,0,260,2.1,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,14.8,78,99900,0,0,341,0,0,0,0,0,0,0,260,2.1,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.4,73,99900,0,0,351,0,0,0,0,0,0,0,190,2.2,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.2,77,99900,0,0,352,0,0,0,0,0,0,0,120,3.2,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.5,87,99900,0,0,370,0,0,0,0,0,0,0,110,3.5,8,8,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.9,86,99800,0,0,344,0,0,0,0,0,0,0,120,2.7,2,2,15.9,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.4,84,99800,0,0,332,0,0,0,0,0,0,0,110,3.5,0,0,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,99900,0,0,345,0,0,0,0,0,0,0,80,2.6,3,3,14.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.4,86,99900,8,329,345,1,32,1,129,0,105,3,80,1.6,3,3,11.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.3,83,99900,192,1325,348,56,63,47,6221,125,5217,208,80,2.0,3,3,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,13.8,76,99900,452,1325,348,186,149,136,20630,8627,15084,668,140,1.6,2,2,9.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.4,65,100000,702,1325,345,471,623,141,54992,39098,16546,758,140,2.8,0,0,11.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,13.8,63,100000,925,1325,351,659,708,166,78847,45677,19909,943,140,3.9,0,0,13.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,13.3,57,100000,1104,1325,355,828,796,165,101707,50070,20372,958,250,2.8,0,0,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,14.3,59,100000,1228,1325,359,954,865,153,119795,51642,19264,858,250,4.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,13.8,61,100000,1287,1325,353,995,855,164,125215,51775,20772,860,260,5.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.4,64,100000,1279,1325,347,965,807,186,120178,50689,23282,987,250,6.8,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.8,68,100000,1204,1325,360,634,248,409,73611,20927,47796,2326,260,7.0,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.3,68,100000,1066,1325,356,561,258,354,64692,21563,41016,2052,250,5.5,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,99900,875,1325,354,441,234,287,50163,19006,32781,1614,260,4.1,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,13.6,73,99900,644,1325,353,302,203,204,33840,14879,22918,1073,260,4.9,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.9,76,99900,390,1325,352,150,125,114,16603,6192,12604,546,260,5.5,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.0,79,99900,134,1325,349,35,47,30,3866,0,3339,129,240,4.0,3,3,15.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.3,83,99800,0,50,347,0,0,0,0,0,0,0,260,3.7,3,3,13.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.3,86,99900,0,0,363,0,0,0,0,0,0,0,250,3.9,8,8,15.8,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.3,86,99900,0,0,345,0,0,0,0,0,0,0,280,2.5,3,3,15.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,99900,0,0,344,0,0,0,0,0,0,0,250,1.5,3,3,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,99900,0,0,381,0,0,0,0,0,0,0,210,2.0,10,10,14.5,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.8,80,99800,0,0,383,0,0,0,0,0,0,0,140,1.3,10,10,14.3,457,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.2,78,99800,0,0,382,0,0,0,0,0,0,0,130,0.2,10,10,13.3,464,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.9,78,99800,0,0,380,0,0,0,0,0,0,0,130,2.1,10,10,15.9,518,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,99800,0,0,380,0,0,0,0,0,0,0,130,2.1,10,10,14.0,518,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.2,80,99900,8,331,380,1,1,1,128,0,126,4,180,1.6,10,10,15.7,528,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.8,77,99900,192,1325,380,19,3,19,2105,226,3077,78,180,2.3,10,10,12.7,606,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,99900,451,1325,386,58,2,57,6341,210,8863,227,120,0.2,10,10,11.6,586,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.7,69,99900,702,1325,378,153,7,150,16329,734,21160,580,120,2.2,9,9,14.7,650,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,12.2,64,99900,924,1325,381,235,9,228,24651,897,30303,943,120,3.0,9,9,16.1,739,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.2,59,99900,1104,1325,380,378,32,351,43898,2684,41034,2040,140,2.6,8,8,16.0,795,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.3,61,99900,1227,1325,386,419,27,394,49015,2285,46362,2210,160,4.0,9,9,16.1,823,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,13.1,64,99900,1287,1325,369,666,225,447,77752,19383,52578,2339,250,6.1,6,6,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.8,63,99900,1279,1325,344,1003,882,151,126902,53090,19222,802,240,5.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,12.8,64,99800,1204,1325,355,730,425,344,86016,33589,40790,1957,250,6.2,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,12.8,66,99800,1066,1325,341,800,797,159,98113,50241,19575,922,250,6.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,12.8,66,99800,876,1325,356,464,281,278,52879,22575,31891,1566,270,5.1,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.1,70,99800,645,1325,356,291,175,206,32621,12998,23177,1086,270,5.4,4,4,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.2,73,99700,391,1325,356,130,73,109,14448,3552,12113,523,270,5.6,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.9,74,99700,136,1325,353,27,21,25,3049,0,2813,107,250,4.4,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,99800,0,58,351,0,0,0,0,0,0,0,260,3.0,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,99800,0,0,370,0,0,0,0,0,0,0,220,2.6,9,9,16.1,405,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,99800,0,0,372,0,0,0,0,0,0,0,220,1.3,9,9,16.1,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,99800,0,0,372,0,0,0,0,0,0,0,170,0.2,9,9,16.1,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.2,77,99800,0,0,372,0,0,0,0,0,0,0,170,2.0,9,9,16.1,495,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.8,76,99800,0,0,382,0,0,0,0,0,0,0,80,1.6,10,10,16.1,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,99800,0,0,380,0,0,0,0,0,0,0,80,1.9,10,10,16.1,541,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.7,77,99800,0,0,379,0,0,0,0,0,0,0,80,0.0,10,10,16.1,488,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,99800,0,0,379,0,0,0,0,0,0,0,50,0.0,10,10,16.0,488,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,99900,8,332,379,1,1,1,128,0,126,4,50,1.3,10,10,15.9,495,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.2,74,99900,192,1325,379,19,3,19,2102,226,3077,78,140,0.2,10,10,14.5,549,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.2,72,100000,451,1325,382,53,2,53,5791,162,8138,208,140,1.3,10,10,14.3,556,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.2,69,100100,701,1325,385,106,2,106,11437,161,15241,410,140,0.2,10,10,13.3,617,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.3,68,100100,924,1325,388,173,2,171,18298,194,23113,707,150,2.1,10,10,16.1,671,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.8,68,100100,1103,1325,391,248,3,246,26034,308,31266,1217,150,2.1,10,10,16.0,671,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,12.3,61,100100,1227,1325,362,656,262,413,76487,22353,48515,2321,240,2.4,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,100100,1287,1325,347,1063,984,107,138023,55336,13983,561,240,4.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,100100,1280,1325,347,1091,1045,82,144230,56479,10868,434,280,6.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.7,61,100100,1204,1325,346,952,897,137,120246,53453,17370,779,250,5.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,12.3,64,100000,1067,1325,341,786,760,173,95750,49351,21201,1005,250,5.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,12.8,66,100000,877,1325,341,616,683,164,73214,44761,19582,924,250,6.2,0,0,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,12.8,68,100000,647,1325,339,415,559,143,47914,35313,16521,752,260,5.9,0,0,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.9,71,100000,393,1325,336,224,440,94,25189,19720,10563,451,260,5.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.4,74,100000,137,1325,336,61,258,34,6756,0,3811,149,260,4.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100100,0,66,347,0,0,0,0,0,0,0,240,3.2,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.8,80,100100,0,0,352,0,0,0,0,0,0,0,240,3.4,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.4,78,100200,0,0,352,0,0,0,0,0,0,0,250,2.0,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,13.0,77,100200,0,0,371,0,0,0,0,0,0,0,220,2.1,9,9,14.5,400,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100200,0,0,373,0,0,0,0,0,0,0,230,2.1,9,9,16.1,595,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100100,0,0,373,0,0,0,0,0,0,0,240,2.1,9,9,15.7,488,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.8,80,100100,0,0,383,0,0,0,0,0,0,0,260,2.1,10,10,13.1,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,100100,0,0,382,0,0,0,0,0,0,0,320,2.0,10,10,14.5,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100100,0,0,380,0,0,0,0,0,0,0,290,1.5,10,10,14.0,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100100,8,332,383,1,1,1,128,0,126,4,250,0.3,10,10,14.3,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.3,77,100200,192,1324,383,19,3,19,2108,226,3078,78,250,2.7,10,10,12.9,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.3,75,100300,451,1324,386,61,3,60,6668,248,9283,239,340,3.0,10,10,13.1,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.3,75,100300,701,1324,386,103,1,102,11095,141,14771,396,230,2.6,10,10,14.5,495,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.3,75,100300,923,1324,376,201,4,198,21306,420,26558,819,230,2.6,9,9,14.5,549,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.3,73,100400,1103,1324,370,329,15,316,34313,1546,39657,1568,250,2.6,8,8,14.0,549,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,13.1,68,100400,1227,1324,364,570,141,440,66082,12249,51349,2469,260,4.2,6,6,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.3,65,100300,1287,1324,363,775,411,375,91691,32704,44683,1959,260,4.7,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.4,64,100300,1280,1324,362,849,569,300,102147,41484,36242,1586,230,5.2,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.9,68,100300,1205,1324,360,734,433,341,86550,33704,40424,1938,260,5.7,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.9,71,100300,1068,1324,363,554,242,359,63712,20159,41560,2082,250,5.8,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,100200,878,1324,374,310,49,277,35306,3879,31797,1562,260,6.2,8,8,16.0,423,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,13.9,74,100200,648,1324,380,175,21,165,18637,2057,23433,640,260,6.5,9,9,16.0,392,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.9,76,100200,394,1324,389,53,3,52,5754,280,8070,207,260,6.6,10,10,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,100200,139,1324,383,13,1,13,1450,107,2160,55,250,5.6,10,10,16.1,358,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100200,0,74,381,0,0,0,0,0,0,0,260,4.7,10,10,16.1,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.9,84,100300,0,0,380,0,0,0,0,0,0,0,230,5.0,10,10,16.1,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.8,86,100400,0,0,378,0,0,0,0,0,0,0,270,4.0,10,10,16.1,305,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.4,84,100400,0,0,377,0,0,0,0,0,0,0,280,3.4,10,10,16.1,305,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100400,0,0,378,0,0,0,0,0,0,0,260,2.1,10,10,16.1,312,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.8,86,100400,0,0,378,0,0,0,0,0,0,0,260,2.0,10,10,15.9,366,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100300,0,0,380,0,0,0,0,0,0,0,320,1.6,10,10,14.3,366,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100200,0,0,380,0,0,0,0,0,0,0,320,1.9,10,10,12.9,358,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100300,0,0,380,0,0,0,0,0,0,0,320,0.0,10,10,12.0,305,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100300,8,332,381,1,1,1,128,0,126,4,320,2.2,10,10,9.8,308,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,100300,192,1324,381,19,3,19,2112,227,3079,78,240,2.3,10,10,11.3,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100300,451,1324,384,53,2,52,5808,163,8129,207,240,0.3,10,10,11.5,342,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.9,80,100300,701,1324,384,105,1,104,11345,152,15069,405,240,2.7,10,10,12.9,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.0,78,100300,923,1324,387,169,2,167,17973,174,22641,690,290,3.7,10,10,13.3,388,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100300,1102,1324,387,235,2,233,24815,237,29794,1154,260,4.1,10,10,16.0,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.0,76,100300,1227,1324,379,414,26,390,42975,2633,46964,2621,260,4.7,9,9,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.3,78,100300,1287,1324,379,496,52,446,57896,4391,52413,2329,230,5.8,9,9,16.1,320,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.9,76,100200,1280,1324,378,542,86,459,63037,7456,53751,2426,260,6.2,9,9,16.1,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100200,1205,1324,376,459,52,412,53323,4373,48195,2343,260,6.2,9,9,16.1,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.0,79,100100,1068,1324,386,345,24,325,36044,2508,41014,1532,260,6.0,10,10,16.1,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100100,879,1324,384,240,14,231,25382,1420,30898,931,260,4.6,10,10,16.0,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100100,649,1324,384,155,12,149,16583,1202,21309,578,240,5.2,10,10,16.0,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.4,84,100100,396,1324,384,59,4,58,6497,402,9031,233,240,5.6,10,10,15.9,266,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,100100,140,1324,382,14,4,14,1562,258,2284,58,250,5.0,10,10,14.7,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.4,87,100100,0,81,381,0,0,0,0,0,0,0,260,4.0,10,10,16.1,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100100,0,0,378,0,0,0,0,0,0,0,280,3.5,10,10,16.1,220,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100100,0,0,378,0,0,0,0,0,0,0,270,2.5,10,10,15.9,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.3,89,100100,0,0,378,0,0,0,0,0,0,0,240,2.0,10,10,14.5,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.9,86,100100,0,0,378,0,0,0,0,0,0,0,250,1.6,10,10,14.5,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100000,0,0,381,0,0,0,0,0,0,0,80,1.9,10,10,14.3,277,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,100000,0,0,381,0,0,0,0,0,0,0,90,0.2,10,10,12.7,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99900,0,0,384,0,0,0,0,0,0,0,90,1.3,10,10,11.1,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99900,0,0,384,0,0,0,0,0,0,0,150,0.0,10,10,9.0,308,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99900,8,332,384,1,1,1,128,0,126,4,150,1.5,10,10,5.2,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100000,192,1324,384,19,3,19,2111,227,3079,78,220,1.7,10,10,8.0,349,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.9,80,100000,450,1324,384,52,2,52,5733,163,8026,205,110,3.5,10,10,8.0,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.8,77,100000,700,1324,387,105,1,104,11331,152,15055,404,110,2.3,10,10,8.2,471,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,13.4,73,100000,922,1324,379,210,5,206,22166,512,27527,850,250,0.6,9,9,9.8,593,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.9,71,100000,1102,1324,376,378,32,351,43814,2651,40946,2038,250,5.1,8,8,11.0,843,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.9,70,100000,1226,1324,377,486,63,428,56457,5373,50046,2403,260,5.2,8,8,13.3,914,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,13.9,69,100000,1287,1324,365,723,316,416,84784,26084,49103,2169,240,5.8,5,5,15.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,14.3,71,99900,1280,1324,387,535,80,457,62257,6935,53597,2418,240,5.0,9,9,12.9,459,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,14.4,73,99900,1206,1324,385,465,55,415,53954,4651,48472,2357,270,5.1,9,9,13.1,484,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.3,73,99800,1069,1324,376,442,88,371,50772,7409,42921,2156,240,5.1,8,8,14.5,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,14.4,73,99800,880,1324,364,430,206,293,48801,16657,33482,1653,250,4.6,5,5,14.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,14.1,73,99800,650,1324,362,289,165,208,32380,12151,23438,1101,270,4.3,5,5,14.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,13.9,74,99800,397,1324,362,125,58,107,13870,2798,11981,517,270,4.1,6,6,13.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.3,78,99700,142,1324,371,17,5,16,1963,0,1900,70,280,5.5,8,8,14.5,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.2,79,99800,1,87,359,0,0,0,0,0,0,0,270,4.9,6,6,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.3,83,99800,0,0,374,0,0,0,0,0,0,0,280,4.0,9,9,14.7,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99800,0,0,373,0,0,0,0,0,0,0,270,3.0,9,9,16.1,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99800,0,0,384,0,0,0,0,0,0,0,240,2.2,10,10,16.1,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99800,0,0,384,0,0,0,0,0,0,0,240,2.5,10,10,16.1,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,99800,0,0,383,0,0,0,0,0,0,0,250,1.8,10,10,16.1,434,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99800,0,0,384,0,0,0,0,0,0,0,260,2.1,10,10,16.1,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.8,80,99800,0,0,383,0,0,0,0,0,0,0,280,2.2,10,10,16.1,457,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,99800,0,0,383,0,0,0,0,0,0,0,150,3.1,10,10,16.0,457,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,99800,8,330,380,1,1,1,128,0,126,4,100,3.1,10,10,16.1,464,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.2,79,99900,191,1324,381,19,3,19,2107,226,3078,78,140,3.2,10,10,16.1,525,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.8,75,99900,450,1324,383,51,1,50,5577,143,7842,200,160,3.4,10,10,16.1,593,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,99900,700,1324,386,111,2,110,11884,192,15785,425,100,1.6,10,10,15.9,701,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.8,70,99900,922,1324,389,176,2,174,18663,215,23525,719,100,2.6,10,10,14.5,701,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.8,68,99900,1101,1324,391,251,3,249,26381,339,31648,1231,260,2.8,10,10,14.0,708,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,13.3,72,99900,1226,1324,378,396,20,378,41091,2037,45563,2537,260,4.2,9,9,14.7,758,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,13.2,69,99900,1287,1324,374,557,96,464,64874,8412,54377,2420,230,5.1,8,8,16.1,732,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.4,66,99900,1280,1324,363,790,449,356,93808,34966,42574,1882,250,5.2,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,99800,1206,1324,360,764,492,316,90644,37173,37681,1794,250,5.9,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.9,68,99800,1070,1324,360,652,439,297,76199,33718,34962,1726,250,7.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.9,71,99800,881,1324,357,472,292,278,53812,23151,31840,1565,250,5.1,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,13.9,72,99800,652,1324,356,315,225,204,35336,16452,23043,1081,240,5.1,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.9,73,99800,398,1324,354,156,129,117,17205,6574,12972,564,240,5.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.9,76,99800,143,1324,354,37,45,32,4080,0,3546,138,250,4.9,4,4,15.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.3,80,99800,1,94,377,0,0,0,0,0,0,0,260,4.0,9,9,16.1,464,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,99900,0,0,376,0,0,0,0,0,0,0,250,3.0,9,9,16.1,518,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,99900,0,0,387,0,0,0,0,0,0,0,240,2.5,10,10,16.1,518,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.0,78,99900,0,0,387,0,0,0,0,0,0,0,290,2.2,10,10,16.1,518,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.3,81,99900,0,0,387,0,0,0,0,0,0,0,290,3.1,10,10,16.1,518,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,99800,0,0,383,0,0,0,0,0,0,0,140,3.2,10,10,16.1,518,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.2,78,99800,0,0,382,0,0,0,0,0,0,0,120,3.5,10,10,16.1,521,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,99800,0,0,380,0,0,0,0,0,0,0,140,2.6,10,10,16.1,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,99800,0,0,380,0,0,0,0,0,0,0,140,2.6,10,10,16.0,556,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,99800,8,329,380,1,1,1,128,0,126,4,130,2.6,10,10,16.1,617,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.8,77,99800,191,1323,380,19,3,19,2105,233,3075,78,170,2.5,10,10,16.1,681,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.8,75,99900,449,1323,383,55,2,54,5991,181,8396,215,140,2.1,10,10,16.1,769,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,99900,699,1323,386,112,2,111,12030,202,15969,430,140,2.3,10,10,16.1,801,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.8,70,100000,921,1323,389,178,2,176,18879,235,23775,727,140,3.4,10,10,16.1,647,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.8,68,100000,1101,1323,391,250,3,248,26269,339,31519,1225,260,2.3,10,10,16.0,708,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.3,70,100000,1225,1323,392,351,10,342,36525,1005,41525,2296,260,4.2,10,10,16.1,762,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,13.3,67,100000,1287,1323,385,512,61,452,59684,5295,53109,2358,240,4.6,9,9,16.1,782,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.3,65,99900,1280,1323,379,617,164,459,71811,14246,53776,2421,260,5.2,8,8,16.1,914,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.3,63,99900,1206,1323,365,732,426,344,86320,33497,40785,1953,250,6.1,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.3,66,99900,1070,1323,359,635,401,311,73993,31542,36450,1805,240,5.6,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,99800,881,1323,362,425,194,295,48214,15910,33743,1666,250,5.1,5,5,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,13.1,68,99800,653,1323,368,230,64,198,25836,4622,22422,1049,250,4.8,7,7,16.1,610,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.9,73,99800,400,1323,381,73,8,71,7970,765,10899,284,260,5.0,9,9,16.1,532,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,99800,144,1323,379,14,3,14,1560,238,2288,58,270,4.0,9,9,15.9,610,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.2,79,99900,1,100,388,0,0,0,0,0,0,0,280,3.1,10,10,14.5,424,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.3,83,99900,0,0,384,0,0,0,0,0,0,0,240,3.1,10,10,16.1,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.0,81,99900,0,0,384,0,0,0,0,0,0,0,240,3.1,10,10,16.1,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.3,80,99900,0,0,387,0,0,0,0,0,0,0,260,3.2,10,10,16.1,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.9,78,99900,0,0,386,0,0,0,0,0,0,0,280,4.0,10,10,16.1,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99800,0,0,384,0,0,0,0,0,0,0,250,3.2,10,10,16.1,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99800,0,0,384,0,0,0,0,0,0,0,270,0.3,10,10,16.1,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.0,81,99800,0,0,384,0,0,0,0,0,0,0,270,2.5,10,10,16.1,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,99800,0,0,384,0,0,0,0,0,0,0,250,2.1,10,10,16.0,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.4,83,99800,8,327,385,1,1,1,128,0,126,4,250,1.8,10,10,15.7,403,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,99900,191,1323,387,19,3,19,2114,234,3077,78,180,0.3,10,10,13.1,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100000,449,1323,387,56,2,56,6168,201,8597,220,180,2.6,10,10,14.5,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,14.0,77,100000,698,1323,388,106,2,105,11453,162,15203,408,280,3.1,10,10,14.5,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,100000,921,1323,390,156,1,155,16677,123,21076,639,250,3.2,10,10,14.5,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,100000,1100,1323,390,229,2,228,24250,206,29171,1126,240,3.6,10,10,14.0,411,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,14.4,70,100000,1225,1323,367,631,224,424,73274,18928,49575,2380,250,3.7,5,5,14.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,100000,1286,1323,370,746,358,398,87806,28859,47186,2077,260,4.7,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,14.4,68,99900,1280,1323,369,790,447,357,93649,34515,42588,1882,250,5.2,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,99900,1207,1323,367,656,282,399,76377,23355,46794,2267,250,6.4,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,14.3,71,99900,1071,1323,365,558,246,359,64275,20444,41587,2083,270,7.3,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,14.4,73,99800,882,1323,377,324,59,285,36876,4682,32614,1607,280,6.7,8,8,16.0,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,14.4,76,99800,654,1323,374,210,43,189,23677,2995,21397,998,250,6.7,8,8,16.0,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,99800,401,1323,371,91,17,85,9786,1586,12988,341,250,6.5,8,8,16.1,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.9,76,99900,145,1323,357,34,8,33,3706,607,5330,141,260,6.1,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.4,81,99900,1,106,376,0,0,0,0,0,0,0,250,4.5,9,9,16.1,388,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100000,0,0,374,0,0,0,0,0,0,0,240,4.0,9,9,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100100,0,0,374,0,0,0,0,0,0,0,280,3.6,9,9,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.5,84,100100,0,0,374,0,0,0,0,0,0,0,260,3.4,9,9,16.1,335,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100100,0,0,374,0,0,0,0,0,0,0,260,2.0,9,9,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100100,0,0,385,0,0,0,0,0,0,0,270,1.5,10,10,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100000,0,0,385,0,0,0,0,0,0,0,350,1.7,10,10,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,15.0,88,100000,0,0,384,0,0,0,0,0,0,0,290,2.6,10,10,16.1,274,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100000,0,0,382,0,0,0,0,0,0,0,270,2.6,10,10,16.0,274,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100000,8,324,385,1,1,1,127,0,126,4,260,3.0,10,10,12.9,274,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100100,190,1323,385,18,3,18,2010,211,2927,74,280,2.7,10,10,12.9,274,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.0,86,100100,448,1323,385,58,2,57,6318,211,8786,225,270,3.1,10,10,12.9,274,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.0,83,100200,697,1323,389,107,2,107,11625,172,15382,413,260,3.1,10,10,12.9,274,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.0,81,100200,920,1323,391,172,2,170,18351,196,23038,702,260,3.2,10,10,12.7,282,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.0,78,100200,1100,1323,394,260,4,257,27481,423,32683,1270,260,4.6,10,10,12.0,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.0,78,100200,1225,1323,384,416,26,391,43287,2722,47105,2621,250,4.3,9,9,13.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100200,1286,1323,389,529,73,458,61512,6240,53635,2386,290,5.5,9,9,14.7,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100100,1280,1323,375,666,231,443,77663,19446,52006,2335,280,4.3,7,7,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.0,73,100100,1207,1323,388,495,76,426,57368,6493,49639,2417,270,5.6,9,9,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.0,76,100000,1071,1323,385,391,46,353,45029,3786,40975,2051,250,5.3,9,9,16.1,331,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.0,78,100000,883,1323,375,326,60,286,37059,4747,32713,1613,260,6.7,8,8,16.0,299,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.0,78,100000,655,1323,376,215,47,192,24217,3296,21699,1014,270,6.7,8,8,16.1,250,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.0,82,100000,402,1323,390,57,3,56,6223,329,8663,222,270,6.6,10,10,16.1,236,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.0,87,100000,147,1323,384,14,3,14,1566,233,2290,58,260,6.2,10,10,16.1,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,15.0,88,100000,1,111,384,0,0,0,0,0,0,0,270,6.2,10,10,16.1,122,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100000,0,0,382,0,0,0,0,0,0,0,260,6.4,10,10,14.7,118,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,15.0,90,100100,0,0,382,0,0,0,0,0,0,0,260,4.0,10,10,15.7,91,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.9,93,100100,0,0,379,0,0,0,0,0,0,0,250,3.5,10,10,12.9,91,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.5,90,100100,0,0,379,0,0,0,0,0,0,0,250,3.0,10,10,12.9,91,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,14.9,93,100100,0,0,379,0,0,0,0,0,0,0,230,2.5,10,10,12.7,94,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,14.5,93,100000,0,0,376,0,0,0,0,0,0,0,190,1.9,10,10,11.5,122,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100000,0,0,382,0,0,0,0,0,0,0,40,0.2,10,10,12.7,122,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100000,0,0,382,0,0,0,0,0,0,0,40,2.1,10,10,11.0,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,15.0,93,100100,7,321,380,1,1,1,127,0,126,4,40,0.0,10,10,10.7,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100100,189,1323,382,18,3,18,2009,211,2927,74,250,0.2,10,10,6.4,190,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100100,447,1323,382,50,1,49,5463,144,7644,194,250,1.6,10,10,6.6,236,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100200,697,1323,382,105,2,104,11341,162,15022,403,280,2.6,10,10,8.2,190,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.9,89,100200,919,1323,383,149,1,149,16005,103,20245,611,270,2.8,10,10,9.8,244,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100200,1099,1323,384,232,2,230,24507,216,29467,1136,250,4.1,10,10,11.0,247,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,14.1,78,100200,1224,1323,388,360,11,349,37507,1171,42378,2340,250,4.5,10,10,14.3,327,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.3,78,100200,1286,1323,379,526,71,457,61192,6079,53568,2382,260,5.0,9,9,14.7,342,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,13.9,75,100100,1280,1323,379,560,102,462,65135,8820,54097,2434,270,4.8,9,9,16.1,388,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.9,73,100100,1207,1323,381,493,75,425,57180,6403,49629,2413,240,6.2,9,9,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100000,1072,1323,379,410,59,362,47247,4974,41973,2103,260,6.3,9,9,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100000,884,1323,371,345,78,293,39246,6341,33518,1655,250,6.7,8,8,16.0,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,13.9,77,100000,656,1323,369,217,48,193,24422,3432,21832,1020,280,7.0,8,8,16.0,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.9,78,99900,403,1323,376,82,11,78,8825,1065,11925,312,280,7.0,9,9,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,99900,148,1323,384,14,3,14,1561,225,2291,58,260,6.0,10,10,16.1,324,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.0,84,99900,1,117,381,0,0,0,0,0,0,0,260,5.7,10,10,16.1,266,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.4,87,100000,0,0,381,0,0,0,0,0,0,0,270,5.6,10,10,15.9,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100000,0,0,378,0,0,0,0,0,0,0,260,4.5,10,10,14.5,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,14.4,89,100000,0,0,379,0,0,0,0,0,0,0,270,3.5,10,10,14.7,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.3,86,100000,0,0,381,0,0,0,0,0,0,0,260,3.1,10,10,16.1,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100100,0,0,378,0,0,0,0,0,0,0,260,3.0,10,10,16.1,220,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100000,0,0,378,0,0,0,0,0,0,0,270,2.0,10,10,16.1,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,14.0,88,100000,0,0,377,0,0,0,0,0,0,0,270,2.1,10,10,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100100,0,0,377,0,0,0,0,0,0,0,250,2.1,10,10,16.0,335,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100100,7,317,377,1,1,1,128,0,126,4,260,2.2,10,10,16.1,357,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.3,83,100100,188,1322,378,18,3,18,1999,210,2925,74,260,2.2,10,10,16.1,495,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.3,80,100100,446,1322,381,55,2,55,6063,191,8484,217,270,2.6,10,10,16.1,549,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.3,77,100100,696,1322,383,111,2,110,11974,202,15885,428,260,2.6,10,10,16.1,556,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.4,75,100100,918,1322,387,177,2,176,18840,236,23704,723,240,2.8,10,10,16.1,610,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100100,1098,1322,389,253,3,250,26609,360,31825,1233,250,4.1,10,10,16.0,624,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.3,70,100100,1224,1322,363,573,146,438,66429,12664,51154,2462,240,3.3,6,6,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.3,65,100100,1286,1322,365,735,338,406,86389,27790,48061,2117,260,5.2,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.2,65,100000,1280,1322,365,771,411,373,91149,32641,44435,1966,260,6.2,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.9,71,100000,1207,1322,384,478,63,420,55439,5386,49090,2384,240,6.6,9,9,16.1,465,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.8,71,99900,1072,1322,362,555,239,361,63892,19953,41869,2097,250,6.2,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.3,73,99900,885,1322,351,449,238,290,51083,19308,33181,1636,250,5.7,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,13.7,76,99900,656,1322,359,259,101,208,28994,7494,23475,1103,270,6.0,6,6,16.1,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.8,77,99900,404,1322,376,71,7,69,7662,636,10530,273,250,5.0,9,9,16.1,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.3,75,99800,148,1322,375,14,3,14,1559,225,2290,58,250,4.0,9,9,16.1,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,99900,1,121,372,0,0,0,0,0,0,0,230,3.2,9,9,16.1,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.4,81,99900,0,0,370,0,0,0,0,0,0,0,250,3.9,9,9,16.1,419,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.8,83,99900,0,0,370,0,0,0,0,0,0,0,250,2.8,9,9,16.1,373,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.4,81,99900,0,0,370,0,0,0,0,0,0,0,270,4.0,9,9,16.1,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.8,84,99900,0,0,380,0,0,0,0,0,0,0,250,3.0,10,10,16.1,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,99900,0,0,377,0,0,0,0,0,0,0,270,2.0,10,10,16.1,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,99800,0,0,377,0,0,0,0,0,0,0,280,1.5,10,10,16.1,434,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.3,83,99800,0,0,378,0,0,0,0,0,0,0,290,1.6,10,10,16.1,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,99800,0,0,380,0,0,0,0,0,0,0,290,2.1,10,10,16.0,484,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,99900,7,313,380,1,1,1,128,0,126,4,240,2.0,10,10,12.9,457,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.4,80,99900,188,1322,381,18,3,18,2000,217,2924,74,270,1.7,10,10,12.7,464,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100000,445,1322,384,53,2,53,5860,182,8198,209,250,3.0,10,10,11.5,510,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,99900,695,1322,383,98,1,97,10589,121,14117,377,240,2.2,10,10,12.7,464,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,99900,917,1322,381,142,1,142,15239,82,19372,583,250,2.6,10,10,11.1,525,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100000,1098,1322,387,225,2,224,23793,185,28703,1103,250,2.6,10,10,9.0,579,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.8,72,100000,1223,1322,358,655,264,411,76338,22193,48196,2310,260,4.7,4,4,9.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100000,1285,1322,357,815,490,339,97137,37334,40633,1766,260,5.2,3,3,11.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.3,67,99900,1280,1322,357,834,536,315,99986,39848,37985,1659,280,6.0,3,3,13.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.4,65,99900,1208,1322,357,760,482,320,90149,36746,38207,1817,260,4.7,2,2,14.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.9,66,99800,1073,1322,348,867,936,107,109446,53040,13596,623,270,5.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,99800,885,1322,345,672,822,122,81788,48698,14903,689,270,6.7,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,13.9,69,99800,657,1322,344,452,665,121,52891,39091,14243,642,250,6.7,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.0,71,99800,405,1322,342,234,452,95,26327,20479,10770,461,250,6.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.5,79,99800,149,1322,352,41,55,35,4551,0,3866,151,270,6.6,3,3,15.9,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,15.0,85,99900,1,125,350,0,0,0,0,0,0,0,270,5.7,3,3,14.5,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,15.0,88,99900,0,0,373,0,0,0,0,0,0,0,250,4.6,9,9,16.0,244,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.4,84,99900,0,0,384,0,0,0,0,0,0,0,260,4.1,10,10,14.5,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,100000,0,0,382,0,0,0,0,0,0,0,240,4.1,10,10,14.5,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.3,86,100000,0,0,381,0,0,0,0,0,0,0,250,4.1,10,10,14.5,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100000,0,0,378,0,0,0,0,0,0,0,260,3.9,10,10,14.5,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,99900,0,0,378,0,0,0,0,0,0,0,250,2.4,10,10,14.5,252,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,99900,0,0,378,0,0,0,0,0,0,0,280,2.5,10,10,14.5,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,99900,0,0,378,0,0,0,0,0,0,0,270,2.1,10,10,14.0,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.9,86,100000,7,309,378,1,1,1,127,0,126,4,270,2.5,10,10,12.7,308,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100100,187,1322,381,18,3,18,2002,217,2924,74,280,1.6,10,10,11.3,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,100100,444,1322,381,54,2,54,5956,191,8326,213,270,2.1,10,10,11.5,342,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.9,80,100200,694,1322,384,108,2,107,11670,182,15485,416,250,2.1,10,10,12.7,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.0,78,100200,917,1322,387,161,1,160,17227,154,21762,660,240,0.9,10,10,11.3,431,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100200,1097,1322,389,248,3,245,26108,329,31277,1208,240,3.1,10,10,12.0,471,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,13.9,71,100200,1223,1322,375,486,64,427,56395,5430,49919,2400,260,4.4,8,8,13.4,579,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,14.4,72,100200,1285,1322,364,722,316,415,84661,25923,49011,2164,250,5.7,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.4,71,100100,1280,1322,366,766,402,377,90469,31694,44855,1986,260,5.7,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,14.2,73,100100,1208,1322,370,570,152,431,66016,13098,50267,2446,250,6.0,7,7,16.1,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.9,73,100100,1073,1322,392,334,20,318,34958,2038,40141,1513,270,5.8,10,10,16.1,342,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100000,886,1322,389,227,10,220,23984,1011,29507,892,240,6.2,10,10,16.0,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100000,658,1322,379,183,23,171,19416,2260,24238,664,270,6.2,9,9,16.0,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.9,76,100000,406,1322,378,80,10,77,8667,964,11750,307,270,6.1,9,9,16.1,388,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100000,150,1322,373,15,3,15,1670,248,2445,62,270,5.0,9,9,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,100000,1,129,373,0,0,0,0,0,0,0,270,4.4,9,9,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100100,0,0,370,0,0,0,0,0,0,0,250,3.2,9,9,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.5,81,100100,0,0,353,0,0,0,0,0,0,0,240,3.1,6,6,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.3,83,100100,0,0,367,0,0,0,0,0,0,0,240,3.6,9,9,16.1,338,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100100,0,0,370,0,0,0,0,0,0,0,250,3.4,9,9,16.1,373,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.3,81,100000,0,0,369,0,0,0,0,0,0,0,340,1.9,9,9,16.1,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.2,83,100000,0,0,367,0,0,0,0,0,0,0,160,0.2,9,9,15.9,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100000,0,0,366,0,0,0,0,0,0,0,160,2.1,9,9,14.5,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100000,0,0,376,0,0,0,0,0,0,0,100,2.1,10,10,14.0,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.9,78,100100,7,303,380,1,1,1,128,0,126,4,100,0.2,10,10,12.7,427,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.4,78,100100,186,1322,383,18,3,18,1999,217,2924,74,50,1.6,10,10,11.1,427,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.9,80,100100,443,1322,384,59,2,58,6402,239,8919,229,50,2.2,10,10,9.9,434,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.3,77,100200,693,1322,383,99,1,98,10675,131,14248,381,240,3.5,10,10,11.6,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.3,75,100200,916,1322,387,153,1,152,16322,113,20720,626,250,3.1,10,10,14.3,495,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100200,1096,1322,392,246,3,244,25909,319,31104,1200,250,3.1,10,10,12.0,549,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.5,69,100100,1222,1322,369,534,104,438,61847,8983,51110,2462,270,3.8,7,7,12.9,549,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.8,65,100100,1285,1322,363,805,470,347,95729,36057,41612,1813,270,3.9,3,3,11.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.4,66,100000,1280,1322,356,835,538,314,100096,39881,37901,1654,260,6.1,2,2,13.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100000,1208,1322,345,975,936,120,124337,53419,15387,682,240,5.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.9,68,99900,1074,1322,360,608,338,333,70467,27213,38885,1935,260,6.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,99900,886,1322,355,460,259,287,52426,20795,32833,1618,260,6.2,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,99900,659,1322,355,312,208,209,35031,15362,23523,1106,270,6.2,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.8,73,99900,407,1322,354,157,123,119,17406,6443,13262,578,270,6.0,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.4,74,99800,151,1322,351,44,67,36,4875,0,4034,158,250,4.2,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.8,81,99800,1,132,343,0,0,0,0,0,0,0,250,4.5,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.3,80,99800,0,0,330,0,0,0,0,0,0,0,230,3.9,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,99800,0,0,332,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.2,77,99800,0,0,332,0,0,0,0,0,0,0,240,4.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.9,76,99700,0,0,331,0,0,0,0,0,0,0,240,3.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.2,80,99700,0,0,329,0,0,0,0,0,0,0,160,3.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,99700,0,0,340,0,0,0,0,0,0,0,160,2.5,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.9,81,99700,0,0,340,0,0,0,0,0,0,0,180,1.3,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,99800,0,0,341,0,0,0,0,0,0,0,90,0.0,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.8,83,99800,6,298,344,1,9,1,128,0,122,4,90,1.9,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,12.9,79,99800,185,1322,351,36,18,34,4097,0,3825,149,130,0.9,6,6,15.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.2,74,99800,442,1322,376,82,8,80,8879,722,12094,315,130,0.0,9,9,16.1,483,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.7,76,99800,692,1322,359,242,59,211,27316,4368,23954,1132,260,2.6,6,6,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.8,72,99800,915,1322,358,401,128,313,45626,10623,35757,1777,270,3.7,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,99900,1095,1322,357,522,167,384,60089,14292,44468,2230,270,4.6,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.3,65,99900,1222,1322,345,947,856,155,118729,51979,19554,873,260,5.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.3,63,99900,1284,1322,348,1051,963,115,135752,54472,14891,600,260,6.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.3,63,99900,1280,1322,348,1076,1015,93,140986,55463,12217,489,260,5.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.4,63,99800,1208,1322,348,974,933,121,124198,53730,15500,687,270,8.2,0,0,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.9,66,99800,1074,1322,348,839,871,131,104399,51547,16422,763,270,8.0,0,0,14.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.9,71,99800,887,1322,357,457,252,288,52089,20303,33003,1627,260,6.7,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,13.9,72,99800,659,1322,356,306,191,210,34252,14151,23694,1115,270,6.4,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.9,73,99800,407,1322,354,151,107,119,16765,5538,13183,575,270,6.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.0,77,99800,151,1322,352,43,61,36,4747,0,3986,156,260,4.7,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.2,80,99800,1,135,346,0,0,0,0,0,0,0,240,5.3,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.8,75,99800,0,0,332,0,0,0,0,0,0,0,220,2.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.9,71,99900,0,0,336,0,0,0,0,0,0,0,170,2.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.4,74,99900,0,0,336,0,0,0,0,0,0,0,220,1.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.8,78,99900,0,0,335,0,0,0,0,0,0,0,220,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.3,81,99900,0,0,329,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.2,86,100000,0,0,324,0,0,0,0,0,0,0,250,1.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.9,84,100000,0,0,324,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100100,0,0,325,0,0,0,0,0,0,0,250,0.0,0,0,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.9,87,100100,6,292,322,1,204,0,154,0,8,0,260,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,13.2,82,100200,183,1322,328,91,338,44,10104,0,4911,195,260,0.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.2,69,100200,441,1322,334,278,565,90,31835,26697,10290,440,260,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,12.3,65,100300,691,1322,339,488,706,119,57590,42226,14101,637,260,0.4,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,12.9,61,100300,914,1322,348,685,796,135,83138,48913,16425,765,270,3.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,13.3,59,100300,1095,1322,353,849,856,139,105509,51675,17411,810,270,5.1,0,0,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.3,61,100300,1221,1322,350,965,894,139,122000,52924,17634,782,260,5.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.3,61,100300,1284,1322,349,1023,912,138,130482,53374,17610,718,270,5.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.2,63,100200,1280,1322,347,1019,911,138,129913,53414,17609,724,260,6.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.3,59,100300,1208,1322,346,953,891,139,120385,53467,17637,788,260,6.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.7,63,100200,1074,1322,344,830,850,139,102971,51793,17346,809,260,7.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.2,61,100200,887,1322,344,661,786,133,80029,48696,16207,753,260,7.2,0,0,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,11.6,58,100200,660,1322,343,461,691,116,54266,41162,13696,615,260,6.9,0,0,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,11.0,57,100200,408,1322,342,252,542,85,28747,24256,9705,411,260,6.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,10.8,60,100200,152,1322,336,72,310,37,8041,0,4102,161,250,5.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.3,71,100200,1,138,333,0,0,0,0,0,0,0,260,5.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.4,78,100200,0,0,332,0,0,0,0,0,0,0,250,4.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.7,80,100300,0,0,332,0,0,0,0,0,0,0,240,3.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.3,76,100300,0,0,328,0,0,0,0,0,0,0,200,2.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.9,82,100300,0,0,326,0,0,0,0,0,0,0,160,3.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.2,86,100300,0,0,324,0,0,0,0,0,0,0,170,2.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100400,0,0,338,0,0,0,0,0,0,0,280,1.3,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.8,84,100400,0,0,338,0,0,0,0,0,0,0,280,0.0,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100400,0,0,335,0,0,0,0,0,0,0,90,0.0,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,12.2,86,100400,6,286,319,1,222,0,167,0,2,0,90,1.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,12.2,77,100400,182,1321,326,89,320,45,9831,112,4951,197,90,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,12.1,68,100500,440,1321,345,189,172,131,20917,9976,14621,644,90,0.0,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.9,62,100500,689,1321,340,489,715,116,57871,42651,13809,622,260,0.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.2,67,100400,913,1321,342,636,666,176,75668,44241,21066,1002,260,3.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.2,59,100500,1094,1321,346,783,705,199,94789,47445,24182,1153,240,4.6,0,0,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,11.6,56,100400,1220,1321,346,904,770,193,111660,50359,23982,1087,250,4.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,11.3,54,100400,1284,1321,347,1035,935,127,132913,55164,16329,662,260,5.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.7,61,100400,1280,1321,346,1030,931,128,131956,54177,16474,674,270,6.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.1,60,100300,1208,1321,343,927,838,161,115888,52163,20237,914,270,7.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,11.2,57,100300,1075,1321,353,610,341,333,70848,28076,38865,1930,260,8.3,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.7,61,100200,888,1321,340,634,710,157,75857,46387,18846,886,260,8.7,0,0,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,11.4,59,100200,660,1321,341,454,666,122,53288,40389,14325,645,260,7.4,0,0,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,11.2,57,100200,408,1321,342,247,513,89,28081,23437,10098,429,260,6.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,11.8,64,100200,152,1321,337,74,326,36,8224,0,4056,159,240,5.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.8,76,100100,1,140,331,0,0,0,0,0,0,0,250,6.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.9,78,100100,0,0,329,0,0,0,0,0,0,0,230,4.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.4,81,100200,0,0,330,0,0,0,0,0,0,0,230,3.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.9,84,100200,0,0,330,0,0,0,0,0,0,0,180,2.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.9,87,100200,0,0,327,0,0,0,0,0,0,0,130,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.8,90,100100,0,0,325,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.7,87,100100,0,0,321,0,0,0,0,0,0,0,140,1.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.2,86,100100,0,0,318,0,0,0,0,0,0,0,50,0.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100100,0,0,321,0,0,0,0,0,0,0,50,1.5,0,0,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,11.8,80,100100,6,279,335,1,30,1,129,0,112,4,100,1.3,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.2,74,100100,181,1321,346,52,59,43,5727,0,4837,192,100,0.0,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,12.1,68,100100,438,1321,345,187,170,131,20782,9841,14575,642,140,0.2,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,11.6,60,100100,688,1321,341,483,696,121,56988,42156,14276,645,140,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,10.9,51,100100,912,1321,350,661,737,153,79581,47973,18503,869,270,0.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.3,61,100100,1093,1321,350,799,745,183,97280,48279,22383,1062,270,4.1,0,0,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,12.8,59,100000,1220,1321,349,908,778,189,112207,49993,23499,1065,260,5.0,0,0,15.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,12.8,61,100000,1283,1321,347,945,758,208,116878,49400,25926,1090,250,4.7,0,0,11.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,12.7,57,99900,1280,1321,352,1046,962,115,135079,54830,14897,605,260,5.8,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,12.1,56,99900,1208,1321,349,952,887,140,120142,53482,17754,794,260,6.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,11.2,52,99900,1075,1321,350,860,918,114,108378,54388,14403,661,270,7.1,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,11.7,55,99800,888,1321,348,642,731,151,77010,47125,18154,851,260,6.7,0,0,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,11.4,54,99800,661,1321,348,452,657,124,52992,40101,14539,656,260,5.3,0,0,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,11.2,54,99800,409,1321,347,237,454,96,26714,21701,10886,466,260,4.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,11.8,58,99800,153,1321,344,73,311,37,8093,0,4114,161,260,4.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.0,72,99800,1,141,347,0,0,0,0,0,0,0,260,5.5,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.3,80,99800,0,0,336,0,0,0,0,0,0,0,250,3.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.8,78,99800,0,0,346,0,0,0,0,0,0,0,240,4.5,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.9,78,99800,0,0,330,0,0,0,0,0,0,0,270,3.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,99800,0,0,331,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.2,80,99800,0,0,329,0,0,0,0,0,0,0,210,0.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.3,76,99800,0,0,328,0,0,0,0,0,0,0,210,2.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.9,81,99800,0,0,326,0,0,0,0,0,0,0,260,1.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,99800,0,0,327,0,0,0,0,0,0,0,250,0.0,0,0,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,14.0,90,99900,5,272,340,0,0,0,0,0,0,0,250,2.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,14.3,87,99900,179,1321,343,48,48,41,5326,0,4615,183,260,1.3,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,13.9,75,99900,437,1321,350,181,153,131,20044,8587,14520,640,260,0.2,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.8,67,100000,687,1321,346,484,704,118,57116,41252,14022,633,260,1.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,13.2,60,100000,911,1321,350,674,774,141,81519,48009,17118,800,260,3.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,12.8,55,100000,1092,1321,355,814,782,168,99828,49787,20674,975,260,4.1,0,0,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,13.9,59,100000,1219,1321,356,938,842,161,117252,51182,20184,905,270,5.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,13.9,60,100000,1283,1321,355,1019,905,140,129644,52765,17917,733,260,5.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,13.8,60,100000,1279,1321,354,1015,904,140,129189,52812,17895,738,270,6.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,13.4,57,100000,1208,1321,355,943,870,147,118581,52231,18594,835,270,5.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,14.0,60,100000,1075,1321,356,832,853,138,103193,51007,17163,800,250,5.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.0,68,100000,888,1321,352,638,720,154,76284,44950,18508,871,250,4.6,0,0,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,15.3,71,100000,661,1321,351,432,583,141,50003,35533,16328,746,260,4.6,0,0,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.5,73,100000,409,1321,350,230,419,100,25824,19171,11306,487,260,4.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.3,73,100000,153,1321,343,70,275,38,7738,0,4234,167,250,4.9,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.5,71,100000,1,142,339,0,0,0,0,0,0,0,250,3.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.1,82,100100,0,0,338,0,0,0,0,0,0,0,250,3.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.7,87,100100,0,0,355,0,0,0,0,0,0,0,250,2.4,4,4,15.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100200,0,0,375,0,0,0,0,0,0,0,260,2.5,9,9,14.7,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.7,91,100200,0,0,367,0,0,0,0,0,0,0,240,2.0,8,8,16.1,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100200,0,0,348,0,0,0,0,0,0,0,250,0.0,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100200,0,0,331,0,0,0,0,0,0,0,270,0.2,0,0,15.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,15.0,90,100200,0,0,351,0,0,0,0,0,0,0,270,2.0,5,5,12.5,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,15.0,96,100200,0,0,346,0,0,0,0,0,0,0,250,1.5,5,5,9.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,14.5,93,100200,5,264,346,0,0,0,0,0,0,0,250,2.0,5,5,2.3,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,15.0,92,100300,178,1321,349,36,20,33,4091,0,3792,148,250,1.6,5,5,1.4,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,15.0,89,100400,435,1321,359,114,28,105,12879,1347,11901,516,260,2.6,7,7,1.5,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.0,83,100400,686,1321,354,279,111,221,31232,8299,24884,1180,250,3.6,4,4,8.4,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.0,78,100400,909,1321,357,419,159,310,47581,12946,35404,1759,260,3.7,3,3,11.5,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.0,78,100500,1091,1321,357,534,187,379,61341,15681,43885,2202,260,4.1,3,3,12.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,14.4,73,100500,1218,1321,358,657,271,407,76486,22543,47734,2294,270,5.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,14.5,73,100500,1283,1321,359,737,345,402,86645,27939,47582,2104,260,5.1,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.0,73,100500,1279,1321,361,796,460,350,94496,34998,41876,1846,270,5.2,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,15.1,76,100400,1208,1321,362,680,321,386,79335,26009,45351,2187,270,6.1,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.6,73,100400,1075,1321,362,665,459,291,77829,34260,34265,1689,260,5.8,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.6,71,100400,889,1321,353,696,878,105,85588,48908,12975,594,250,6.2,0,0,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.3,74,100400,662,1321,354,355,321,194,40025,22527,22001,1030,270,6.2,1,1,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.1,77,100400,409,1321,358,153,110,120,16981,5627,13280,580,260,6.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.5,81,100400,153,1321,356,39,44,34,4365,0,3808,149,250,5.0,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.1,85,100400,1,143,347,0,0,0,0,0,0,0,250,4.0,2,2,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.5,90,100400,0,0,334,0,0,0,0,0,0,0,230,3.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100400,0,0,347,0,0,0,0,0,0,0,250,3.5,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.6,85,100400,0,0,347,0,0,0,0,0,0,0,260,2.6,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.3,89,100500,0,0,356,0,0,0,0,0,0,0,200,1.9,6,6,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100500,0,0,351,0,0,0,0,0,0,0,250,0.0,5,5,15.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,15.0,88,100400,0,0,352,0,0,0,0,0,0,0,270,0.0,5,5,14.5,213,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,15.0,93,100400,0,0,348,0,0,0,0,0,0,0,270,2.0,5,5,14.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,15.0,94,100400,0,0,348,0,0,0,0,0,0,0,330,1.5,5,5,11.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.5,90,100400,5,256,348,0,0,0,0,0,0,0,260,2.0,5,5,4.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,15.0,93,100400,176,1321,349,37,22,34,4172,0,3846,150,240,1.8,5,5,4.3,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.0,86,100500,434,1321,351,152,82,125,16836,4415,13903,611,250,0.2,4,4,6.6,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,15.0,80,100500,684,1321,354,292,136,222,32726,10154,24967,1184,250,2.2,3,3,8.4,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.9,73,100500,908,1321,361,435,187,307,49453,15192,35085,1742,260,3.3,3,3,11.6,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,14.0,73,100500,1090,1321,356,518,164,382,59490,13949,44222,2219,260,4.6,3,3,14.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,14.4,73,100500,1218,1321,358,638,240,416,74111,20191,48738,2347,260,5.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,14.4,72,100500,1282,1321,358,708,295,422,82901,24396,49758,2210,260,5.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,14.5,70,100500,1279,1321,362,798,464,348,94808,35428,41666,1836,270,5.2,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.0,70,100400,1208,1321,365,736,430,343,86724,33118,40646,1943,260,6.3,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.0,69,100400,1075,1321,367,652,429,302,76095,32744,35503,1755,260,6.7,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,100300,889,1321,365,487,314,275,55586,24454,31619,1555,270,6.7,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,14.1,68,100300,662,1321,354,338,272,202,38067,19727,22844,1072,260,6.4,1,1,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.4,66,100200,410,1321,344,237,454,96,26733,21046,10906,468,260,6.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.0,71,100200,153,1321,342,73,306,37,8066,0,4146,163,240,5.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.0,82,100200,1,143,338,0,0,0,0,0,0,0,260,4.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100200,0,0,336,0,0,0,0,0,0,0,240,3.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.8,83,100200,0,0,336,0,0,0,0,0,0,0,240,2.8,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.4,76,100200,0,0,334,0,0,0,0,0,0,0,240,4.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.0,82,100200,0,0,332,0,0,0,0,0,0,0,230,3.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.3,86,100200,0,0,330,0,0,0,0,0,0,0,220,2.4,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,14.2,86,100200,0,0,352,0,0,0,0,0,0,0,250,1.9,6,6,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,14.3,87,100200,0,0,356,0,0,0,0,0,0,0,250,0.0,7,7,16.1,335,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,100200,0,0,345,0,0,0,0,0,0,0,360,0.0,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,14.4,89,100200,4,248,343,0,0,0,0,0,0,0,360,1.3,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,14.3,82,100200,175,1321,348,46,47,40,5140,0,4465,176,140,0.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,14.0,73,100200,432,1321,356,168,123,128,18653,6800,14270,628,140,1.3,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,14.5,70,100200,683,1321,358,320,196,219,35904,14608,24687,1169,270,0.4,2,2,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,100200,907,1321,349,634,669,174,75248,43340,20794,989,270,3.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,100200,1089,1321,349,752,640,224,90034,43407,26973,1301,260,3.6,0,0,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,14.4,66,100200,1217,1321,351,901,768,194,111035,48711,23991,1092,250,5.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,14.2,65,100200,1282,1321,358,769,405,376,90912,31986,44732,1972,260,5.3,1,1,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,14.5,68,100200,1279,1321,365,766,403,376,90466,31713,44731,1983,260,5.6,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.0,66,100100,1208,1321,370,706,371,367,82746,29387,43307,2080,270,5.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.9,70,100100,1076,1321,364,597,314,342,69058,25267,39752,1983,260,5.3,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,100000,889,1321,364,472,280,283,53810,22252,32474,1600,260,6.7,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,14.1,68,100000,662,1321,362,302,180,212,33875,13362,23885,1125,260,6.2,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.0,69,100000,410,1321,360,157,119,120,17398,6243,13369,584,260,5.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.9,76,100000,153,1321,355,45,66,37,4936,0,4095,161,260,4.4,2,2,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.5,79,100000,1,142,338,0,0,0,0,0,0,0,250,3.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100000,0,0,336,0,0,0,0,0,0,0,180,2.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.0,82,100000,0,0,358,0,0,0,0,0,0,0,180,2.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.0,86,100000,0,0,351,0,0,0,0,0,0,0,190,2.9,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.9,84,100000,0,0,350,0,0,0,0,0,0,0,260,1.7,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.5,84,100000,0,0,347,0,0,0,0,0,0,0,260,2.9,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.9,89,100000,0,0,364,0,0,0,0,0,0,0,280,1.3,8,8,16.1,274,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.5,87,99900,0,0,350,0,0,0,0,0,0,0,280,0.0,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100000,0,0,385,0,0,0,0,0,0,0,110,0.0,10,10,16.0,366,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.5,84,100000,4,239,385,0,0,0,0,0,0,0,110,1.6,10,10,15.9,358,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.9,83,100000,173,1321,388,65,147,46,7153,0,5050,202,110,2.6,10,10,14.5,308,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.4,80,100100,431,1321,388,214,282,122,23758,15064,13580,595,170,2.5,10,10,14.5,345,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,14.5,78,100100,682,1321,391,380,360,194,42996,25381,22090,1036,160,1.9,10,10,14.5,434,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.0,78,100100,906,1321,384,563,478,235,65291,34608,27385,1332,240,2.7,9,9,13.1,491,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100100,1088,1321,381,743,620,232,88699,42564,27840,1347,260,3.1,8,8,14.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.0,69,100100,1216,1321,367,978,927,124,124425,52383,15878,701,260,3.8,3,3,14.3,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.0,70,100100,1281,1321,365,1036,940,125,132848,52680,16036,654,260,5.1,3,3,12.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.0,68,100000,1278,1321,373,969,814,181,120914,49742,22725,956,260,5.1,5,5,13.3,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.0,69,100000,1208,1321,369,928,839,161,115798,50331,20166,912,250,5.2,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,99900,1076,1321,365,854,901,120,106871,51438,15100,697,260,5.6,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,99900,889,1321,365,653,760,142,78608,46250,17113,800,260,5.1,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.3,74,99900,662,1321,362,468,712,112,55176,39885,13201,592,270,5.1,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.5,78,99800,410,1321,359,258,571,81,29499,23168,9326,395,270,5.0,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.1,77,99800,153,1321,358,74,323,37,8213,0,4083,160,260,4.0,3,3,15.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.5,84,99800,1,141,353,0,0,0,0,0,0,0,240,3.2,3,3,14.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.1,84,99900,0,0,351,0,0,0,0,0,0,0,250,3.5,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.5,89,99900,0,0,352,0,0,0,0,0,0,0,230,2.5,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,99900,0,0,350,0,0,0,0,0,0,0,240,2.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.5,81,99900,0,0,350,0,0,0,0,0,0,0,250,1.3,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.1,85,99900,0,0,351,0,0,0,0,0,0,0,250,0.2,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.7,91,99900,0,0,352,0,0,0,0,0,0,0,250,2.2,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,99900,0,0,375,0,0,0,0,0,0,0,250,2.0,9,9,16.1,305,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,99900,0,0,386,0,0,0,0,0,0,0,240,1.5,10,10,16.0,485,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,99900,4,230,388,0,0,0,0,0,0,0,80,0.2,10,10,15.7,373,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.0,83,100000,172,1321,389,62,133,45,6858,0,4977,198,80,1.6,10,10,12.9,427,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.0,81,100000,429,1321,391,218,305,119,24257,15877,13301,582,80,2.6,10,10,13.1,427,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.0,78,100000,680,1321,395,379,361,193,42949,25313,21988,1031,140,2.3,10,10,14.7,427,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,15.0,77,100000,905,1321,395,515,360,269,59152,27597,31031,1525,160,1.7,10,10,16.1,465,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,100100,1087,1321,410,666,445,300,77931,33456,35330,1743,260,2.1,10,10,16.0,549,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.6,70,100000,1216,1321,371,943,859,153,118183,50394,19269,864,250,4.6,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,100000,1281,1321,371,1058,982,107,137145,52957,13859,560,260,4.7,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,100000,1278,1321,371,998,871,155,125845,50735,19633,818,260,5.2,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.6,69,100000,1208,1321,370,967,919,127,122752,51731,16143,718,260,6.1,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.7,71,99900,1076,1321,387,674,479,284,79022,35308,33487,1648,250,5.6,8,8,16.1,305,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.6,73,99900,889,1321,365,643,732,150,77018,44987,18082,850,270,6.2,3,3,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.6,76,99900,662,1321,365,446,631,130,51943,37171,15177,689,270,6.5,4,4,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,15.9,82,99900,410,1321,371,205,294,114,22749,14426,12677,552,260,6.0,7,7,16.1,366,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.0,82,99900,153,1321,380,40,49,35,4503,0,3883,152,270,5.4,9,9,16.1,278,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.0,87,99900,1,139,350,0,0,0,0,0,0,0,250,3.5,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100000,0,0,346,0,0,0,0,0,0,0,250,3.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,15.0,89,100000,0,0,349,0,0,0,0,0,0,0,250,2.9,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.9,86,100000,0,0,348,0,0,0,0,0,0,0,160,1.5,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.4,83,100000,0,0,374,0,0,0,0,0,0,0,150,1.3,9,9,16.1,419,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.5,81,100000,0,0,377,0,0,0,0,0,0,0,150,0.0,9,9,16.1,366,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.9,83,100000,0,0,388,0,0,0,0,0,0,0,140,0.2,10,10,16.1,366,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100000,0,0,387,0,0,0,0,0,0,0,140,1.8,10,10,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100000,0,0,387,0,0,0,0,0,0,0,120,4.1,10,10,16.0,373,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.0,81,100000,4,221,384,0,0,0,0,0,0,0,140,2.3,10,10,16.1,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.4,83,100000,170,1321,385,57,100,44,6235,0,4827,192,150,0.3,10,10,16.1,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.4,80,100100,427,1321,388,206,258,123,22878,13800,13667,599,150,2.5,10,10,16.1,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.3,78,100100,679,1321,389,375,350,195,42421,24837,22162,1039,90,2.0,10,10,16.1,438,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,14.3,73,100100,903,1321,384,567,495,229,65959,35745,26777,1299,90,0.2,9,9,16.1,502,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.9,64,100200,1086,1321,385,760,664,214,91344,44938,25861,1243,240,2.2,8,8,16.0,610,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.0,68,100200,1215,1321,370,958,890,140,120901,51583,17689,788,270,4.2,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.0,68,100200,1280,1321,367,1037,942,123,133020,52733,15883,648,240,5.2,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.1,69,100100,1278,1321,372,932,740,216,114774,47450,26769,1142,260,5.6,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.5,72,100100,1208,1321,371,884,745,202,108350,47274,24934,1147,250,5.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.0,73,100000,1076,1321,388,612,344,332,70924,27298,38720,1927,270,5.6,9,9,16.1,396,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.0,76,100000,889,1321,397,411,162,302,46584,13160,34419,1705,260,4.6,10,10,16.0,392,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.0,79,100000,662,1321,394,290,153,213,32462,11296,23980,1131,260,4.3,10,10,16.0,361,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.0,81,99900,410,1321,391,152,107,119,16875,5493,13264,579,260,4.1,10,10,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.0,82,100000,153,1321,390,37,36,33,4103,0,3645,142,270,4.0,10,10,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100000,1,137,388,0,0,0,0,0,0,0,260,3.0,10,10,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100000,0,0,388,0,0,0,0,0,0,0,250,2.1,10,10,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100000,0,0,388,0,0,0,0,0,0,0,250,2.2,10,10,16.1,342,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100000,0,0,388,0,0,0,0,0,0,0,280,3.0,10,10,16.1,388,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100000,0,0,388,0,0,0,0,0,0,0,260,2.5,10,10,16.1,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.9,83,100000,0,0,388,0,0,0,0,0,0,0,240,1.5,10,10,16.1,335,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100000,0,0,387,0,0,0,0,0,0,0,150,1.3,10,10,15.7,345,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.4,81,100000,0,0,387,0,0,0,0,0,0,0,120,0.3,10,10,13.1,419,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100000,0,0,384,0,0,0,0,0,0,0,120,2.6,10,10,14.0,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100100,3,211,384,0,0,0,0,0,0,0,120,1.7,10,10,8.2,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100100,168,1321,384,57,108,43,6298,0,4800,191,150,3.1,10,10,9.8,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.4,83,100100,426,1321,385,207,264,122,22939,14021,13555,594,150,3.1,10,10,11.5,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.4,80,100200,677,1321,388,372,343,196,42018,24350,22237,1043,160,3.0,10,10,13.1,373,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,14.4,78,100200,902,1321,391,516,364,267,59212,28031,30820,1512,160,2.7,10,10,14.7,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,14.4,75,100200,1085,1321,393,627,363,329,72889,28789,38464,1910,160,3.1,10,10,16.0,452,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,14.4,72,100200,1214,1321,397,644,253,411,74883,21210,48141,2322,150,1.7,10,10,16.1,564,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,100200,1280,1321,388,770,408,374,90958,32101,44511,1970,230,3.7,9,9,16.1,471,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.3,70,100200,1278,1321,374,877,628,270,106286,43666,32954,1429,260,4.1,7,7,16.1,579,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,14.3,66,100200,1208,1321,371,930,842,159,116105,50906,19991,903,260,4.7,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,14.0,66,100200,1075,1321,369,808,797,159,99199,49467,19641,925,230,5.2,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,100100,889,1321,367,618,661,173,73232,43167,20616,978,260,5.7,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,14.4,72,100100,662,1321,365,428,567,144,49502,35364,16739,765,260,5.4,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.4,73,100100,409,1321,363,236,448,97,26540,20478,10963,471,260,4.9,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,14.3,76,100100,152,1321,360,65,229,39,7214,0,4322,171,270,3.7,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.2,79,100100,1,135,388,0,0,0,0,0,0,0,260,3.1,10,10,16.1,464,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100100,0,0,387,0,0,0,0,0,0,0,270,2.5,10,10,16.1,373,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100200,0,0,387,0,0,0,0,0,0,0,230,1.6,10,10,15.9,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100200,0,0,387,0,0,0,0,0,0,0,230,2.2,10,10,14.7,419,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100200,0,0,387,0,0,0,0,0,0,0,260,2.5,10,10,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100200,0,0,387,0,0,0,0,0,0,0,240,2.0,10,10,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100200,0,0,387,0,0,0,0,0,0,0,260,1.5,10,10,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,14.0,77,100200,0,0,388,0,0,0,0,0,0,0,310,1.5,10,10,16.0,455,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100200,0,0,387,0,0,0,0,0,0,0,260,2.1,10,10,12.0,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100200,3,201,388,0,0,0,0,0,0,0,240,2.1,10,10,9.7,366,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100300,166,1321,388,57,113,43,6304,0,4758,189,260,2.1,10,10,9.7,373,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.0,83,100300,424,1321,389,205,261,121,22734,13687,13504,591,250,2.2,10,10,9.7,427,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.0,82,100300,676,1321,390,367,331,197,41392,23412,22397,1052,240,3.1,10,10,9.7,427,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100400,901,1321,388,493,314,280,56415,24486,32154,1584,230,3.2,10,10,9.7,439,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100400,1084,1321,387,587,283,354,67756,23217,41152,2055,250,3.1,10,10,11.0,495,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,14.5,75,100400,1213,1321,394,628,228,418,72887,19238,48900,2363,270,3.6,10,10,12.5,556,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,15.0,75,100400,1279,1321,386,774,418,370,91538,32478,44012,1949,240,3.7,9,9,10.0,610,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.0,70,100300,1277,1321,378,930,737,218,114456,47402,26936,1151,260,4.6,7,7,13.3,610,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,15.0,72,100300,1208,1321,372,890,759,196,109402,48038,24220,1111,250,5.1,6,6,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.0,71,100200,1075,1321,403,613,346,331,71075,27475,38626,1922,270,6.2,10,10,16.1,428,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,14.4,73,100200,889,1321,396,418,174,301,47423,14214,34319,1699,270,6.2,10,10,16.0,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,14.4,76,100200,662,1321,393,297,169,213,33300,12533,23925,1128,280,6.2,10,10,16.0,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.3,78,100200,409,1321,379,166,145,121,18345,7613,13425,586,280,5.8,9,9,16.1,434,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.2,79,100200,152,1321,363,55,138,40,6094,0,4368,172,250,5.4,7,7,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100200,1,132,347,0,0,0,0,0,0,0,250,5.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.3,84,100300,0,0,373,0,0,0,0,0,0,0,260,5.0,9,9,16.1,413,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100300,0,0,384,0,0,0,0,0,0,0,270,4.5,10,10,16.1,373,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.3,83,100400,0,0,374,0,0,0,0,0,0,0,280,3.5,9,9,16.1,419,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,100400,0,0,373,0,0,0,0,0,0,0,260,3.0,9,9,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100400,0,0,381,0,0,0,0,0,0,0,260,2.0,10,10,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.0,84,100300,0,0,381,0,0,0,0,0,0,0,250,1.5,10,10,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.3,86,100400,0,0,381,0,0,0,0,0,0,0,260,1.5,10,10,16.1,358,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100400,0,0,381,0,0,0,0,0,0,0,270,1.6,10,10,16.0,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100400,3,192,381,0,0,0,0,0,0,0,270,2.0,10,10,14.7,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100400,164,1321,381,57,117,43,6308,0,4716,187,220,1.6,10,10,16.1,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100500,422,1321,381,203,257,121,22546,13687,13481,590,220,2.1,10,10,16.1,312,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,100500,674,1321,381,360,314,200,40627,22630,22661,1064,260,2.2,10,10,15.9,373,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100500,900,1321,387,512,358,268,58723,27762,30900,1516,260,2.7,10,10,14.7,430,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100500,1083,1321,389,624,358,330,72471,28619,38557,1915,250,2.6,10,10,16.0,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.9,72,100500,1213,1321,358,933,841,160,116525,51147,20128,907,260,3.6,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100400,1279,1321,360,1034,940,124,132655,53513,16007,656,260,3.7,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100400,1277,1321,360,1038,950,120,133487,53723,15473,634,260,4.8,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.0,68,100400,1207,1321,360,977,939,119,124625,53374,15206,673,270,6.2,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.3,70,100300,1075,1321,363,824,834,145,101747,50292,18026,844,260,6.3,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,100300,889,1321,355,639,721,154,76487,45656,18473,869,280,6.7,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,100300,661,1321,355,464,698,115,54605,40262,13541,608,260,6.7,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.9,73,100300,409,1321,354,257,565,82,29309,23712,9371,397,260,6.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,13.9,77,100300,151,1321,351,75,340,36,8277,0,3965,155,260,5.8,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.3,86,100300,1,128,371,0,0,0,0,0,0,0,260,5.0,9,9,16.1,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.0,85,100300,0,0,370,0,0,0,0,0,0,0,260,4.4,9,9,16.1,274,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100400,0,0,378,0,0,0,0,0,0,0,270,3.2,10,10,16.1,266,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,14.3,90,100400,0,0,378,0,0,0,0,0,0,0,250,3.6,10,10,16.1,216,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,100400,0,0,375,0,0,0,0,0,0,0,240,3.6,10,10,16.1,236,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.9,90,100400,0,0,375,0,0,0,0,0,0,0,260,3.5,10,10,15.9,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,14.0,94,100300,0,0,372,0,0,0,0,0,0,0,280,3.1,10,10,12.8,122,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.9,93,100300,0,0,372,0,0,0,0,0,0,0,290,2.9,10,10,10.5,122,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.9,93,100300,0,0,372,0,0,0,0,0,0,0,300,1.5,10,10,4.8,122,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.9,93,100400,2,181,372,0,0,0,0,0,0,0,280,2.2,10,10,4.8,122,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.9,93,100400,162,1321,372,58,126,42,6361,0,4675,185,260,2.6,10,10,4.8,122,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.9,93,100500,420,1321,372,205,268,119,22725,14126,13317,582,250,2.5,10,10,5.0,125,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,13.9,93,100500,672,1321,373,362,323,198,40886,23171,22435,1052,250,2.2,10,10,6.8,155,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.9,86,100500,898,1321,378,517,373,263,59399,28725,30410,1490,260,3.1,10,10,10.1,199,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100500,1082,1321,384,640,394,317,74585,30968,37164,1840,270,2.6,10,10,12.0,312,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,13.2,72,100500,1212,1321,370,804,568,283,96313,41343,34133,1603,250,4.2,8,8,16.1,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,13.3,72,100500,1278,1321,357,974,824,176,121879,51132,22185,932,240,4.2,5,5,14.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100400,1276,1321,357,1009,895,144,128057,52943,18374,763,250,4.7,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.3,70,100400,1207,1321,355,961,909,131,121851,53209,16677,743,260,5.2,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.3,68,100400,1075,1321,353,886,974,94,113122,54247,11995,544,270,5.6,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100300,889,1321,340,799,1134,36,106227,55331,4817,204,260,5.1,0,0,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,13.3,71,100300,661,1321,345,491,797,92,58776,43297,11084,490,260,5.1,1,1,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.4,74,100300,408,1321,348,262,595,78,29995,24504,8948,377,260,5.0,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.9,78,100300,151,1321,335,104,298,70,10928,3372,7411,307,260,4.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.4,87,100300,1,124,371,0,0,0,0,0,0,0,260,5.2,9,9,16.1,213,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,14.3,90,100300,0,0,378,0,0,0,0,0,0,0,270,5.9,10,10,14.1,201,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,14.0,89,100400,0,0,376,0,0,0,0,0,0,0,280,4.0,10,10,1.3,122,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,14.3,96,100300,0,0,372,0,0,0,0,0,0,0,270,4.2,10,10,0.4,114,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.9,97,100300,0,0,368,0,0,0,0,0,0,0,250,4.2,10,10,0.5,61,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.8,96,100300,0,0,369,0,0,0,0,0,0,0,250,3.0,10,10,1.5,68,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.3,94,100300,0,0,368,0,0,0,0,0,0,0,280,2.6,10,10,7.0,129,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.8,90,100400,0,0,368,0,0,0,0,0,0,0,280,1.3,10,10,11.5,190,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.8,90,100400,0,0,368,0,0,0,0,0,0,0,250,0.0,10,10,12.0,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.8,90,100400,2,171,368,0,0,0,0,0,0,0,250,1.5,10,10,4.8,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.8,90,100400,160,1321,358,64,184,42,7089,0,4643,184,200,1.5,9,9,5.2,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,12.9,83,100400,418,1321,351,268,592,81,30762,25479,9266,392,220,1.5,7,7,8.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.8,80,100400,671,1321,341,546,960,58,67780,47191,7259,310,250,2.3,3,3,10.2,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.9,75,100400,897,1321,346,764,1034,61,97978,54121,7883,347,270,4.2,3,3,14.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.3,75,100500,1081,1321,354,846,874,131,105502,52043,16362,759,260,4.6,5,5,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,100400,1211,1321,352,919,815,172,114244,51091,21481,973,270,5.1,4,4,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.9,70,100400,1277,1321,351,1004,884,149,127152,52937,18972,789,260,5.3,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.4,70,100400,1276,1321,358,998,875,153,126175,52398,19395,810,260,6.7,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.9,71,100400,1207,1321,357,989,963,109,126970,53954,13999,616,270,6.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.9,71,100300,1075,1321,357,869,936,107,109726,53025,13601,623,270,6.2,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100300,888,1321,352,645,738,148,77334,46203,17876,838,270,6.2,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,13.9,74,100300,661,1321,354,465,705,113,54834,40459,13326,598,260,5.9,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.9,73,100200,407,1321,354,260,587,79,29748,24074,9033,381,260,5.8,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,13.4,74,100200,150,1321,353,72,321,36,8013,0,3995,156,260,6.5,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,100200,1,119,346,0,0,0,0,0,0,0,260,5.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100200,0,0,341,0,0,0,0,0,0,0,250,4.0,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.0,85,100200,0,0,330,0,0,0,0,0,0,0,270,3.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.3,89,100300,0,0,345,0,0,0,0,0,0,0,260,3.0,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.5,90,100200,0,0,368,0,0,0,0,0,0,0,230,2.0,9,9,16.1,91,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.9,93,100200,0,0,361,0,0,0,0,0,0,0,240,1.6,8,8,16.1,91,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,14.0,90,100100,0,0,345,0,0,0,0,0,0,0,250,1.3,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,14.4,93,100200,0,0,345,0,0,0,0,0,0,0,200,0.2,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,14.4,93,100200,0,0,345,0,0,0,0,0,0,0,200,1.5,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,14.4,92,100200,2,160,340,0,0,0,0,0,0,0,180,1.5,3,3,15.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,14.4,89,100200,158,1321,343,96,577,27,10937,0,3068,117,180,1.3,3,3,9.8,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,14.5,83,100300,416,1321,348,316,866,43,38025,27356,5202,210,260,0.2,3,3,11.5,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.0,78,100300,669,1321,357,566,1029,44,71533,46349,5622,236,260,2.2,3,3,13.3,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,14.9,75,100200,895,1321,359,769,1050,57,99042,52747,7365,323,260,3.2,3,3,15.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,100300,1080,1321,361,906,1006,83,116538,54019,10748,483,250,3.6,3,3,12.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100200,1210,1321,362,921,822,169,114580,49885,21061,955,270,4.2,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,14.9,72,100200,1277,1321,362,987,852,163,124033,50796,20641,866,270,5.0,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,14.3,67,100200,1276,1321,364,1001,882,150,126683,51953,19025,795,250,4.7,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,13.4,60,100100,1206,1321,368,981,950,114,125603,54029,14650,647,260,5.9,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.9,64,100100,1074,1321,362,885,972,95,112778,53752,12092,549,260,7.2,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.9,65,100000,888,1321,348,799,1136,36,106255,54824,4767,202,270,7.2,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.9,65,100000,660,1321,355,480,761,100,57106,42005,11937,531,260,6.7,1,1,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.8,65,100000,407,1321,363,257,577,80,29447,23856,9149,386,260,6.0,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.3,68,100000,149,1321,356,70,298,36,7746,0,4043,159,240,4.5,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.4,71,100000,1,114,350,0,0,0,0,0,0,0,240,3.9,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.0,76,100000,0,0,338,0,0,0,0,0,0,0,250,2.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.0,81,100100,0,0,339,0,0,0,0,0,0,0,270,0.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,15.4,82,100100,0,0,355,0,0,0,0,0,0,0,270,2.8,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.7,88,100100,0,0,352,0,0,0,0,0,0,0,250,1.9,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,16.0,90,100100,0,0,352,0,0,0,0,0,0,0,260,0.4,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100000,0,0,348,0,0,0,0,0,0,0,260,3.4,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.1,87,99900,0,0,348,0,0,0,0,0,0,0,270,2.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,99900,0,0,349,0,0,0,0,0,0,0,260,2.1,3,3,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.7,91,100000,2,149,354,0,0,0,0,0,0,0,250,2.0,5,5,11.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,16.1,92,100000,156,1321,356,86,457,32,9646,0,3604,140,260,1.5,5,5,5.4,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.0,83,100000,414,1321,371,269,614,77,30917,24064,8831,373,260,1.7,7,7,9.8,6706,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.6,79,100100,667,1321,387,420,523,156,48192,33066,17941,826,270,3.2,9,9,11.6,6812,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,15.5,77,100000,894,1321,387,573,527,216,66745,36797,25349,1225,270,3.6,9,9,14.7,7620,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.0,68,100000,1079,1321,387,727,598,238,86496,41564,28527,1384,260,3.6,8,8,16.0,7620,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.6,67,100000,1209,1321,401,728,412,350,85555,31815,41477,1986,270,4.3,9,9,16.1,7620,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.5,70,100000,1276,1321,396,764,402,376,90134,31316,44644,1994,260,5.6,9,9,16.1,7620,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,14.3,65,99900,1275,1321,395,735,349,398,86381,28254,47100,2115,270,5.2,9,9,16.1,7620,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,13.9,62,99900,1206,1321,388,742,444,336,87544,34355,39928,1907,250,6.2,8,8,16.1,7620,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.9,64,99800,1074,1321,371,788,752,177,95936,48114,21601,1025,270,6.2,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.9,64,99800,887,1321,371,606,632,182,71603,42265,21557,1026,270,6.2,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.9,66,99800,659,1321,363,457,678,119,53600,39555,13985,630,270,6.5,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.0,69,99700,406,1321,360,251,544,84,28588,22994,9583,406,270,6.4,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.5,74,99800,148,1321,358,68,279,37,7498,0,4064,160,260,4.0,3,3,15.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.7,82,99800,1,108,363,0,0,0,0,0,0,0,260,3.4,5,5,13.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.1,84,99900,0,0,363,0,0,0,0,0,0,0,200,2.2,5,5,14.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.1,87,100000,0,0,357,0,0,0,0,0,0,0,260,2.5,4,4,14.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.1,88,100100,0,0,354,0,0,0,0,0,0,0,270,1.9,3,3,13.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.1,87,100000,0,0,360,0,0,0,0,0,0,0,260,0.2,5,5,12.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.1,88,100000,0,0,360,0,0,0,0,0,0,0,260,1.3,5,5,12.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,16.1,90,99900,0,0,357,0,0,0,0,0,0,0,270,0.3,5,5,12.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,99800,0,0,355,0,0,0,0,0,0,0,270,2.5,5,5,11.4,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,16.1,96,99800,0,0,384,0,0,0,0,0,0,0,290,2.6,10,10,0.8,60,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,16.1,96,99900,1,138,373,0,0,0,0,0,0,0,290,1.8,9,9,1.0,91,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,15.7,90,99900,154,1321,376,63,193,40,6889,0,4427,175,340,2.5,9,9,2.6,2118,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.0,83,100000,412,1321,384,237,446,98,26673,19988,11069,476,310,0.5,9,9,9.7,7620,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.6,81,100000,666,1321,384,422,534,153,48492,33523,17616,810,270,4.0,9,9,9.7,7620,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,15.6,78,100000,893,1321,379,609,630,184,71849,41329,21752,1038,290,3.2,8,8,9.8,7620,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.0,73,100000,1078,1321,373,840,866,133,104339,49898,16613,773,260,4.1,5,5,11.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.6,71,99900,1208,1321,374,888,755,198,109081,47517,24438,1123,280,4.3,5,5,12.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.6,71,99900,1276,1321,373,947,774,200,117206,48185,24833,1061,270,5.9,5,5,13.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.5,75,99800,1275,1321,390,715,314,412,83702,25487,48565,2191,270,7.3,9,9,14.3,5486,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.0,73,99800,1206,1321,380,732,425,344,86171,32823,40752,1952,260,7.6,8,8,12.9,5486,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,15.0,77,99800,1073,1321,376,639,405,310,74455,31238,36378,1802,260,7.2,8,8,11.6,213,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,14.4,73,99800,887,1321,364,600,615,187,70651,41297,22110,1055,260,6.7,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,14.1,73,99800,659,1321,362,430,580,141,49710,35909,16335,745,250,5.6,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,14.0,73,99800,405,1321,361,239,480,92,26995,21298,10412,445,250,4.4,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,14.4,76,99800,147,1321,361,64,237,37,7030,0,4136,163,260,2.7,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.4,79,99800,1,102,358,0,0,0,0,0,0,0,260,3.4,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.5,81,99900,0,0,369,0,0,0,0,0,0,0,260,2.2,8,8,15.9,7620,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,15.7,89,99900,0,0,356,0,0,0,0,0,0,0,250,2.9,5,5,14.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,99900,0,0,349,0,0,0,0,0,0,0,260,2.3,3,3,13.3,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.7,91,99900,0,0,354,0,0,0,0,0,0,0,280,0.3,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.6,90,99800,0,0,376,0,0,0,0,0,0,0,260,2.2,9,9,15.7,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.7,88,99800,0,0,378,0,0,0,0,0,0,0,300,2.7,9,9,12.9,216,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.1,89,99800,0,0,379,0,0,0,0,0,0,0,300,0.0,9,9,12.5,244,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,16.0,88,99800,0,0,390,0,0,0,0,0,0,0,100,0.0,10,10,9.0,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.3,88,99900,1,126,393,0,0,0,0,0,0,0,100,1.6,10,10,8.0,774,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.7,87,99900,152,1321,397,57,154,40,6299,0,4373,173,120,2.0,10,10,8.0,3658,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,16.7,83,100000,410,1321,400,212,325,111,23571,15482,12395,539,170,1.3,10,10,8.0,3658,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.7,76,100000,664,1321,408,387,418,177,43900,27529,20161,938,270,0.5,10,10,8.0,3658,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.7,78,100000,891,1321,405,518,386,257,59399,28572,29673,1454,270,4.0,10,10,8.0,3658,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.7,78,100000,1077,1321,405,604,327,338,69862,25669,39287,1960,270,3.1,10,10,8.0,3942,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.7,74,99900,1208,1321,400,669,302,392,77823,24228,45993,2226,250,3.3,9,9,9.8,5953,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.7,79,99900,1275,1321,394,719,321,409,84159,25639,48216,2176,250,5.2,9,9,11.3,4877,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.6,81,99900,1274,1321,391,723,329,406,84680,26202,47852,2161,270,5.6,9,9,11.5,4877,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,16.0,77,99800,1205,1321,391,665,298,393,77403,24129,46066,2232,270,4.7,9,9,12.7,4699,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.7,74,99800,1073,1321,393,623,371,322,72314,28848,37607,1869,260,1.9,9,9,11.5,3353,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.1,78,99800,886,1321,382,517,393,254,59375,29138,29297,1433,250,4.6,8,8,12.0,3353,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.8,80,99800,658,1321,379,362,350,188,40899,24039,21315,995,270,4.3,8,8,11.6,3353,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.6,81,99800,404,1321,384,167,158,119,18488,7987,13211,577,270,3.8,9,9,11.5,3353,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.6,82,99800,146,1321,383,40,56,34,4437,0,3762,147,290,1.5,9,9,13.3,3388,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.7,87,99800,1,96,379,0,0,0,0,0,0,0,290,1.9,9,9,16.1,3622,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.0,83,99800,0,0,384,0,0,0,0,0,0,0,220,5.2,9,9,16.1,3353,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.7,82,99800,0,0,384,0,0,0,0,0,0,0,240,5.2,9,9,16.1,3353,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.1,83,99800,0,0,385,0,0,0,0,0,0,0,230,1.6,9,9,16.1,3353,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,16.1,81,99900,0,0,388,0,0,0,0,0,0,0,130,2.5,9,9,16.1,3353,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,16.1,78,99900,0,0,391,0,0,0,0,0,0,0,130,1.9,9,9,16.1,3353,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.2,76,99900,0,0,404,0,0,0,0,0,0,0,130,0.0,10,10,16.1,3353,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,16.8,81,99900,0,0,403,0,0,0,0,0,0,0,130,0.0,10,10,15.7,3353,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.2,81,99900,0,0,406,0,0,0,0,0,0,0,250,0.0,10,10,12.0,3353,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.1,81,100000,1,115,394,0,0,0,0,0,0,0,250,0.0,9,9,8.4,3495,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,16.8,81,100000,150,1321,392,59,176,39,6475,0,4301,170,250,0.2,9,9,11.3,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.1,78,100100,408,1321,397,218,362,107,24353,16633,11920,517,250,1.6,9,9,11.6,4572,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.2,75,100100,662,1321,394,383,410,178,43461,27247,20276,944,250,2.0,9,9,14.5,4607,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,16.7,73,100100,890,1321,401,553,480,229,63964,33824,26705,1297,240,1.6,9,9,14.5,4877,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.7,71,100200,1075,1321,394,698,535,262,82261,37743,31088,1522,250,2.1,8,8,14.0,5090,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,16.8,69,100200,1207,1321,407,707,375,364,82787,29089,42951,2069,270,3.2,9,9,14.5,6812,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,17.1,68,100100,1274,1321,410,755,388,381,88830,29843,45165,2031,270,3.7,9,9,14.7,7620,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,16.7,63,100100,1273,1321,415,785,446,355,92880,33474,42319,1895,270,4.6,9,9,16.1,7620,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,16.6,66,100000,1205,1321,409,712,386,360,83372,29838,42403,2042,270,4.8,9,9,16.1,7264,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,16.1,62,100000,1072,1321,402,682,504,273,80190,36459,32298,1586,270,6.3,8,8,16.1,4572,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,16.1,66,99900,885,1321,383,577,555,205,67400,37770,24085,1159,270,7.2,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,15.8,68,99900,657,1321,378,416,534,150,47782,33202,17340,796,240,5.8,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.5,71,99900,403,1321,373,213,351,106,23746,16482,11862,513,240,4.5,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.1,74,99900,144,1321,367,55,162,38,6079,0,4143,163,240,4.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.6,82,100000,1,89,375,0,0,0,0,0,0,0,230,4.9,8,8,15.9,6096,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.5,84,100000,0,0,357,0,0,0,0,0,0,0,230,3.4,4,4,14.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.0,81,100100,0,0,353,0,0,0,0,0,0,0,230,2.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.9,81,100100,0,0,353,0,0,0,0,0,0,0,220,2.2,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.6,80,100100,0,0,352,0,0,0,0,0,0,0,280,2.6,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,16.1,90,100100,0,0,352,0,0,0,0,0,0,0,270,2.6,3,3,15.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100100,0,0,376,0,0,0,0,0,0,0,260,2.6,9,9,9.7,183,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100000,0,0,386,0,0,0,0,0,0,0,260,2.6,10,10,9.3,183,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100100,0,0,386,0,0,0,0,0,0,0,250,2.6,10,10,6.0,91,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,16.1,96,100100,1,104,384,0,0,0,0,0,0,0,240,2.6,10,10,0.9,91,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,16.1,96,100200,147,1321,384,52,122,38,5683,0,4195,165,230,2.3,10,10,1.6,91,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.1,89,100200,406,1321,390,202,289,113,22390,14020,12586,547,230,0.0,10,10,1.6,94,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.1,88,100300,660,1321,392,372,376,184,42056,25451,20891,974,260,0.6,10,10,1.4,122,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.7,85,100300,888,1321,391,511,375,259,58633,28194,29908,1465,250,2.6,10,10,1.0,99,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100300,1074,1321,379,710,565,250,83991,39474,29790,1453,230,2.6,8,8,4.8,239,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.2,73,100200,1206,1321,369,960,908,131,121356,51004,16631,744,210,2.7,3,3,9.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.6,73,100200,1273,1321,371,1052,981,106,136085,52055,13801,567,250,3.6,3,3,10.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,100200,1273,1321,372,946,777,198,117095,47918,24611,1057,240,3.6,5,5,13.3,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.1,76,100100,1204,1321,393,680,327,382,79350,26139,44871,2171,230,3.6,9,9,15.3,274,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.0,81,100100,1072,1321,387,574,273,352,66072,22063,40809,2043,220,3.6,9,9,9.8,266,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100000,885,1321,373,470,281,281,53487,22010,32211,1587,210,3.6,8,8,11.0,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,15.3,81,100000,656,1321,364,391,449,168,44528,29477,19232,890,200,3.6,6,6,13.8,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.0,78,100000,401,1321,362,234,466,93,26390,20288,10472,448,200,3.6,5,5,15.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.0,79,100000,143,1321,361,66,280,35,7243,0,3910,153,200,3.5,5,5,13.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.1,85,100100,0,81,356,0,0,0,0,0,0,0,230,3.1,5,5,13.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.5,90,100100,0,0,351,0,0,0,0,0,0,0,220,3.1,4,4,14.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.1,87,100200,0,0,349,0,0,0,0,0,0,0,210,3.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.6,88,100200,0,0,378,0,0,0,0,0,0,0,200,3.1,9,9,16.1,396,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.6,90,100200,0,0,376,0,0,0,0,0,0,0,200,3.1,9,9,16.1,396,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.5,86,100200,0,0,389,0,0,0,0,0,0,0,200,3.0,10,10,15.5,396,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.9,83,100200,0,0,388,0,0,0,0,0,0,0,200,2.1,10,10,11.3,396,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.3,80,100100,0,0,387,0,0,0,0,0,0,0,210,2.2,10,10,11.3,396,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100200,0,0,387,0,0,0,0,0,0,0,190,2.6,10,10,11.0,418,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100200,1,92,373,0,0,0,0,0,0,0,190,2.6,9,9,12.9,514,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.9,80,100200,145,1322,374,56,170,38,6216,0,4177,164,200,2.6,9,9,13.1,488,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,13.8,75,100200,404,1322,379,218,373,104,24400,17866,11694,504,100,2.3,9,9,14.7,498,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.1,65,100300,658,1322,365,506,857,79,61269,44685,9565,417,100,0.0,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.4,62,100200,887,1322,365,752,1027,63,96169,53508,8033,354,250,0.5,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,100200,1073,1322,364,883,970,95,112399,53352,12191,554,250,4.6,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,13.9,65,100200,1205,1322,364,897,780,187,110755,49399,23147,1060,230,4.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.9,64,100200,1273,1322,365,949,782,196,117666,49536,24424,1047,240,4.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.9,65,100200,1272,1322,363,966,816,180,120522,50560,22536,961,250,4.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.9,66,100200,1203,1322,359,939,869,147,117910,51889,18590,838,220,4.1,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.9,68,100100,1071,1322,345,964,1138,42,129987,56628,5665,243,220,4.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.9,71,100100,884,1322,343,795,1135,36,105627,54770,4783,203,220,4.0,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.9,72,100000,655,1322,347,462,708,111,54445,40383,13136,588,240,3.8,1,1,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,13.9,74,100000,400,1322,354,243,520,86,27602,22073,9750,414,240,3.7,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.9,76,100100,141,1322,354,63,254,36,6929,0,3938,154,240,3.6,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.9,78,100100,0,74,335,0,0,0,0,0,0,0,240,3.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100100,0,0,347,0,0,0,0,0,0,0,220,3.1,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100200,0,0,347,0,0,0,0,0,0,0,240,3.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100200,0,0,373,0,0,0,0,0,0,0,240,2.1,9,9,16.1,552,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,14.0,83,100200,0,0,351,0,0,0,0,0,0,0,220,2.1,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.7,80,100200,0,0,372,0,0,0,0,0,0,0,260,1.6,9,9,16.1,640,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.3,75,100100,0,0,369,0,0,0,0,0,0,0,240,2.0,9,9,16.1,640,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100100,0,0,382,0,0,0,0,0,0,0,250,1.6,10,10,16.1,640,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100100,0,0,382,0,0,0,0,0,0,0,220,2.1,10,10,16.0,640,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.7,75,100200,0,81,382,0,0,0,0,0,0,0,230,2.2,10,10,16.1,640,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.3,72,100200,143,1322,382,51,127,37,5588,0,4082,160,230,2.6,10,10,16.1,640,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.7,72,100300,402,1322,386,199,289,112,22185,14643,12471,540,110,2.5,10,10,16.1,647,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.2,67,100300,657,1322,388,361,349,188,40882,24961,21352,994,130,1.5,10,10,16.1,715,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,12.3,62,100300,885,1322,384,559,505,221,65096,36932,25826,1246,140,1.6,9,9,16.1,823,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,12.8,59,100300,1072,1322,370,840,878,129,104796,52445,16091,746,260,0.0,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,100300,1204,1322,362,937,865,149,117663,52505,18813,848,260,5.6,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,12.7,60,100300,1272,1322,362,979,843,167,122891,52050,21079,895,250,5.2,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,12.2,57,100300,1272,1322,363,965,816,180,120513,51565,22578,963,260,6.2,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,12.3,61,100300,1203,1322,359,914,817,170,113627,51478,21212,965,280,6.1,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.8,61,100200,1070,1322,362,823,840,142,101795,51439,17690,826,250,5.5,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,12.8,66,100200,883,1322,356,607,644,177,71884,43266,21051,999,250,4.1,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,12.8,67,100200,654,1322,355,449,663,121,52563,39468,14227,641,280,4.6,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,12.9,69,100200,399,1322,353,239,504,87,27136,21953,9925,422,280,5.0,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.2,73,100200,140,1322,351,65,293,34,7215,0,3792,148,250,4.1,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,12.9,74,100200,0,66,356,0,0,0,0,0,0,0,250,4.1,6,6,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100200,0,0,372,0,0,0,0,0,0,0,250,4.0,9,9,16.1,617,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100300,0,0,372,0,0,0,0,0,0,0,250,3.2,9,9,16.1,678,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100300,0,0,372,0,0,0,0,0,0,0,270,3.5,9,9,16.1,739,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100300,0,0,372,0,0,0,0,0,0,0,260,2.6,9,9,16.1,799,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100300,0,0,372,0,0,0,0,0,0,0,260,2.6,9,9,16.1,853,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.8,75,100200,0,0,383,0,0,0,0,0,0,0,280,2.5,10,10,16.1,853,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.8,73,100200,0,0,385,0,0,0,0,0,0,0,260,1.5,10,10,16.1,853,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.8,73,100200,0,0,385,0,0,0,0,0,0,0,260,1.5,10,10,16.0,845,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,100300,0,70,386,0,0,0,0,0,0,0,350,0.2,10,10,16.1,777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100300,141,1322,388,51,137,36,5618,0,4026,158,350,1.9,10,10,16.1,678,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,12.7,69,100400,400,1322,378,214,366,104,23953,17677,11628,501,160,0.2,9,9,16.1,742,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,12.2,65,100400,655,1322,380,389,446,168,44434,30405,19299,891,160,1.6,9,9,16.1,826,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,12.2,60,100400,884,1322,386,548,477,229,63567,35409,26675,1290,130,2.2,9,9,16.1,861,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,12.2,57,100400,1071,1322,383,725,607,233,86425,43232,27982,1355,170,2.6,8,8,16.0,914,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,12.3,55,100400,1203,1322,370,923,836,162,115142,52023,20276,920,250,5.8,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,12.9,58,100400,1271,1322,367,996,879,151,125983,52856,19154,809,250,6.6,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.3,61,100400,1271,1322,370,908,701,234,111128,47131,28809,1256,270,6.2,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,13.3,63,100400,1202,1322,369,845,671,235,102483,45875,28650,1336,270,6.1,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.2,61,100400,1069,1322,370,763,701,196,92149,46694,23793,1138,270,5.6,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,100300,882,1322,368,590,597,192,69350,41193,22646,1081,260,5.1,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.1,62,100300,653,1322,368,431,600,135,50011,37009,15698,713,250,5.4,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.3,63,100300,397,1322,368,230,460,92,25980,20477,10441,445,250,5.6,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.4,69,100300,138,1322,362,58,212,35,6347,0,3921,154,260,4.7,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.0,76,100300,0,57,358,0,0,0,0,0,0,0,270,5.0,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.4,79,100300,0,0,358,0,0,0,0,0,0,0,260,4.5,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.3,79,100300,0,0,359,0,0,0,0,0,0,0,270,4.2,6,6,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,14.2,80,100400,0,0,358,0,0,0,0,0,0,0,260,4.2,6,6,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100400,0,0,374,0,0,0,0,0,0,0,280,4.6,9,9,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.3,83,100300,0,0,374,0,0,0,0,0,0,0,290,4.3,9,9,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,100300,0,0,365,0,0,0,0,0,0,0,310,2.1,8,8,16.1,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.0,84,100200,0,0,350,0,0,0,0,0,0,0,340,1.9,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,100200,0,0,350,0,0,0,0,0,0,0,260,0.0,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.5,86,100300,0,59,372,0,0,0,0,0,0,0,260,2.3,9,9,16.1,6492,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.0,86,100300,138,1322,375,59,224,35,6474,0,3906,153,260,3.5,9,9,16.1,4877,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,14.9,80,100300,397,1322,381,228,448,94,25705,19591,10578,452,340,2.6,9,9,16.1,4877,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.5,71,100300,653,1322,388,423,571,141,48865,35224,16381,747,330,2.6,9,9,16.1,4877,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100300,882,1322,389,572,546,207,66718,37862,24325,1170,260,2.8,9,9,16.1,4877,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100400,1069,1322,381,709,572,247,84034,40336,29382,1431,270,4.6,8,8,16.0,4877,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.0,68,100400,1202,1322,395,683,335,378,79795,27014,44501,2154,270,6.1,9,9,16.1,5197,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.0,68,100400,1270,1322,395,747,377,385,87905,29896,45607,2067,260,5.5,9,9,16.1,7620,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.0,64,100400,1270,1322,400,794,469,344,94298,35483,41110,1848,260,8.1,9,9,16.1,7299,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.0,66,100300,1201,1322,398,718,402,352,84281,31419,41626,2004,260,7.5,9,9,16.1,4841,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,14.9,67,100300,1069,1322,395,627,385,316,72905,30051,36923,1832,270,6.0,9,9,16.1,4572,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.4,63,100200,881,1322,389,500,357,262,57256,27439,30155,1476,280,4.6,8,8,16.0,4572,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,14.7,66,100100,651,1322,388,361,358,184,40772,24724,20928,974,240,3.5,8,8,16.0,4572,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.1,69,100100,395,1322,395,174,197,115,19283,9787,12808,557,240,2.7,9,9,16.1,4572,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.7,72,100000,136,1322,395,39,64,32,4297,0,3579,139,240,3.4,9,9,16.1,4572,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,16.1,78,100000,0,48,391,0,0,0,0,0,0,0,270,2.1,9,9,16.1,4572,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.2,74,100000,0,0,396,0,0,0,0,0,0,0,240,2.6,9,9,16.1,4572,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.6,81,100100,0,0,390,0,0,0,0,0,0,0,270,6.1,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.6,79,100100,0,0,387,0,0,0,0,0,0,0,270,5.5,9,9,16.1,4607,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.6,79,100000,0,0,387,0,0,0,0,0,0,0,260,4.1,9,9,16.1,4877,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.7,80,100000,0,0,378,0,0,0,0,0,0,0,250,3.9,8,8,16.1,4877,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.0,83,100000,0,0,363,0,0,0,0,0,0,0,250,2.5,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.5,78,100000,0,0,365,0,0,0,0,0,0,0,230,1.3,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,14.4,73,100000,0,0,364,0,0,0,0,0,0,0,100,0.0,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.0,81,100100,0,47,359,0,0,0,0,0,0,0,100,2.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,15.0,74,100100,136,1322,387,56,207,35,6196,0,3858,151,100,3.1,9,9,16.1,7500,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,14.9,62,100100,395,1322,394,253,599,74,29034,22811,8549,359,90,3.2,8,8,16.1,7500,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.3,14.3,51,100200,651,1322,394,567,1084,33,72951,46758,4296,176,120,3.9,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.9,13.6,41,100200,881,1322,407,792,1136,36,105254,54989,4742,201,120,2.2,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.3,15.6,46,100200,1068,1322,411,905,1026,76,116920,53312,9833,440,230,3.3,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.8,15.6,47,100200,1201,1322,409,879,748,200,107785,47326,24628,1138,230,4.7,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,15.6,58,100200,1269,1322,391,795,470,343,94314,35342,40974,1845,260,5.6,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,15.7,57,100200,1269,1322,390,840,563,300,100748,40073,36141,1612,250,4.7,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,16.3,61,100200,1201,1322,385,835,653,243,100844,43513,29442,1381,260,5.6,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,13.5,51,100100,1068,1322,381,816,830,146,100712,50717,18075,846,260,4.6,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,15.0,58,100100,880,1322,381,617,679,165,73268,43436,19716,932,270,4.6,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,15.3,61,100100,650,1322,379,445,660,121,51981,37923,14165,638,240,4.6,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,15.6,64,100100,394,1322,376,237,512,85,26888,20675,9651,410,240,4.5,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.7,67,100100,134,1322,373,61,269,33,6696,0,3691,144,240,4.0,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,100100,0,38,365,0,0,0,0,0,0,0,250,2.9,2,2,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,100100,0,0,353,0,0,0,0,0,0,0,220,1.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.1,74,100200,0,0,353,0,0,0,0,0,0,0,200,2.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,100300,0,0,351,0,0,0,0,0,0,0,200,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.1,76,100300,0,0,350,0,0,0,0,0,0,0,200,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.1,78,100300,0,0,348,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.0,78,100200,0,0,347,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.6,79,100200,0,0,344,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.6,79,100200,0,0,344,0,0,0,0,0,0,0,80,1.5,0,0,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,16.2,81,100300,0,36,366,0,0,0,0,0,0,0,90,1.5,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.7,78,100300,134,1322,373,78,526,24,8770,0,2768,106,170,1.3,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,16.8,73,100400,393,1322,379,287,807,47,33991,22980,5635,229,270,0.4,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.1,68,100400,649,1322,387,525,953,58,64794,42698,7127,305,270,3.1,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,16.7,66,100400,879,1322,384,720,963,80,90134,49505,9989,448,270,3.2,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,16.7,62,100400,1067,1322,386,887,990,88,113248,51699,11264,510,270,4.1,3,3,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,16.6,62,100400,1200,1322,385,908,810,172,112353,48421,21452,983,260,5.8,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,16.0,62,100400,1269,1322,382,968,827,174,120786,49389,21853,939,260,6.3,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,15.6,62,100300,1269,1322,379,942,776,198,116539,48254,24634,1068,270,6.6,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,15.3,61,100300,1200,1322,379,902,799,177,111580,49062,22022,1010,260,6.3,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,13.3,53,100200,1067,1322,376,816,831,145,100692,50868,18000,843,270,6.7,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,13.3,53,100200,879,1322,376,640,745,144,76792,46684,17415,814,260,6.7,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,14.2,59,100100,648,1322,373,451,685,115,52873,39275,13514,606,250,5.9,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.0,66,100100,392,1322,370,237,516,84,26840,20882,9562,405,250,5.2,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.1,71,100100,133,1322,361,60,272,33,6635,0,3631,142,250,5.7,2,2,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.5,78,100100,0,30,344,0,0,0,0,0,0,0,250,5.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.1,77,100200,0,0,343,0,0,0,0,0,0,0,240,5.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.6,81,100200,0,0,342,0,0,0,0,0,0,0,250,3.4,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.7,82,100300,0,0,357,0,0,0,0,0,0,0,230,2.1,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.0,87,100300,0,0,354,0,0,0,0,0,0,0,260,2.0,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.7,88,100200,0,0,352,0,0,0,0,0,0,0,260,1.3,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.0,89,100200,0,0,352,0,0,0,0,0,0,0,280,0.2,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.7,88,100200,0,0,352,0,0,0,0,0,0,0,280,1.3,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100200,0,0,352,0,0,0,0,0,0,0,280,0.0,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.7,90,100200,0,25,349,0,0,0,0,0,0,0,280,0.0,3,3,14.3,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.7,90,100300,131,1323,361,75,504,25,8443,0,2803,107,280,0.2,5,5,12.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,16.7,83,100300,391,1323,364,293,850,42,34995,22737,5015,202,280,1.3,4,4,11.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.7,76,100300,647,1323,370,555,1057,38,70600,44076,4826,200,260,0.5,3,3,13.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.7,71,100300,877,1323,374,763,1075,50,98794,51165,6492,282,260,4.6,3,3,14.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,17.0,73,100300,1066,1323,380,840,889,124,104666,49588,15475,718,260,4.6,5,5,14.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.1,68,100300,1199,1323,380,854,696,223,103757,45277,27230,1271,270,5.7,5,5,14.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.1,69,100300,1268,1323,379,899,687,241,109516,45029,29479,1299,250,5.7,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.1,71,100200,1268,1323,377,905,699,234,110471,45482,28787,1266,270,5.7,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,100100,1199,1323,374,849,685,228,102922,44852,27818,1301,270,5.9,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.1,73,100100,1066,1323,375,766,715,190,92463,45503,23073,1104,260,7.0,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.1,71,100000,877,1323,377,605,648,175,71389,41641,20713,984,260,5.7,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,16.1,72,100000,647,1323,376,438,642,124,50985,36799,14520,656,250,5.1,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.1,74,100000,390,1323,371,242,551,79,27496,20964,9049,382,250,4.7,4,4,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.0,78,99900,131,1323,362,60,288,32,6660,0,3529,138,250,5.6,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.7,82,100000,0,20,357,0,0,0,0,0,0,0,250,4.9,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.1,84,100000,0,0,360,0,0,0,0,0,0,0,250,3.4,4,4,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.0,83,100100,0,0,385,0,0,0,0,0,0,0,250,2.6,9,9,16.1,366,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.1,84,100200,0,0,384,0,0,0,0,0,0,0,190,2.2,9,9,16.1,366,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.1,88,100200,0,0,363,0,0,0,0,0,0,0,260,2.5,6,6,15.6,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.0,87,100200,0,0,381,0,0,0,0,0,0,0,250,2.5,9,9,12.9,297,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100100,0,0,386,0,0,0,0,0,0,0,280,2.0,10,10,12.7,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.7,91,100100,0,0,386,0,0,0,0,0,0,0,280,1.6,10,10,11.3,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100100,0,0,386,0,0,0,0,0,0,0,240,2.1,10,10,11.0,244,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100200,0,14,390,0,0,0,0,0,0,0,240,0.0,10,10,9.7,244,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.1,89,100200,129,1323,379,55,233,33,6110,0,3612,141,110,0.5,9,9,9.7,263,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,16.1,83,100200,388,1323,377,242,558,78,27507,20932,8909,376,110,0.2,8,8,9.7,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.2,75,100300,645,1323,372,512,917,64,62626,42897,7907,340,250,2.3,5,5,9.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.7,76,100300,876,1323,375,712,951,83,88916,49285,10374,467,270,4.2,5,5,8.2,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.0,78,100300,1064,1323,375,831,870,131,103030,49164,16283,759,270,4.6,5,5,9.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,100300,1198,1323,394,653,285,395,75859,23147,46226,2253,260,5.1,9,9,13.1,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.1,75,100200,1267,1323,394,706,307,412,82496,24817,48506,2228,270,5.2,9,9,14.7,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.1,74,100200,1267,1323,396,735,359,391,86295,28402,46230,2115,270,6.1,9,9,15.9,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.1,76,100100,1198,1323,393,703,378,361,82274,29491,42534,2059,250,5.8,9,9,12.7,291,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.0,81,100100,1064,1323,387,601,335,331,69427,26361,38550,1923,260,5.8,9,9,7.4,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.6,81,100100,876,1323,376,477,309,272,54354,23905,31170,1531,270,6.2,8,8,14.0,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,15.6,83,100100,645,1323,374,344,316,190,38660,21862,21436,1000,260,5.6,8,8,15.1,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100100,388,1323,381,170,194,113,18758,9322,12531,544,260,5.0,9,9,15.9,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.6,85,100100,129,1323,380,38,72,31,4182,0,3419,133,270,4.5,9,9,14.7,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.5,87,100100,0,11,370,0,0,0,0,0,0,0,280,3.7,8,8,16.1,244,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100200,0,0,353,0,0,0,0,0,0,0,280,4.4,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100300,0,0,374,0,0,0,0,0,0,0,280,3.9,9,9,16.1,224,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.0,86,100300,0,0,375,0,0,0,0,0,0,0,250,2.2,9,9,16.1,305,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100300,0,0,369,0,0,0,0,0,0,0,300,2.5,8,8,16.1,305,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.0,86,100300,0,0,354,0,0,0,0,0,0,0,330,1.9,5,5,15.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100300,0,0,388,0,0,0,0,0,0,0,10,0.2,10,10,14.7,366,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.1,84,100300,0,0,389,0,0,0,0,0,0,0,10,1.6,10,10,15.7,362,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100300,0,0,392,0,0,0,0,0,0,0,110,2.1,10,10,12.0,331,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100300,0,4,392,0,0,0,0,0,0,0,260,0.2,10,10,6.6,312,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.6,84,100300,127,1323,392,48,165,33,5334,0,3608,141,260,2.1,10,10,8.2,366,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.6,81,100300,386,1323,384,215,415,94,24113,17635,10599,453,320,1.9,9,9,9.7,373,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.0,78,100300,643,1323,382,428,615,129,49645,35835,15047,681,240,2.1,8,8,9.7,4267,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,100300,874,1323,372,689,893,99,84916,48675,12257,558,250,2.8,5,5,9.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,100300,1063,1323,372,821,850,138,101483,49425,17103,800,270,4.1,5,5,8.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,16.1,74,100400,1197,1323,376,814,613,260,97693,41995,31386,1484,270,4.8,6,6,11.3,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.6,71,100400,1266,1323,395,729,350,394,85588,27955,46605,2137,270,6.2,9,9,11.5,358,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.6,76,100300,1266,1323,389,717,328,403,83974,26423,47588,2186,260,6.1,9,9,13.1,305,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.5,79,100300,1197,1323,386,666,309,386,77506,25020,45301,2205,260,5.3,9,9,14.5,305,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.0,78,100200,1063,1323,375,631,401,308,73408,31018,36101,1790,270,7.1,8,8,14.8,305,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.0,78,100200,874,1323,375,497,361,258,56908,27456,29766,1455,260,6.2,8,8,16.0,299,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.0,78,100200,643,1323,376,366,391,176,41418,26323,19980,926,270,6.2,8,8,16.1,256,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.0,84,100200,386,1323,388,151,131,113,16630,6309,12478,541,280,6.1,10,10,16.1,236,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.0,87,100200,126,1323,384,29,32,26,3221,0,2884,110,270,5.6,10,10,16.1,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.9,89,100200,0,2,382,0,0,0,0,0,0,0,270,4.6,10,10,15.9,183,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.4,87,100300,0,0,381,0,0,0,0,0,0,0,280,4.4,10,10,14.7,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100300,0,0,378,0,0,0,0,0,0,0,270,2.9,10,10,16.1,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,14.3,90,100300,0,0,378,0,0,0,0,0,0,0,280,4.9,10,10,16.1,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,14.0,90,100400,0,0,376,0,0,0,0,0,0,0,250,3.0,10,10,15.7,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100400,0,0,378,0,0,0,0,0,0,0,260,2.5,10,10,12.9,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100300,0,0,378,0,0,0,0,0,0,0,310,2.0,10,10,12.5,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,14.3,90,100300,0,0,378,0,0,0,0,0,0,0,260,1.5,10,10,9.7,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,100300,0,0,375,0,0,0,0,0,0,0,260,1.5,10,10,9.0,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,14.3,89,100400,0,0,379,0,0,0,0,0,0,0,340,1.6,10,10,8.2,197,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,100400,125,1318,381,49,179,32,5377,0,3525,137,340,2.3,10,10,9.7,312,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.0,81,100400,383,1323,384,204,361,99,22743,16283,11112,476,240,0.2,10,10,9.7,366,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.3,80,100500,641,1323,387,369,408,172,41914,27423,19579,905,240,2.2,10,10,9.8,373,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.9,77,100500,873,1323,387,499,370,256,57251,28332,29466,1438,260,2.4,10,10,11.3,453,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,100500,1062,1323,360,817,844,140,101032,50840,17375,812,250,3.1,5,5,12.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.8,68,100500,1195,1323,360,938,881,142,117886,52253,17935,811,270,3.6,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.3,65,100400,1265,1323,356,1034,963,114,133276,54484,14730,618,240,3.8,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.3,65,100400,1265,1323,345,1138,1143,45,156239,57674,6253,247,260,5.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.3,63,100300,1196,1323,348,1075,1140,45,146549,57580,6132,256,240,5.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.4,63,100300,1062,1323,363,842,901,119,105418,52599,14941,690,260,4.7,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,100200,873,1323,364,652,794,129,78903,47469,15600,723,270,5.7,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,100200,641,1323,361,455,721,106,53666,40000,12486,556,260,6.0,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.4,73,100200,383,1323,357,240,565,76,27335,21482,8697,365,260,6.4,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.4,79,100200,124,1315,352,56,279,30,6240,0,3347,130,260,7.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100300,0,0,347,0,0,0,0,0,0,0,280,6.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.3,83,100300,0,0,350,0,0,0,0,0,0,0,280,6.0,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.3,86,100300,0,0,347,0,0,0,0,0,0,0,280,4.9,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.8,86,100300,0,0,341,0,0,0,0,0,0,0,250,3.6,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.4,84,100300,0,0,341,0,0,0,0,0,0,0,260,3.6,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.8,86,100300,0,0,347,0,0,0,0,0,0,0,260,3.6,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100300,0,0,367,0,0,0,0,0,0,0,290,3.5,9,9,16.1,335,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100300,0,0,367,0,0,0,0,0,0,0,270,3.1,9,9,16.1,335,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,83,100300,0,0,359,0,0,0,0,0,0,0,290,3.1,8,8,16.0,335,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.3,83,100400,0,0,378,0,0,0,0,0,0,0,250,1.9,10,10,15.9,335,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100500,122,1308,380,47,170,31,5163,0,3438,134,250,0.2,10,10,14.5,353,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.3,77,100500,381,1324,383,198,339,101,22096,15569,11268,483,180,0.2,10,10,14.7,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,13.3,75,100500,639,1324,376,398,513,150,45650,32927,17302,791,180,1.5,9,9,15.9,502,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.2,70,100500,871,1324,367,626,724,150,74880,45959,18017,844,180,0.9,7,7,14.5,610,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100500,1060,1324,360,891,1011,81,114603,54520,10424,469,260,2.8,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.3,65,100500,1194,1324,345,1075,1142,44,146630,57634,6067,254,260,4.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,13.3,63,100400,1264,1324,348,1137,1143,46,155992,57705,6300,249,250,4.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.3,61,100400,1264,1324,350,1137,1143,46,155968,57706,6314,250,250,5.8,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.3,61,100400,1195,1324,365,956,919,126,121257,53530,16067,721,270,6.6,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.4,63,100300,1061,1324,363,829,874,129,103147,51957,16142,750,270,6.2,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.9,65,100300,871,1324,369,591,622,181,69626,41733,21470,1021,270,6.2,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100300,639,1324,366,419,589,134,48444,35859,15567,705,260,6.7,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.9,71,100200,381,1324,362,221,464,88,24899,19284,9899,420,260,7.2,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.0,77,100200,122,1304,357,49,203,31,5452,0,3394,132,270,7.0,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.4,81,100300,0,0,355,0,0,0,0,0,0,0,260,5.7,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.1,83,100300,0,0,359,0,0,0,0,0,0,0,270,6.3,7,7,16.1,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100300,0,0,344,0,0,0,0,0,0,0,260,5.0,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.8,84,100300,0,0,344,0,0,0,0,0,0,0,250,4.0,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.4,84,100300,0,0,346,0,0,0,0,0,0,0,250,3.6,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.8,86,100300,0,0,347,0,0,0,0,0,0,0,250,3.5,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100300,0,0,377,0,0,0,0,0,0,0,260,3.4,10,10,16.1,457,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,13.2,82,100300,0,0,378,0,0,0,0,0,0,0,270,2.0,10,10,16.1,441,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100300,0,0,380,0,0,0,0,0,0,0,260,2.1,10,10,16.0,399,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100400,0,0,380,0,0,0,0,0,0,0,250,0.3,10,10,16.1,430,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.8,77,100400,120,1297,380,46,180,30,5137,0,3339,130,270,2.5,10,10,16.1,464,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.8,75,100500,379,1324,372,212,420,92,23784,18272,10336,440,280,2.2,9,9,16.1,525,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,100500,637,1324,367,419,597,132,48568,36572,15330,693,280,2.9,8,8,16.1,579,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,12.8,67,100500,869,1324,357,709,958,80,88862,52430,10106,452,270,2.7,4,4,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,100500,1059,1324,362,904,1041,71,117394,55902,9235,411,270,3.6,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.8,61,100500,1193,1324,347,1073,1141,45,146267,58037,6129,257,270,5.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,12.8,63,100400,1263,1324,345,1136,1143,46,155906,58129,6282,249,260,5.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,12.9,60,100400,1263,1324,349,1136,1143,46,155916,58038,6272,248,250,5.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.3,63,100400,1193,1324,348,1074,1142,44,146488,57633,6057,253,270,6.7,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.4,64,100300,1059,1324,362,843,908,117,105617,52767,14652,676,260,6.8,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100300,870,1324,366,585,609,185,68794,41144,21853,1040,260,7.7,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.9,71,100200,637,1324,363,417,589,133,48253,35784,15500,702,260,7.4,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.9,73,100200,379,1324,360,217,449,88,24409,18739,9988,424,260,7.1,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.9,76,100200,120,1294,357,50,227,29,5529,0,3265,127,280,6.7,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.9,78,100200,0,0,355,0,0,0,0,0,0,0,270,6.7,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.8,81,100300,0,0,349,0,0,0,0,0,0,0,270,6.5,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.4,81,100300,0,0,343,0,0,0,0,0,0,0,260,4.5,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100200,0,0,347,0,0,0,0,0,0,0,260,4.2,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100300,0,0,367,0,0,0,0,0,0,0,230,3.9,9,9,16.1,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.8,86,100200,0,0,360,0,0,0,0,0,0,0,230,2.5,8,8,16.1,305,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100300,0,0,344,0,0,0,0,0,0,0,200,2.1,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.0,82,100300,0,0,366,0,0,0,0,0,0,0,210,2.1,9,9,16.1,365,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100300,0,0,356,0,0,0,0,0,0,0,190,2.6,8,8,16.0,338,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.2,83,100400,0,0,377,0,0,0,0,0,0,0,190,2.2,10,10,16.1,408,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.3,83,100400,118,1288,378,45,178,29,4995,0,3257,126,160,1.5,10,10,16.1,488,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.2,79,100500,376,1324,381,199,355,98,22155,15914,10936,468,160,1.3,10,10,15.7,488,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.8,75,100500,635,1324,383,358,383,175,40580,26379,19865,918,260,0.3,10,10,13.3,495,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,100500,868,1324,375,549,512,214,63893,36964,24986,1201,260,2.5,9,9,16.1,549,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.8,68,100500,1058,1324,359,824,869,131,102434,52193,16295,758,260,2.2,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,12.8,65,100500,1192,1324,353,957,926,123,121567,54021,15713,705,260,3.3,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,100500,1262,1324,347,1135,1144,45,155789,58131,6255,248,250,5.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.8,61,100400,1262,1324,347,1135,1143,46,155781,58130,6261,248,260,5.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.9,64,100400,1192,1324,344,1072,1141,45,146137,57952,6106,256,250,5.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.4,66,100300,1058,1324,345,951,1138,42,128034,57048,5646,243,260,5.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100300,868,1324,345,780,1136,35,103499,54556,4689,198,270,6.7,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.9,71,100300,635,1324,349,474,808,86,56676,42229,10309,452,260,6.4,1,1,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,14.0,74,100200,376,1324,355,238,583,72,27160,21310,8268,345,260,6.3,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.3,78,100200,117,1284,352,55,318,27,6100,0,2967,114,250,6.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,100200,0,0,346,0,0,0,0,0,0,0,260,5.5,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100300,0,0,341,0,0,0,0,0,0,0,250,3.5,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100300,0,0,330,0,0,0,0,0,0,0,250,3.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100300,0,0,330,0,0,0,0,0,0,0,250,3.4,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100300,0,0,336,0,0,0,0,0,0,0,230,1.8,1,1,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,100300,0,0,371,0,0,0,0,0,0,0,230,0.0,9,9,16.1,358,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,100300,0,0,382,0,0,0,0,0,0,0,190,0.0,10,10,16.1,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.3,86,100300,0,0,370,0,0,0,0,0,0,0,190,0.2,9,9,16.1,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100300,0,0,360,0,0,0,0,0,0,0,190,2.1,8,8,16.0,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100300,0,0,360,0,0,0,0,0,0,0,190,0.0,8,8,16.1,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,14.3,87,100300,116,1278,352,62,467,22,7047,0,2442,93,240,0.0,6,6,15.6,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.3,80,100400,374,1324,369,236,583,72,26980,20970,8207,343,240,1.5,8,8,13.2,305,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,14.4,78,100400,633,1324,356,516,970,53,64064,44513,6562,277,260,2.2,4,4,14.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,14.4,72,100400,866,1324,358,747,1061,53,96232,52944,6840,298,240,3.2,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,100400,1056,1324,361,883,1004,83,113289,53949,10671,481,260,4.1,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,100400,1191,1324,349,1071,1142,45,145869,56656,6085,255,260,4.4,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,14.3,67,100400,1260,1324,364,996,898,142,126239,52409,18060,776,260,6.5,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,14.4,66,100400,1260,1324,372,945,795,189,117245,49660,23522,1031,250,6.1,5,5,13.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,14.5,68,100300,1191,1324,370,878,763,192,107863,48535,23725,1100,250,5.6,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.0,69,100300,1056,1324,369,815,851,137,100787,50241,17015,795,260,5.1,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100200,866,1324,362,623,725,148,74339,44896,17801,834,260,5.1,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100200,633,1324,364,437,678,113,51141,38095,13316,596,260,5.4,4,4,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.0,73,100200,373,1324,367,219,481,83,24693,18708,9438,399,260,5.7,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.1,79,100200,115,1273,361,49,258,27,5488,0,3017,117,270,5.6,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.6,85,100200,0,0,356,0,0,0,0,0,0,0,270,3.9,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.4,86,100200,0,0,348,0,0,0,0,0,0,0,250,2.6,2,2,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.0,79,100300,0,0,335,0,0,0,0,0,0,0,250,2.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100300,0,0,334,0,0,0,0,0,0,0,260,2.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.1,87,100300,0,0,334,0,0,0,0,0,0,0,250,2.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100200,0,0,341,0,0,0,0,0,0,0,250,1.9,1,1,15.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.5,90,100200,0,0,374,0,0,0,0,0,0,0,250,0.0,9,9,14.5,213,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100200,0,0,364,0,0,0,0,0,0,0,250,0.0,8,8,14.3,213,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100200,0,0,351,0,0,0,0,0,0,0,100,0.0,5,5,12.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,14.5,90,100300,0,0,343,0,0,0,0,0,0,0,100,0.0,3,3,12.5,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100300,114,1269,346,71,164,57,7393,0,5960,245,100,0.4,3,3,9.4,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,15.0,89,100400,371,1325,383,191,328,99,21184,14213,11014,472,100,2.1,10,10,8.0,220,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100400,631,1325,377,399,537,143,45770,33008,16502,751,140,2.3,9,9,8.6,293,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,14.5,70,100400,864,1325,362,746,1062,53,96102,52867,6807,296,110,0.5,3,3,9.8,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,100400,1055,1325,365,921,1085,57,121238,54817,7554,332,260,4.1,3,3,11.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,100400,1190,1325,349,1070,1142,45,145677,56682,6101,256,240,4.2,0,0,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,100300,1259,1325,349,1133,1144,46,155273,56770,6274,250,260,5.1,0,0,14.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,14.5,68,100300,1259,1325,349,1133,1144,46,155261,56679,6275,250,260,5.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.1,68,100200,1189,1325,352,1070,1142,45,145602,56023,6104,256,270,5.8,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.6,69,100200,1055,1325,355,949,1140,42,127568,55056,5611,242,270,6.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.6,71,100100,864,1325,353,777,1138,35,102974,52931,4650,197,250,6.2,0,0,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.8,74,100100,630,1325,357,471,812,84,56294,40837,10127,443,250,5.9,1,1,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.6,76,100100,370,1325,362,231,567,73,26344,19812,8320,348,260,6.0,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.5,79,100100,112,1263,364,47,237,27,5176,0,2957,114,250,4.5,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,100200,0,0,355,0,0,0,0,0,0,0,250,3.9,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,100200,0,0,349,0,0,0,0,0,0,0,250,2.1,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.5,79,100200,0,0,338,0,0,0,0,0,0,0,230,2.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.0,82,100300,0,0,338,0,0,0,0,0,0,0,240,2.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.1,84,100300,0,0,351,0,0,0,0,0,0,0,240,2.0,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.7,88,100200,0,0,351,0,0,0,0,0,0,0,200,1.7,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100200,0,0,349,0,0,0,0,0,0,0,250,1.3,3,3,15.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.6,91,100200,0,0,351,0,0,0,0,0,0,0,260,0.2,4,4,14.3,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.6,93,100200,0,0,346,0,0,0,0,0,0,0,260,1.5,3,3,12.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100200,0,0,354,0,0,0,0,0,0,0,100,0.2,5,5,7.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.6,90,100300,111,1259,355,65,589,16,7557,0,1854,69,100,1.5,5,5,6.6,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.6,84,100300,369,1325,360,273,836,41,32566,20913,4861,194,160,1.3,5,5,8.2,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,15.6,78,100300,629,1325,365,496,909,64,60514,42577,7878,338,250,0.3,5,5,9.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.6,76,100300,862,1325,368,697,941,85,86718,49887,10566,475,250,2.7,5,5,9.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.6,76,100300,1053,1325,368,818,863,132,101343,50124,16448,767,250,3.1,5,5,9.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.6,73,100300,1188,1325,366,917,851,154,114379,50285,19316,884,250,4.7,3,3,11.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.6,70,100300,1258,1325,374,934,777,197,115419,48356,24451,1080,260,5.1,5,5,13.3,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.6,69,100200,1258,1325,376,961,832,172,119950,49885,21523,942,240,5.2,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.6,71,100200,1188,1325,373,886,784,183,109075,48485,22634,1048,240,5.7,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.6,73,100200,1053,1325,371,770,748,176,93302,46903,21380,1018,250,5.7,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.6,73,100200,862,1325,371,582,615,181,68294,40457,21406,1018,260,5.7,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,15.3,73,100200,628,1325,369,419,622,124,48622,35999,14476,652,260,5.4,5,5,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.0,73,100200,367,1325,367,219,506,79,24809,18789,8992,378,260,4.9,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.0,76,100200,110,1252,364,47,255,25,5177,0,2836,109,250,3.5,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.0,81,100300,0,0,359,0,0,0,0,0,0,0,260,3.1,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.0,81,100300,0,0,359,0,0,0,0,0,0,0,280,3.0,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.1,79,100300,0,0,361,0,0,0,0,0,0,0,300,2.1,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100300,0,0,359,0,0,0,0,0,0,0,250,1.9,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.7,85,100300,0,0,357,0,0,0,0,0,0,0,320,0.2,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.0,87,100300,0,0,350,0,0,0,0,0,0,0,320,2.1,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.6,87,100300,0,0,337,0,0,0,0,0,0,0,270,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.7,88,100300,0,0,344,0,0,0,0,0,0,0,260,2.2,1,1,15.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100300,0,0,386,0,0,0,0,0,0,0,270,3.1,10,10,0.8,60,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,16.1,96,100300,0,0,384,0,0,0,0,0,0,0,270,3.0,10,10,0.8,64,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,16.1,96,100300,109,1250,384,41,175,26,4504,0,2913,113,280,2.3,10,10,0.5,91,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,16.1,96,100400,366,1325,384,185,313,98,20506,13130,10956,469,270,0.4,10,10,0.9,106,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,16.1,85,100400,627,1325,394,371,445,160,42106,28320,18289,840,240,0.9,10,10,2.5,202,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.1,76,100500,861,1325,385,629,755,139,75348,45059,16692,778,270,2.8,8,8,5.2,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,100500,1052,1325,372,872,988,88,111131,52222,11288,512,270,3.6,5,5,8.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.1,73,100500,1187,1325,369,955,932,120,121198,51667,15341,690,270,4.7,3,3,9.8,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.1,70,100500,1257,1325,371,996,904,139,126165,51180,17718,766,260,5.6,3,3,11.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.1,70,100400,1257,1325,371,1008,928,129,128410,51659,16487,709,270,5.2,3,3,13.3,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.1,71,100400,1187,1325,377,888,793,179,109493,48366,22166,1026,270,5.7,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.1,74,100400,1051,1325,374,767,745,176,92903,46474,21426,1021,260,5.6,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.0,73,100400,860,1325,373,586,632,176,68896,40877,20777,986,250,5.1,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,16.1,74,100400,625,1325,373,416,619,124,48255,35368,14450,651,260,4.8,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.1,76,100400,364,1325,371,220,523,77,24926,18348,8688,365,260,4.7,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.1,82,100400,107,1241,365,45,254,25,5023,0,2740,105,270,5.0,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.1,84,100400,0,0,363,0,0,0,0,0,0,0,270,4.5,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.1,87,100400,0,0,360,0,0,0,0,0,0,0,260,4.0,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.2,88,100500,0,0,382,0,0,0,0,0,0,0,250,2.5,9,9,15.9,240,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.6,90,100500,0,0,381,0,0,0,0,0,0,0,250,2.2,9,9,14.5,213,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.1,89,100500,0,0,379,0,0,0,0,0,0,0,260,2.5,9,9,14.1,220,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.1,88,100600,0,0,381,0,0,0,0,0,0,0,250,1.7,9,9,11.5,270,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,16.1,94,100500,0,0,375,0,0,0,0,0,0,0,250,2.2,9,9,11.9,206,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100500,0,0,386,0,0,0,0,0,0,0,340,2.0,10,10,10.9,134,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100400,0,0,386,0,0,0,0,0,0,0,310,2.1,10,10,9.0,183,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.6,90,100400,0,0,386,0,0,0,0,0,0,0,290,2.3,10,10,9.5,183,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.6,86,100500,107,1241,389,30,72,24,3319,0,2673,103,290,0.0,10,10,7.9,190,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.7,84,100600,364,1326,381,145,144,105,15972,6378,11665,502,240,0.0,9,9,6.4,256,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.1,83,100600,625,1326,385,289,196,197,32311,13789,22108,1032,240,3.0,9,9,8.0,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.0,78,100600,859,1326,390,431,230,282,48809,18121,32087,1579,270,3.1,9,9,8.0,4267,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.6,76,100600,1050,1326,382,620,395,307,71953,30426,35812,1778,280,4.6,8,8,9.0,4267,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.1,69,100600,1186,1326,373,878,772,188,107890,48463,23246,1080,250,5.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.5,70,100600,1256,1326,373,921,753,208,113298,47732,25687,1144,280,6.1,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.1,68,100500,1255,1326,373,936,784,193,115745,48940,24054,1065,270,5.6,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,15.6,68,100400,1185,1326,391,739,468,321,87086,35101,38051,1840,270,4.7,8,8,16.1,4877,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.7,67,100400,1049,1326,379,772,760,170,93725,47229,20792,988,250,5.0,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,100300,857,1326,374,593,658,168,69976,41788,19883,940,250,4.6,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,16.1,74,100300,623,1326,373,377,479,153,42988,29779,17463,799,260,4.6,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.1,76,100300,361,1326,371,176,283,99,19519,11853,11030,472,260,4.7,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.1,82,100300,105,1230,365,45,282,23,5061,0,2583,99,260,5.0,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.7,85,100300,0,0,381,0,0,0,0,0,0,0,260,5.0,9,9,16.1,295,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.6,87,100400,0,0,378,0,0,0,0,0,0,0,260,3.7,9,9,16.1,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.6,88,100400,0,0,378,0,0,0,0,0,0,0,280,4.0,9,9,16.1,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.5,90,100400,0,0,367,0,0,0,0,0,0,0,260,2.6,8,8,16.1,244,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.0,87,100400,0,0,353,0,0,0,0,0,0,0,250,2.7,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.1,87,100400,0,0,374,0,0,0,0,0,0,0,260,3.0,9,9,16.1,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,16.0,94,100300,0,0,348,0,0,0,0,0,0,0,260,2.1,3,3,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.1,90,100300,0,0,351,0,0,0,0,0,0,0,260,2.7,5,5,12.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.6,93,100300,0,0,365,0,0,0,0,0,0,0,250,3.1,8,8,11.0,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,15.6,93,100300,0,0,373,0,0,0,0,0,0,0,250,0.0,9,9,9.5,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.7,90,100400,105,1231,368,39,176,25,4292,0,2750,106,250,0.0,8,8,8.0,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,15.6,83,100400,361,1326,358,212,482,80,23835,17556,9074,382,280,0.0,4,4,8.2,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,15.6,75,100400,623,1326,363,429,674,112,50046,37282,13145,587,280,0.5,3,3,9.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.7,69,100400,857,1326,367,655,837,114,79604,47523,13907,639,280,4.1,2,2,9.8,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,100400,1049,1326,353,943,1140,42,126596,54528,5610,242,250,4.1,0,0,11.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.6,69,100400,1184,1326,367,937,900,134,118027,51444,16895,767,270,5.2,2,2,13.3,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.5,70,100300,1254,1326,353,1128,1144,46,154363,55747,6265,252,270,5.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.1,66,100300,1254,1326,370,978,872,153,123044,51295,19354,845,270,5.7,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,100200,1183,1326,371,905,834,161,112424,49873,20091,924,270,5.6,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.6,69,100200,1047,1326,370,808,850,136,99720,49799,16907,791,250,4.8,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.6,71,100100,855,1326,368,626,759,137,75058,45467,16441,765,260,6.2,3,3,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,15.6,72,100100,620,1326,366,409,606,126,47298,34993,14622,659,270,5.9,3,3,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.6,74,100100,358,1326,365,197,405,87,22004,15567,9805,415,270,5.6,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.7,77,100000,102,1216,368,45,311,21,5084,0,2407,92,270,4.6,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.1,84,100000,0,0,363,0,0,0,0,0,0,0,270,4.4,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.0,89,100100,0,0,357,0,0,0,0,0,0,0,250,3.3,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.6,88,100100,0,0,370,0,0,0,0,0,0,0,270,4.4,8,8,15.9,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100100,0,0,351,0,0,0,0,0,0,0,250,2.5,4,4,14.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100100,0,0,349,0,0,0,0,0,0,0,250,2.1,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100100,0,0,349,0,0,0,0,0,0,0,240,2.0,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.7,90,100100,0,0,352,0,0,0,0,0,0,0,240,1.2,4,4,15.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.6,86,100100,0,0,379,0,0,0,0,0,0,0,20,0.2,9,9,12.9,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100100,0,0,392,0,0,0,0,0,0,0,20,2.1,10,10,12.0,255,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.0,81,100100,0,0,381,0,0,0,0,0,0,0,50,1.6,9,9,11.6,359,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,14.9,77,100100,103,1219,384,35,138,24,3844,0,2666,102,80,2.6,9,9,14.7,549,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,14.5,70,100200,359,1327,389,148,164,104,16345,7305,11496,493,140,2.6,9,9,16.1,556,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.0,70,100200,620,1327,393,292,209,195,32657,14809,21842,1017,160,2.5,9,9,15.7,617,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.1,66,100200,855,1327,398,436,245,278,49454,19404,31684,1555,210,2.5,9,9,13.3,678,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,100200,1047,1327,390,617,394,306,71605,30315,35770,1776,270,5.1,8,8,16.0,1180,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,15.0,65,100100,1183,1327,400,678,349,368,79145,27940,43169,2111,270,4.7,9,9,16.1,4572,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.1,70,100100,1253,1327,393,675,269,421,78625,22339,49383,2325,250,5.6,9,9,16.1,4572,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.6,70,100100,1252,1327,388,757,418,362,89165,32305,42994,2003,250,5.2,8,8,16.1,4572,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.7,69,100000,1182,1327,376,837,687,225,101338,45253,27365,1291,260,6.2,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.7,72,100000,1045,1327,395,607,373,313,70224,28954,36434,1812,270,6.6,9,9,16.1,6600,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,99900,853,1327,385,496,394,243,56819,29002,27975,1360,260,5.7,8,8,16.0,6600,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,15.8,75,99900,617,1327,383,309,260,188,34563,17943,21123,981,270,5.7,8,8,16.0,6600,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.6,76,99900,355,1327,389,126,99,100,13964,4155,11099,475,270,5.6,9,9,16.1,6612,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.6,79,99900,99,1201,386,29,97,22,3287,0,2484,95,260,5.1,9,9,16.1,6492,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.6,85,99900,0,0,380,0,0,0,0,0,0,0,280,5.0,9,9,16.1,4877,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.7,87,99900,0,0,379,0,0,0,0,0,0,0,250,4.2,9,9,16.1,3255,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,15.7,89,100000,0,0,377,0,0,0,0,0,0,0,270,3.8,9,9,16.1,1233,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.0,86,100000,0,0,354,0,0,0,0,0,0,0,250,3.0,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.1,85,100000,0,0,356,0,0,0,0,0,0,0,260,2.6,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.7,91,100000,0,0,357,0,0,0,0,0,0,0,250,2.4,6,6,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100000,0,0,390,0,0,0,0,0,0,0,260,1.6,10,10,14.5,358,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.0,89,100000,0,0,389,0,0,0,0,0,0,0,360,2.5,10,10,14.5,312,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.6,87,100000,0,0,389,0,0,0,0,0,0,0,360,1.5,10,10,14.0,373,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.6,84,100000,0,0,392,0,0,0,0,0,0,0,360,0.3,10,10,12.7,423,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.7,82,100100,100,1208,395,29,90,22,3264,0,2509,96,190,2.4,10,10,11.3,404,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,15.7,79,100100,356,1327,398,131,109,101,14417,4642,11233,482,190,2.1,10,10,11.5,460,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,16.0,77,100200,618,1327,402,255,127,196,28469,8947,21962,1024,120,2.0,10,10,13.3,498,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.6,73,100200,854,1327,405,378,140,288,42740,11221,32744,1612,130,1.6,10,10,16.1,589,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,100200,1046,1327,410,529,221,355,60691,18232,40951,2056,270,2.4,10,10,16.0,1141,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,16.1,70,100200,1181,1327,392,743,483,313,87694,35732,37215,1801,270,4.6,8,8,16.1,3962,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,16.1,66,100200,1251,1327,383,944,807,183,117040,48911,22786,1012,270,4.9,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,16.2,67,100200,1251,1327,382,933,786,192,115341,48274,23842,1063,270,7.0,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.6,73,100100,1180,1327,378,846,710,214,102668,45482,26165,1232,270,5.8,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.1,71,100100,1043,1327,377,724,655,209,86453,43288,25129,1213,270,6.6,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,100000,850,1327,374,565,592,186,66064,39094,21836,1040,270,6.2,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,16.1,75,100000,614,1327,373,378,502,146,43127,30567,16690,760,260,5.9,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.1,76,100000,351,1327,371,177,317,94,19676,12482,10409,443,260,5.7,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,16.1,79,100100,84,1040,368,38,159,28,4095,0,3014,119,270,5.7,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.1,87,100100,0,0,373,0,0,0,0,0,0,0,270,5.0,8,8,16.1,244,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100100,0,0,359,0,0,0,0,0,0,0,270,4.1,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.6,87,100200,0,0,378,0,0,0,0,0,0,0,280,4.0,9,9,16.1,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.7,88,100200,0,0,370,0,0,0,0,0,0,0,260,3.7,8,8,16.1,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100200,0,0,356,0,0,0,0,0,0,0,280,4.4,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.0,84,100200,0,0,356,0,0,0,0,0,0,0,260,2.7,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.0,87,100200,0,0,356,0,0,0,0,0,0,0,280,2.4,6,6,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100200,0,0,351,0,0,0,0,0,0,0,280,2.1,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100200,0,0,351,0,0,0,0,0,0,0,280,2.1,5,5,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.1,90,100200,0,0,382,0,0,0,0,0,0,0,260,2.6,10,10,15.5,213,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,15.6,93,100300,98,1196,373,32,125,22,3517,0,2490,95,270,2.5,9,9,11.3,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.6,90,100400,354,1327,376,140,143,102,15425,6091,11277,484,260,2.2,9,9,11.3,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.6,86,100400,616,1327,379,281,186,194,31339,13108,21798,1015,240,2.7,9,9,11.5,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.7,82,100400,852,1327,370,502,411,238,57572,30161,27445,1332,260,3.3,7,7,14.0,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.6,76,100400,1044,1327,368,752,722,184,90734,46066,22291,1065,250,3.6,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.4,15.7,74,100400,1180,1327,370,890,808,172,109984,49140,21323,988,260,4.6,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.4,75,100400,1250,1327,375,841,595,281,101094,41787,33948,1557,250,5.9,7,7,16.1,274,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,15.0,69,100300,1249,1327,371,930,782,194,114893,48970,24052,1074,270,7.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.0,68,100200,1178,1327,373,872,772,187,107051,48538,23103,1077,270,7.6,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.1,67,100200,1041,1327,375,790,820,147,96911,49364,18097,851,260,7.3,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.6,71,100200,848,1327,374,603,710,150,71720,43829,17911,839,260,7.7,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,15.9,74,100200,611,1327,372,385,536,138,44056,31950,15884,720,250,6.6,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.0,75,100100,348,1327,368,185,372,88,20618,13879,9795,415,250,5.7,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.0,73,100100,81,1020,361,40,186,29,4341,0,3126,124,250,5.5,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.1,77,100200,0,0,358,0,0,0,0,0,0,0,240,3.7,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.7,82,100200,0,0,354,0,0,0,0,0,0,0,260,4.1,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100300,0,0,343,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.7,85,100300,0,0,360,0,0,0,0,0,0,0,250,1.6,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100300,0,0,358,0,0,0,0,0,0,0,280,2.1,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100400,0,0,358,0,0,0,0,0,0,0,320,1.9,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.7,88,100300,0,0,358,0,0,0,0,0,0,0,250,0.2,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.6,90,100300,0,0,355,0,0,0,0,0,0,0,250,1.5,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100300,0,0,352,0,0,0,0,0,0,0,90,1.5,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.7,90,100300,0,0,356,0,0,0,0,0,0,0,90,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.7,87,100300,84,1036,361,42,539,8,5037,0,980,35,90,0.0,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,16.7,80,100400,351,1328,365,219,572,68,24922,17493,7756,322,260,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.8,74,100400,614,1328,372,423,679,110,49400,36376,12830,572,260,0.5,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,17.2,75,100400,850,1328,373,612,729,145,72826,43415,17347,811,260,4.5,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.2,73,100400,1043,1328,375,786,806,153,95975,47478,18710,883,260,4.1,3,3,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,16.7,71,100300,1179,1328,375,896,822,166,110801,48781,20651,956,260,5.2,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,16.6,66,100300,1249,1328,381,992,910,137,125640,50977,17381,759,260,5.9,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,16.0,61,100300,1248,1328,382,1011,947,121,129180,52217,15485,671,270,7.2,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,15.5,59,100200,1176,1328,382,944,928,122,119502,52157,15532,703,260,7.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.7,15.0,58,100200,1039,1328,380,803,855,134,99177,50380,16612,776,260,6.7,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.0,64,100100,845,1328,373,600,705,151,71267,44019,18015,843,270,6.7,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.6,66,100100,608,1328,373,392,571,130,45047,33362,15043,678,260,5.9,3,3,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.0,68,100100,344,1328,374,186,390,85,20756,14100,9516,402,260,4.9,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.7,67,100100,78,1000,369,42,195,30,4450,0,3235,129,260,3.6,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.2,74,100100,0,0,353,0,0,0,0,0,0,0,240,3.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.7,76,100100,0,0,354,0,0,0,0,0,0,0,190,1.9,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.6,76,100100,0,0,354,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.2,74,100100,0,0,353,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.6,76,100100,0,0,354,0,0,0,0,0,0,0,330,0.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.0,73,100100,0,0,353,0,0,0,0,0,0,0,330,1.9,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.8,74,100000,0,0,350,0,0,0,0,0,0,0,330,0.0,0,0,15.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.3,82,100100,0,0,352,0,0,0,0,0,0,0,320,0.2,0,0,14.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.8,90,100100,0,0,347,0,0,0,0,0,0,0,320,2.1,0,0,14.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.8,87,100100,0,0,350,0,0,0,0,0,0,0,320,1.3,0,0,14.5,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,17.8,83,100200,82,1021,369,42,569,7,5038,0,840,30,320,0.0,3,3,14.7,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,17.8,76,100200,348,1328,376,221,597,65,25196,16790,7387,306,240,0.0,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.6,17.8,70,100200,612,1328,386,410,633,119,47476,34314,13778,618,240,0.0,4,4,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.2,17.8,60,100200,848,1328,397,647,836,113,78448,45732,13766,632,240,0.4,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.2,17.8,56,100200,1041,1328,402,844,946,102,106093,49951,12877,591,240,3.1,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,17.2,62,100200,1177,1328,396,856,738,202,104312,46021,24706,1161,270,4.6,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,17.3,59,100100,1247,1328,401,873,666,247,105677,43605,30093,1375,260,4.7,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.8,64,100100,1246,1328,396,837,591,282,100226,40274,33994,1571,260,5.8,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,17.6,64,100100,1174,1328,396,839,704,216,101586,44612,26288,1243,260,6.3,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,16.0,59,100000,1036,1328,391,709,629,218,84258,42301,26030,1261,260,7.0,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,15.0,56,100000,842,1328,390,573,632,172,67353,41270,20311,960,260,5.1,5,5,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.1,15.3,58,100000,604,1328,389,369,494,144,42134,30320,16543,751,240,4.8,5,5,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,15.5,59,99900,340,1328,388,174,333,89,19334,12492,9898,419,240,4.5,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.6,14.6,57,99900,75,979,385,34,167,24,3656,0,2643,103,250,3.9,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.0,70,99900,0,0,377,0,0,0,0,0,0,0,260,2.7,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.1,71,100000,0,0,370,0,0,0,0,0,0,0,250,3.1,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.7,74,100000,0,0,371,0,0,0,0,0,0,0,270,2.9,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.8,78,100000,0,0,370,0,0,0,0,0,0,0,240,1.3,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,17.1,77,100000,0,0,370,0,0,0,0,0,0,0,240,0.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.2,71,100000,0,0,367,0,0,0,0,0,0,0,330,0.2,2,2,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.1,80,100000,0,0,352,0,0,0,0,0,0,0,330,1.5,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.7,79,100000,0,0,366,0,0,0,0,0,0,0,280,1.3,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.7,81,100000,0,0,364,0,0,0,0,0,0,0,280,0.0,3,3,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.7,78,100100,0,0,367,0,0,0,0,0,0,0,280,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,16.8,76,100100,79,1006,370,41,599,6,5050,0,694,24,280,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,17.2,70,100100,346,1329,376,226,640,59,25924,17133,6824,281,270,0.2,2,2,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.6,17.2,63,100100,610,1329,371,548,1147,22,71949,42174,2860,113,270,1.3,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.9,17.2,59,100100,846,1329,394,631,793,126,75866,45178,15175,702,270,0.5,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.2,64,100100,1039,1329,387,768,769,166,93112,46445,20234,961,270,4.6,3,3,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,17.8,62,100100,1175,1329,394,900,836,160,111446,48248,19917,922,270,4.6,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,17.7,62,100000,1245,1329,393,932,793,189,115064,47351,23423,1052,270,4.7,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,16.8,59,100000,1244,1329,392,986,904,139,124580,50719,17639,775,250,5.3,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.1,64,100000,1172,1329,386,869,774,186,106434,47177,22881,1071,270,6.5,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,16.0,60,99900,1034,1329,385,761,763,168,92266,47092,20412,970,270,5.2,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,15.0,58,99900,839,1329,381,595,705,150,70704,43943,17896,837,260,5.7,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,15.3,61,99900,601,1329,379,396,607,121,45777,34584,14077,630,270,6.2,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,15.7,65,99900,336,1329,376,183,398,82,20401,13832,9198,387,270,6.5,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.2,71,99900,72,958,371,34,199,23,3687,0,2526,99,260,4.9,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.6,78,100000,0,0,372,0,0,0,0,0,0,0,240,3.0,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,100000,0,0,369,0,0,0,0,0,0,0,260,2.1,4,4,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.2,76,100000,0,0,366,0,0,0,0,0,0,0,260,2.1,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.7,79,100000,0,0,366,0,0,0,0,0,0,0,250,2.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.8,82,100000,0,0,364,0,0,0,0,0,0,0,300,1.5,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.1,83,100000,0,0,360,0,0,0,0,0,0,0,250,1.5,2,2,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.7,81,100000,0,0,349,0,0,0,0,0,0,0,320,1.6,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.7,81,99900,0,0,349,0,0,0,0,0,0,0,260,1.9,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.7,81,99900,0,0,349,0,0,0,0,0,0,0,280,0.0,0,0,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.1,83,99900,0,0,367,0,0,0,0,0,0,0,280,2.6,4,4,15.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,16.6,80,99900,77,991,364,40,293,23,4341,0,2495,97,250,2.3,3,3,14.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,16.2,70,100100,343,1329,369,216,587,65,24621,17099,7383,305,310,0.2,2,2,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.5,16.7,66,100800,607,1329,365,546,1148,22,71726,42587,2836,112,310,2.3,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,16.6,59,100800,844,1329,373,759,1141,34,100355,51623,4530,191,280,4.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,15.6,52,100100,1038,1329,393,828,917,112,103546,51355,14058,649,270,4.6,3,3,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.1,62,100000,1174,1329,390,911,862,149,113429,49451,18616,857,260,3.8,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,16.1,58,100000,1244,1329,394,874,674,243,105996,44676,29666,1358,250,5.3,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,16.2,62,99900,1242,1329,388,835,593,281,100108,41271,33878,1569,270,6.6,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.7,66,99900,1170,1329,386,797,618,253,95408,41966,30407,1456,270,5.6,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,16.7,67,99900,1031,1329,386,704,626,218,83554,41754,26012,1261,270,5.0,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,16.7,68,99800,836,1329,384,568,629,172,66564,40112,20240,957,270,4.6,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,16.4,68,99800,598,1329,382,370,513,139,42198,30407,15924,721,260,4.6,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.1,69,99800,332,1329,376,177,374,83,19669,12872,9286,391,260,4.7,4,4,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.1,74,99700,69,936,368,33,187,24,3614,0,2576,101,260,5.0,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.1,78,99700,0,0,359,0,0,0,0,0,0,0,260,4.0,2,2,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.0,78,99700,0,0,348,0,0,0,0,0,0,0,260,3.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.7,76,99800,0,0,362,0,0,0,0,0,0,0,230,3.5,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.2,79,99800,0,0,365,0,0,0,0,0,0,0,270,2.7,4,4,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.6,84,99800,0,0,361,0,0,0,0,0,0,0,280,3.4,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,16.2,81,99800,0,0,361,0,0,0,0,0,0,0,280,1.3,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.8,82,99800,0,0,363,0,0,0,0,0,0,0,310,0.2,3,3,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,17.2,87,99700,0,0,358,0,0,0,0,0,0,0,310,1.3,2,2,14.7,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.2,84,99700,0,0,349,0,0,0,0,0,0,0,330,0.0,0,0,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.3,84,99700,0,0,364,0,0,0,0,0,0,0,330,1.6,3,3,14.3,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,17.8,86,99700,75,975,369,38,295,22,4171,0,2371,92,270,2.0,4,4,13.3,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.4,17.8,75,99700,340,1329,377,215,589,64,24430,15931,7283,301,330,1.6,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,17.8,68,99700,605,1329,391,402,621,119,46453,33703,13856,621,250,2.8,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,17.9,68,99800,842,1329,393,588,677,159,69384,41161,18834,887,260,4.2,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,18.3,71,99800,1036,1329,391,722,665,204,86122,42235,24482,1183,270,4.6,5,5,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.9,65,99800,1172,1329,397,843,718,210,102237,44856,25605,1210,270,4.2,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,18.2,66,99800,1242,1329,397,905,742,211,110662,45515,25983,1182,280,4.6,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,17.8,62,99700,1241,1329,399,940,818,177,116530,47916,22002,989,250,4.7,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,17.8,66,99600,1168,1329,394,829,693,220,100133,44103,26687,1267,270,5.6,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,17.8,62,99500,1029,1329,400,753,754,170,91039,45488,20587,981,280,5.2,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,17.8,62,99400,833,1329,400,587,695,152,69450,41692,18014,845,280,5.7,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.2,62,99400,594,1329,396,384,579,125,44120,32319,14440,649,250,4.3,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,16.8,63,99400,328,1329,392,163,305,87,18002,10628,9701,410,250,3.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,17.3,69,99400,66,914,386,28,153,20,3008,0,2192,85,250,4.0,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.8,76,99500,0,0,382,0,0,0,0,0,0,0,250,3.1,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.8,77,99500,0,0,381,0,0,0,0,0,0,0,260,3.1,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.7,81,99600,0,0,373,0,0,0,0,0,0,0,270,2.9,4,4,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,17.2,78,99600,0,0,370,0,0,0,0,0,0,0,270,1.3,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,17.2,75,99600,0,0,373,0,0,0,0,0,0,0,270,0.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.2,74,99600,0,0,371,0,0,0,0,0,0,0,270,0.0,2,2,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.2,78,99500,0,0,354,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.3,79,99500,0,0,354,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.8,81,99500,0,0,370,0,0,0,0,0,0,0,270,0.0,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.4,85,99600,0,0,377,0,0,0,0,0,0,0,270,2.5,5,5,14.3,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,18.9,87,99600,72,960,378,34,214,22,3691,0,2431,95,270,1.9,5,5,13.3,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,18.9,80,99700,338,1330,385,189,429,80,21035,13232,8924,376,270,0.0,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.7,18.9,70,99700,603,1330,396,392,588,126,45079,31910,14499,653,260,0.2,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,18.9,63,99700,841,1330,406,608,739,140,72276,42295,16783,784,260,1.7,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,18.9,65,99700,1034,1330,404,765,774,164,92697,45195,19923,947,250,3.1,5,5,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.8,18.9,62,99700,1171,1330,408,872,784,182,106750,46007,22355,1047,270,4.5,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.3,18.8,60,99700,1240,1330,410,897,728,218,109381,44646,26698,1220,260,4.2,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.7,18.3,57,99600,1239,1330,412,937,816,178,116081,47459,22113,997,270,5.1,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,18.4,61,99600,1166,1330,406,832,704,215,100623,44054,26117,1240,260,5.2,5,5,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,18.9,65,99600,1026,1330,403,714,660,205,84879,41587,24459,1183,260,6.0,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,18.9,67,99600,830,1330,401,544,572,187,63148,36389,21833,1041,250,4.6,5,5,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.3,18.9,68,99700,590,1330,399,360,495,141,40902,28160,16038,728,260,4.6,5,5,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.8,18.9,70,99700,324,1330,397,164,325,85,18119,10197,9399,397,260,4.5,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,18.9,77,99700,63,892,388,27,163,19,2899,0,2071,80,270,4.0,5,5,15.9,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,18.9,79,99700,0,0,409,0,0,0,0,0,0,0,280,3.5,9,9,14.7,7264,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,18.9,79,99800,0,0,400,0,0,0,0,0,0,0,270,3.1,8,8,16.1,4572,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,18.9,79,99800,0,0,386,0,0,0,0,0,0,0,250,3.0,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,18.8,81,99800,0,0,380,0,0,0,0,0,0,0,290,2.5,4,4,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,18.4,79,99800,0,0,377,0,0,0,0,0,0,0,240,2.1,3,3,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,18.8,81,99800,0,0,377,0,0,0,0,0,0,0,310,2.0,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,18.4,80,99700,0,0,376,0,0,0,0,0,0,0,310,1.6,3,3,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,19.3,87,99700,0,0,378,0,0,0,0,0,0,0,260,2.7,4,4,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,99700,0,0,371,0,0,0,0,0,0,0,300,3.6,3,3,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,99700,0,0,371,0,0,0,0,0,0,0,250,2.6,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,18.2,83,99700,70,945,372,36,281,21,3902,0,2289,89,260,2.5,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,17.8,73,99800,335,1330,380,207,563,65,23489,15196,7441,308,270,1.7,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,17.7,70,99800,601,1330,378,418,697,103,48782,35697,12093,536,250,3.1,2,2,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,16.8,62,99900,839,1330,371,754,1143,34,99678,51325,4466,188,260,3.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,17.2,60,99800,1032,1330,393,793,844,138,97391,48406,16982,796,250,3.6,3,3,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,17.1,59,99800,1169,1330,393,933,918,126,117512,50642,15903,725,270,4.7,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.2,16.8,56,99800,1239,1330,402,926,793,188,114366,48090,23290,1053,260,5.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,17.1,56,99700,1237,1330,404,922,787,190,113632,47681,23598,1070,260,5.8,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,16.2,56,99700,1163,1330,397,833,711,211,101034,45826,25752,1220,260,6.6,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.3,62,99600,1023,1330,396,715,668,201,85220,42987,24051,1160,260,6.3,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,18.3,66,99600,827,1330,397,557,617,173,65031,38532,20311,962,260,6.7,5,5,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,18.3,69,99600,587,1330,394,363,517,135,41358,29206,15485,700,260,5.6,5,5,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,18.2,71,99600,320,1330,391,163,331,83,17982,10301,9214,388,260,4.7,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,17.1,69,99600,59,869,383,28,166,20,3006,0,2212,86,250,5.6,4,4,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.8,72,99700,0,0,374,0,0,0,0,0,0,0,240,4.4,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.3,76,99700,0,0,373,0,0,0,0,0,0,0,250,3.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.9,79,99800,0,0,374,0,0,0,0,0,0,0,240,2.6,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,18.9,85,99800,0,0,374,0,0,0,0,0,0,0,280,2.5,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.9,87,99800,0,0,372,0,0,0,0,0,0,0,240,1.5,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,18.9,88,99800,0,0,371,0,0,0,0,0,0,0,260,1.6,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.9,90,99700,0,0,369,0,0,0,0,0,0,0,250,2.0,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.9,90,99700,0,0,369,0,0,0,0,0,0,0,270,1.6,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.9,90,99700,0,0,369,0,0,0,0,0,0,0,270,2.1,3,3,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.9,90,99700,0,0,369,0,0,0,0,0,0,0,250,1.5,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,18.9,89,99800,68,930,375,32,222,21,3491,0,2263,88,250,1.6,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,18.8,83,99800,332,1331,381,188,444,77,20963,13093,8615,361,260,2.1,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,18.3,73,99800,598,1331,389,383,565,129,43915,31358,14876,671,250,2.2,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,18.2,68,99900,837,1331,394,579,664,162,68166,40460,19125,902,260,2.6,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,17.8,62,99800,1031,1331,400,764,778,162,92714,46242,19690,935,250,2.6,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,16.8,57,99800,1167,1331,401,881,811,170,108598,48474,21038,981,270,4.3,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,17.8,62,99800,1237,1331,399,912,765,201,111867,46550,24751,1128,260,5.8,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,17.7,64,99700,1235,1331,396,880,702,229,106952,44654,27977,1289,280,6.6,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.3,65,99700,1161,1331,393,797,634,244,95484,42256,29423,1412,270,5.7,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,17.8,67,99700,1021,1331,393,714,672,199,85180,42815,23820,1148,240,5.6,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,17.8,69,99700,823,1331,391,564,645,164,66101,39869,19376,913,260,4.6,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.6,17.5,69,99700,583,1331,389,364,528,132,41478,29956,15147,682,250,4.1,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,17.3,69,99700,315,1331,386,160,332,82,17753,10346,9069,381,250,3.5,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,18.1,76,99700,56,846,384,25,166,18,2759,0,2000,78,260,3.3,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.2,79,99700,0,0,372,0,0,0,0,0,0,0,270,4.4,4,4,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.3,81,99700,0,0,367,0,0,0,0,0,0,0,280,3.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.8,84,99800,0,0,368,0,0,0,0,0,0,0,260,2.3,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.8,83,99800,0,0,368,0,0,0,0,0,0,0,340,0.4,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.8,82,99800,0,0,370,0,0,0,0,0,0,0,340,2.7,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.9,85,99700,0,0,368,0,0,0,0,0,0,0,250,0.2,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.3,87,99700,0,0,368,0,0,0,0,0,0,0,250,1.6,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,18.3,87,99700,0,0,368,0,0,0,0,0,0,0,260,2.1,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,18.3,90,99700,0,0,365,0,0,0,0,0,0,0,250,2.1,3,3,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,18.3,89,99800,0,0,372,0,0,0,0,0,0,0,270,1.3,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,18.4,87,99800,66,914,375,31,254,18,3400,0,2024,78,260,0.2,5,5,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,18.8,86,99800,330,1331,375,196,508,70,22009,13643,7879,328,260,2.0,4,4,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,18.2,75,99900,596,1331,380,411,684,105,47890,34852,12260,544,260,1.7,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,17.8,71,99900,835,1331,382,602,736,140,71569,42989,16776,782,270,3.7,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,17.8,69,99900,1029,1331,385,795,857,133,97846,48196,16387,767,260,4.1,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,17.8,66,99800,1165,1331,388,916,890,137,114572,49471,17218,792,260,4.3,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.8,64,99800,1235,1331,390,989,928,129,125383,50311,16369,724,270,5.6,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,17.7,64,99800,1232,1331,390,985,923,131,124638,50302,16597,736,260,5.3,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,17.3,65,99700,1158,1331,386,895,856,150,111130,49160,18706,867,270,7.1,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.7,71,99700,1018,1331,387,706,658,203,84049,42344,24304,1174,260,6.7,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.2,69,99700,820,1331,387,555,628,168,64997,39564,19814,935,260,6.7,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,17.2,71,99600,579,1331,378,383,621,114,44242,33063,13160,585,260,6.2,3,3,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.1,73,99600,311,1331,375,175,447,71,19602,12080,7954,330,260,5.7,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.7,74,99600,53,822,372,26,223,18,2883,0,1914,74,260,5.6,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.7,79,99600,0,0,369,0,0,0,0,0,0,0,260,4.9,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,16.7,81,99600,0,0,349,0,0,0,0,0,0,0,260,3.6,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.7,79,99700,0,0,366,0,0,0,0,0,0,0,210,3.7,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.8,82,99700,0,0,363,0,0,0,0,0,0,0,250,3.6,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,17.2,87,99800,0,0,362,0,0,0,0,0,0,0,250,0.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,17.2,84,99800,0,0,364,0,0,0,0,0,0,0,270,0.3,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.2,90,99800,0,0,359,0,0,0,0,0,0,0,270,2.7,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.2,90,99700,0,0,359,0,0,0,0,0,0,0,280,2.6,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.2,90,99700,0,0,359,0,0,0,0,0,0,0,270,2.6,3,3,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.3,90,99700,0,0,364,0,0,0,0,0,0,0,250,3.4,5,5,13.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,17.8,93,99800,64,899,366,30,122,24,3239,0,2623,104,240,2.1,5,5,9.8,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.8,87,99900,327,1332,385,151,244,91,16596,8503,10045,426,260,2.2,8,8,11.3,274,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.7,83,99900,594,1332,374,371,531,135,42388,30312,15454,698,260,2.7,5,5,11.3,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,17.2,78,100000,833,1332,390,466,349,248,52978,25701,28347,1379,260,3.7,8,8,11.5,6096,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.2,76,100000,1027,1332,378,725,689,194,86751,43866,23342,1123,270,4.6,5,5,12.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.7,73,100000,1164,1332,378,847,742,199,103137,46567,24317,1148,270,4.5,5,5,14.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,16.6,72,100000,1233,1332,378,901,748,208,110267,46963,25582,1172,260,4.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.1,68,99900,1230,1332,380,912,777,194,112253,48184,24045,1098,270,5.3,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.2,69,99900,1156,1332,379,856,774,184,104723,47883,22621,1064,260,7.0,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.7,74,99900,1015,1332,377,739,747,171,89189,46062,20679,985,260,5.6,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.7,76,99800,816,1332,375,562,657,160,66065,40897,18856,885,260,4.6,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.0,77,99800,575,1332,375,361,539,128,41181,30305,14704,660,260,4.3,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.1,78,99800,306,1332,375,162,375,76,17989,10610,8438,352,260,4.0,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.6,78,99800,50,798,372,24,187,17,2591,0,1824,71,260,3.8,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.7,77,99900,0,0,368,0,0,0,0,0,0,0,270,4.8,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,99900,0,0,366,0,0,0,0,0,0,0,260,2.7,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.0,81,99900,0,0,378,0,0,0,0,0,0,0,250,3.1,8,8,16.1,6096,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.1,78,99900,0,0,357,0,0,0,0,0,0,0,260,3.0,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.7,80,99900,0,0,365,0,0,0,0,0,0,0,250,2.1,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.8,87,99900,0,0,364,0,0,0,0,0,0,0,250,1.9,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.1,87,99800,0,0,367,0,0,0,0,0,0,0,250,0.0,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.7,85,99800,0,0,366,0,0,0,0,0,0,0,250,0.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,99800,0,0,364,0,0,0,0,0,0,0,250,2.1,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.2,90,99900,0,0,364,0,0,0,0,0,0,0,270,3.0,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,17.2,89,99900,62,884,365,29,78,25,3047,0,2671,106,250,1.9,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,17.2,86,100000,324,1332,390,130,156,92,14326,5577,10196,433,250,0.0,9,9,16.1,6812,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,17.1,72,100000,591,1332,397,325,364,164,36565,23025,18518,849,250,0.5,8,8,16.1,7620,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,16.6,62,100000,831,1332,391,605,757,134,72308,44432,16044,744,250,4.0,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.1,64,100000,1025,1332,385,763,786,158,92687,47719,19303,914,260,3.6,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,16.6,66,100000,1162,1332,401,714,450,322,83737,33708,37979,1859,250,3.8,8,8,16.1,7620,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,16.0,62,100000,1231,1332,388,864,674,241,104630,44792,29391,1363,260,5.2,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,15.6,62,100000,1228,1332,385,897,749,207,109896,47665,25443,1168,270,6.1,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,15.4,59,99900,1153,1332,410,671,372,349,78213,29389,40922,2019,260,5.3,9,9,16.1,7264,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,13.8,55,99900,1012,1332,405,573,348,309,66159,27800,35884,1784,270,6.9,9,9,16.1,4572,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,13.3,53,99900,813,1332,396,491,453,215,56517,33053,24851,1190,270,8.2,8,8,16.0,4572,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,13.3,52,99800,570,1332,388,353,519,131,40318,31065,14989,671,270,7.7,6,6,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,13.4,51,99800,302,1332,387,169,441,69,18914,12552,7751,320,270,6.8,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,14.0,57,99800,47,774,379,24,220,16,2587,0,1737,67,260,4.2,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.5,64,99800,0,0,369,0,0,0,0,0,0,0,260,4.7,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.1,66,99900,0,0,376,0,0,0,0,0,0,0,230,2.1,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.2,71,100000,0,0,374,0,0,0,0,0,0,0,210,2.2,4,4,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.7,76,100000,0,0,369,0,0,0,0,0,0,0,210,3.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.7,76,100100,0,0,369,0,0,0,0,0,0,0,260,1.9,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.8,76,100100,0,0,369,0,0,0,0,0,0,0,270,0.2,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.9,82,100000,0,0,376,0,0,0,0,0,0,0,270,2.2,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,18.3,85,99900,0,0,390,0,0,0,0,0,0,0,270,3.1,8,8,16.1,6096,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.3,87,99900,0,0,374,0,0,0,0,0,0,0,260,3.1,5,5,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,18.8,89,100000,0,0,397,0,0,0,0,0,0,0,310,0.2,9,9,16.1,4500,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,18.2,83,100000,60,869,399,19,94,15,2129,0,1663,63,310,1.5,9,9,16.1,3962,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,17.7,74,100100,322,1333,406,137,189,91,15035,6547,10065,427,350,1.5,9,9,16.1,3997,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.3,65,100100,589,1333,416,299,280,175,33402,18285,19685,907,230,1.6,9,9,16.1,4267,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.6,17.7,65,100100,828,1333,418,442,297,258,50115,22207,29356,1432,250,2.7,9,9,16.1,4480,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,17.2,58,100100,1023,1333,416,649,505,261,75776,35967,30625,1506,250,3.1,8,8,16.0,6096,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.2,16.5,55,100100,1160,1333,401,854,764,189,104249,47380,23224,1094,270,4.1,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.4,14.9,46,100100,1229,1333,406,944,846,164,117649,50959,20549,928,270,4.2,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.7,14.0,41,100000,1226,1333,412,950,864,155,118977,52062,19552,881,260,5.1,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,15.0,48,99900,1150,1333,401,877,832,160,108514,50369,19823,924,270,5.0,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.9,15.1,51,99900,1008,1333,392,741,763,164,89637,47619,19922,945,270,4.7,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,15.6,58,99900,809,1333,391,492,462,212,56531,32649,24445,1171,280,5.1,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,15.6,60,99900,566,1333,381,348,512,131,39703,29686,14979,672,260,4.0,3,3,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,15.5,62,99900,297,1333,378,154,360,74,17151,10162,8271,344,260,3.3,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.0,64,99900,44,749,372,21,180,15,2322,0,1672,64,270,4.8,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.1,67,99900,0,0,370,0,0,0,0,0,0,0,230,2.6,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.5,70,100000,0,0,368,0,0,0,0,0,0,0,260,2.8,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.5,64,100000,0,0,369,0,0,0,0,0,0,0,260,3.9,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.1,66,100000,0,0,370,0,0,0,0,0,0,0,310,2.6,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.2,71,100000,0,0,371,0,0,0,0,0,0,0,250,2.5,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.8,76,100000,0,0,375,0,0,0,0,0,0,0,330,1.9,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,17.9,79,100000,0,0,379,0,0,0,0,0,0,0,330,0.2,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.2,84,100000,0,0,377,0,0,0,0,0,0,0,330,1.3,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.8,81,100000,0,0,376,0,0,0,0,0,0,0,330,0.0,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,17.7,80,100100,0,0,377,0,0,0,0,0,0,0,30,0.2,5,5,10.4,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,17.0,71,100100,58,854,382,28,263,17,3103,0,1859,72,30,1.3,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.6,15.5,57,100100,319,1333,391,191,526,66,21612,14409,7423,306,120,0.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.3,15.0,50,100100,587,1333,400,400,669,106,46618,36105,12395,548,120,2.0,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.8,15.3,47,100100,826,1333,408,591,723,143,70209,44202,17062,794,130,1.8,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.8,17.8,55,100100,1021,1333,412,746,752,170,89960,45459,20606,982,270,4.1,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,17.8,57,100100,1158,1333,408,824,701,215,99501,44422,26156,1246,250,3.4,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.8,17.6,57,100100,1227,1333,406,845,640,256,101633,42474,31024,1452,260,5.7,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,16.3,52,100000,1223,1333,406,864,685,235,104656,45039,28616,1332,250,5.8,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,17.9,59,99900,1148,1333,405,819,705,211,98866,44480,25676,1225,270,6.7,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,18.9,65,99900,1005,1333,403,717,709,182,85743,43189,21925,1052,270,6.7,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,18.9,69,99800,805,1333,398,538,609,171,62662,37526,19967,943,270,6.7,5,5,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.7,19.2,71,99800,562,1333,397,343,503,131,38937,27351,14944,672,260,6.4,5,5,16.0,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,19.3,74,99800,292,1333,392,156,390,71,17297,8762,7860,327,260,6.1,4,4,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,18.7,76,99800,42,724,366,20,195,14,2182,0,1523,59,260,4.9,0,0,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.0,72,99800,0,0,371,0,0,0,0,0,0,0,260,3.6,2,2,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.8,67,99900,0,0,358,0,0,0,0,0,0,0,270,3.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.0,72,100000,0,0,359,0,0,0,0,0,0,0,260,2.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.7,67,100000,0,0,358,0,0,0,0,0,0,0,260,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.8,71,99900,0,0,359,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.1,73,99900,0,0,359,0,0,0,0,0,0,0,20,1.3,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.0,70,99900,0,0,356,0,0,0,0,0,0,0,20,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.7,69,99900,0,0,355,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,99900,0,0,353,0,0,0,0,0,0,0,90,1.5,0,0,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,15.9,69,99900,0,0,375,0,0,0,0,0,0,0,90,1.6,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,17.9,76,100000,56,839,373,30,728,0,6034,0,0,0,100,2.1,2,2,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.5,18.8,75,100000,316,1334,368,278,1138,8,36598,3877,1059,38,110,1.9,0,0,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.3,18.1,64,100000,584,1334,376,525,1152,20,68884,39470,2657,104,110,0.2,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.2,16.9,53,100000,824,1334,401,624,826,113,75337,45947,13731,629,260,1.8,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.2,18.3,58,100000,1019,1334,403,807,904,116,100078,48730,14397,668,260,4.1,3,3,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,18.2,58,100000,1156,1334,402,908,890,137,113317,49162,17180,793,260,4.3,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,17.7,58,99900,1225,1334,399,914,792,187,112587,47448,23176,1062,270,5.8,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.2,17.1,57,99900,1221,1334,396,917,804,182,113182,48233,22522,1032,280,6.3,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,16.8,53,99900,1145,1334,400,882,852,151,109269,49521,18771,874,270,6.6,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,17.2,58,99800,1002,1334,395,763,832,139,93253,48000,17013,799,270,6.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.2,62,99800,801,1334,390,585,761,128,69681,43624,15268,704,260,4.6,3,3,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,16.6,62,99800,557,1334,386,355,563,119,40581,30700,13724,611,270,6.0,3,3,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,16.2,62,99800,287,1334,382,156,407,68,17328,9792,7597,314,270,7.0,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,17.3,72,99800,39,699,374,18,203,12,1982,0,1335,51,270,4.8,2,2,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.7,81,99800,0,0,355,0,0,0,0,0,0,0,240,2.5,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,17.2,78,99800,0,0,355,0,0,0,0,0,0,0,230,2.1,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,17.3,76,99900,0,0,358,0,0,0,0,0,0,0,250,1.9,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,18.1,78,99900,0,0,361,0,0,0,0,0,0,0,10,0.2,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.8,71,100000,0,0,359,0,0,0,0,0,0,0,10,2.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.8,77,100000,0,0,360,0,0,0,0,0,0,0,10,2.7,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.7,78,100000,0,0,358,0,0,0,0,0,0,0,10,0.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.6,73,99900,0,0,371,0,0,0,0,0,0,0,80,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,99900,0,0,368,0,0,0,0,0,0,0,80,0.0,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.5,72,100000,0,0,372,0,0,0,0,0,0,0,80,1.5,3,3,15.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,19.4,86,100100,54,824,376,28,317,15,3067,0,1665,64,120,1.6,3,3,13.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,19.3,79,100100,314,1335,379,203,633,54,23134,11876,6154,251,100,2.2,2,2,13.9,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.2,18.7,67,100100,582,1335,376,523,1153,20,68563,38590,2649,104,100,2.6,0,0,10.4,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.9,17.3,56,100100,822,1335,383,740,1148,33,97676,50576,4353,183,260,2.5,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.3,17.8,53,100100,1017,1335,408,832,968,94,104822,50362,11908,544,260,2.3,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.7,17.7,55,100100,1154,1335,405,922,923,124,115906,50299,15659,718,260,4.2,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,18.0,58,100000,1222,1335,408,873,708,225,105982,44700,27491,1280,260,5.2,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,19.4,67,100000,1218,1335,401,857,678,238,103385,42647,28829,1352,260,6.2,4,4,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,19.3,71,99900,1142,1335,392,815,706,211,98196,43454,25554,1222,260,6.3,3,3,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,19.0,74,99900,998,1335,393,664,587,225,78071,38619,26619,1297,270,6.9,5,5,15.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,18.9,79,99900,797,1335,386,514,551,185,59408,35153,21445,1018,260,5.1,5,5,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,18.9,79,99900,553,1335,386,336,496,130,38042,26950,14818,665,270,4.8,5,5,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,18.8,79,99900,282,1335,386,146,356,70,16111,7759,7807,324,270,4.5,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.5,18.5,83,99900,36,673,382,16,178,11,1725,0,1196,45,250,4.1,6,6,15.7,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,18.8,89,99900,0,0,389,0,0,0,0,0,0,0,260,3.0,8,8,14.5,213,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.3,87,100000,0,0,368,0,0,0,0,0,0,0,250,1.5,3,3,15.9,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,18.3,86,100000,0,0,365,0,0,0,0,0,0,0,230,1.6,2,2,14.7,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,18.3,81,100100,0,0,358,0,0,0,0,0,0,0,360,2.0,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,18.3,81,100100,0,0,358,0,0,0,0,0,0,0,110,1.7,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,18.3,81,100000,0,0,358,0,0,0,0,0,0,0,90,3.0,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,18.4,82,100000,0,0,358,0,0,0,0,0,0,0,120,1.9,0,0,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.8,87,100000,0,0,372,0,0,0,0,0,0,0,240,0.0,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,100000,0,0,377,0,0,0,0,0,0,0,240,1.5,5,5,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.8,87,100000,0,0,377,0,0,0,0,0,0,0,90,0.2,5,5,15.5,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,18.4,84,100000,52,809,377,24,222,16,2660,0,1716,66,90,2.1,5,5,11.3,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,18.8,81,100100,311,1335,383,175,445,71,19492,11226,7960,331,90,2.2,5,5,11.5,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.5,17.9,71,100100,580,1335,389,365,546,128,41711,30263,14719,661,130,2.5,5,5,13.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,18.4,66,100100,820,1335,398,566,662,159,66431,40048,18787,883,240,1.7,5,5,14.7,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,18.9,65,100200,1015,1335,404,756,789,156,91586,45599,18984,900,240,3.1,5,5,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,18.8,66,100100,1152,1335,401,858,789,178,104979,46317,21834,1029,260,3.8,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,17.8,62,100100,1220,1335,399,881,729,215,107274,45531,26353,1224,280,5.7,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,17.9,64,100000,1216,1335,397,856,681,236,103437,43851,28656,1344,250,5.7,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,18.3,64,100000,1139,1335,400,822,729,201,99509,44952,24408,1163,240,5.6,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,18.3,69,100000,995,1335,393,700,684,190,83302,42786,22707,1092,260,5.3,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,18.3,74,100000,793,1335,388,539,637,160,62913,38793,18817,883,260,6.7,5,5,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,18.1,73,100000,548,1335,395,294,344,153,32895,20576,17191,780,260,6.2,7,7,16.1,366,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,18.3,77,99900,277,1335,407,100,114,76,10958,2749,8390,350,260,5.1,9,9,15.7,358,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,99900,33,647,410,8,57,7,959,0,797,29,260,5.0,10,10,12.9,305,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,18.0,83,99900,0,0,398,0,0,0,0,0,0,0,280,3.6,9,9,12.9,244,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,18.2,86,100000,0,0,382,0,0,0,0,0,0,0,290,2.9,7,7,16.1,244,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.9,84,100000,0,0,396,0,0,0,0,0,0,0,280,2.6,9,9,16.1,2736,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.8,83,100000,0,0,396,0,0,0,0,0,0,0,310,3.1,9,9,16.1,366,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.8,83,100000,0,0,388,0,0,0,0,0,0,0,330,2.6,8,8,16.1,366,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.8,83,100100,0,0,374,0,0,0,0,0,0,0,320,1.5,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.8,81,100100,0,0,398,0,0,0,0,0,0,0,90,1.3,9,9,16.1,427,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,18.0,83,100000,0,0,376,0,0,0,0,0,0,0,80,0.0,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.8,81,100000,0,0,376,0,0,0,0,0,0,0,80,1.5,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.8,81,100100,0,0,390,0,0,0,0,0,0,0,100,1.6,8,8,16.1,6096,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,17.8,81,100100,50,793,377,23,218,15,2563,0,1671,64,110,2.5,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,17.7,75,100100,308,1336,382,172,436,71,19169,11392,7968,331,80,1.5,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,17.3,69,100100,577,1336,387,360,533,130,41115,30045,14916,670,130,1.7,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.8,67,100100,818,1336,393,555,633,167,64903,39414,19647,926,260,3.7,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.8,67,100200,1013,1336,393,719,700,188,85967,43847,22571,1084,260,4.6,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,17.8,66,100200,1149,1336,394,829,726,204,100342,45299,24861,1183,210,3.3,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,17.9,65,100100,1218,1336,396,882,734,213,107406,45640,26050,1212,250,5.2,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,18.2,71,100100,1213,1336,394,832,632,258,99745,41824,31082,1470,240,5.7,6,6,15.4,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,18.2,70,100100,1136,1336,391,812,710,208,97962,44458,25241,1207,280,6.3,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,17.7,69,100000,991,1336,390,703,699,184,83848,43708,22082,1059,270,6.7,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.2,71,100000,789,1336,384,549,680,148,64616,40984,17437,812,270,6.7,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.2,71,100000,543,1336,384,343,556,117,39220,29571,13451,597,270,6.4,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,17.2,72,100000,272,1336,383,141,367,67,15678,7615,7428,306,270,6.1,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.5,82,100000,31,621,374,12,183,8,1354,0,880,33,260,5.5,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.2,87,100000,0,0,400,0,0,0,0,0,0,0,260,5.0,10,10,16.1,236,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.2,87,100100,0,0,400,0,0,0,0,0,0,0,270,4.0,10,10,16.1,190,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,17.1,88,100200,0,0,398,0,0,0,0,0,0,0,270,3.3,10,10,16.1,270,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.1,83,100200,0,0,392,0,0,0,0,0,0,0,280,2.6,9,9,16.1,295,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.2,87,100200,0,0,400,0,0,0,0,0,0,0,340,2.2,10,10,16.1,270,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.3,88,100100,0,0,400,0,0,0,0,0,0,0,310,2.5,10,10,15.9,244,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.8,90,100100,0,0,400,0,0,0,0,0,0,0,280,2.1,10,10,14.3,244,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,17.8,91,100100,0,0,381,0,0,0,0,0,0,0,260,2.0,8,8,11.6,232,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.8,90,100100,0,0,347,0,0,0,0,0,0,0,280,2.1,0,0,3.2,240,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,17.8,90,100100,0,0,401,0,0,0,0,0,0,0,330,1.5,10,10,5.0,190,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.8,87,100200,48,779,404,14,55,12,1530,0,1311,49,270,1.6,10,10,6.7,254,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.9,87,100200,305,1336,404,110,110,85,12071,3358,9357,394,270,2.7,10,10,8.0,305,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.3,87,100200,575,1336,408,238,135,180,26379,8803,20030,924,250,3.0,10,10,8.0,305,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,18.3,86,100300,816,1336,408,353,132,272,39683,10111,30797,1508,270,2.7,10,10,8.0,305,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,100200,1011,1336,410,499,205,344,56885,16368,39471,1986,260,3.1,10,10,8.0,312,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,18.2,80,100200,1147,1336,403,670,379,345,77899,28846,40333,1998,240,4.3,9,9,9.7,366,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,17.8,76,100200,1215,1336,405,739,432,346,86641,32332,40822,1971,280,5.7,9,9,9.8,366,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,17.7,73,100100,1210,1336,407,751,463,331,88321,34150,39191,1891,270,5.9,9,9,11.8,366,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.3,74,100100,1133,1336,403,671,400,332,78130,30438,38943,1929,270,7.5,9,9,16.1,358,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.5,17.9,80,100000,987,1336,401,565,364,296,64966,27458,34266,1704,270,6.2,9,9,16.1,287,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.8,81,100000,785,1336,410,385,223,254,43352,16804,28755,1396,270,5.7,10,10,16.0,244,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,17.5,81,100000,539,1336,408,236,172,166,26132,10880,18525,845,270,6.0,10,10,16.0,244,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.2,81,100000,267,1336,406,89,91,71,9842,1999,7876,326,270,6.1,10,10,16.1,244,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,17.2,84,100000,28,594,402,8,45,7,886,0,779,29,260,4.9,10,10,16.1,244,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.2,87,100000,0,0,400,0,0,0,0,0,0,0,240,3.2,10,10,16.1,244,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,17.2,88,100100,0,0,399,0,0,0,0,0,0,0,280,4.0,10,10,16.1,258,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.1,87,100100,0,0,399,0,0,0,0,0,0,0,300,3.5,10,10,16.1,305,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,16.8,86,100100,0,0,398,0,0,0,0,0,0,0,310,3.3,10,10,16.1,292,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.7,85,100100,0,0,398,0,0,0,0,0,0,0,310,2.6,10,10,16.1,274,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.8,87,100100,0,0,397,0,0,0,0,0,0,0,330,2.5,10,10,15.7,274,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,17.2,87,100100,0,0,400,0,0,0,0,0,0,0,10,1.6,10,10,12.9,274,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.2,84,100100,0,0,403,0,0,0,0,0,0,0,300,1.9,10,10,12.7,274,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.2,84,100100,0,0,403,0,0,0,0,0,0,0,310,0.0,10,10,11.0,274,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,17.2,88,100100,0,0,399,0,0,0,0,0,0,0,310,1.6,10,10,9.7,277,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.2,84,100100,47,764,403,12,46,11,1402,0,1223,46,240,2.5,10,10,9.7,312,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.2,83,100200,303,1337,403,104,93,83,11411,2811,9132,384,240,1.9,10,10,9.7,373,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.2,81,100200,572,1337,406,234,129,179,25949,8504,19927,917,260,0.0,10,10,9.7,434,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.2,80,100200,813,1337,407,348,126,271,39179,9807,30702,1501,260,1.9,10,10,9.7,495,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.2,76,100200,1009,1337,412,500,209,343,57052,16882,39347,1977,280,0.0,10,10,9.0,549,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.1,68,100100,1145,1337,384,897,886,138,111841,50145,17253,799,230,3.3,4,4,11.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.7,66,100100,1213,1337,380,994,976,109,127243,52364,13972,621,270,5.2,3,3,12.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.7,66,100100,1207,1337,377,1002,999,99,128912,52735,12850,569,270,5.8,2,2,13.3,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,16.7,67,100000,1129,1337,364,1016,1151,44,137126,54728,5911,254,270,6.7,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,16.7,69,100000,984,1337,377,756,851,130,92629,48806,15966,745,280,6.7,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.7,71,99900,780,1337,380,543,679,146,63802,41140,17259,802,260,6.7,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,16.7,72,99900,534,1337,379,336,554,115,38394,29349,13208,584,250,6.4,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.5,16.8,75,99900,261,1337,377,137,377,63,15172,6867,7027,288,250,6.0,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.2,81,99900,26,567,394,8,188,4,948,0,524,19,260,5.2,9,9,16.1,358,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,17.2,84,99900,0,0,391,0,0,0,0,0,0,0,270,5.5,9,9,16.1,305,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.1,87,100000,0,0,399,0,0,0,0,0,0,0,280,4.1,10,10,16.1,312,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.6,84,100000,0,0,399,0,0,0,0,0,0,0,280,4.1,10,10,16.1,366,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100000,0,0,398,0,0,0,0,0,0,0,270,4.0,10,10,16.1,366,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.1,82,100000,0,0,398,0,0,0,0,0,0,0,270,3.5,10,10,16.1,366,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.1,84,100000,0,0,395,0,0,0,0,0,0,0,280,2.3,10,10,16.1,366,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.1,84,100000,0,0,395,0,0,0,0,0,0,0,320,0.2,10,10,16.1,366,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.1,83,99900,0,0,396,0,0,0,0,0,0,0,320,1.9,10,10,16.1,366,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,99900,0,0,398,0,0,0,0,0,0,0,320,0.0,10,10,16.0,373,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100000,0,0,398,0,0,0,0,0,0,0,270,0.3,10,10,16.1,427,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100000,45,749,398,12,43,11,1388,0,1228,46,270,2.5,10,10,16.1,423,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,16.1,82,100000,300,1337,397,101,87,81,11097,2653,8980,376,250,2.1,10,10,16.1,424,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100100,570,1337,398,219,103,175,24405,6851,19616,901,250,2.5,10,10,16.1,484,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,16.1,81,100100,811,1337,399,336,110,269,37828,8624,30487,1488,230,1.7,10,10,15.7,443,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.1,78,100100,1007,1337,401,491,195,344,55996,16043,39483,1982,240,3.6,10,10,16.0,396,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.1,75,100100,1143,1337,394,665,375,345,77384,29353,40389,2000,250,3.6,9,9,16.1,449,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,15.7,66,100000,1210,1337,374,994,980,107,127414,53332,13744,611,260,4.2,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,16.0,66,100000,1205,1337,382,948,897,140,119045,51428,17684,803,260,5.3,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.6,66,99900,1126,1337,376,886,897,132,110727,51545,16496,763,270,6.6,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.6,67,99900,980,1337,373,759,867,124,93325,50009,15299,711,270,5.8,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,99900,776,1337,377,540,681,145,63532,41805,17079,792,260,6.2,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,15.6,70,99900,529,1337,378,322,507,122,36626,28044,13886,616,260,5.9,6,6,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.6,71,99900,256,1337,381,117,257,68,12933,5360,7543,311,260,5.6,7,7,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.6,76,99900,23,540,389,7,129,5,844,0,585,21,250,4.5,9,9,16.1,449,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.1,82,99900,0,0,387,0,0,0,0,0,0,0,280,3.7,9,9,16.1,396,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.0,83,100000,0,0,384,0,0,0,0,0,0,0,270,4.6,9,9,16.1,396,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.6,82,100000,0,0,383,0,0,0,0,0,0,0,280,4.5,9,9,16.1,396,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.5,84,100000,0,0,381,0,0,0,0,0,0,0,270,3.6,9,9,16.1,396,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.0,81,100000,0,0,380,0,0,0,0,0,0,0,270,3.5,9,9,16.1,396,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.0,81,100000,0,0,380,0,0,0,0,0,0,0,290,2.5,9,9,16.1,403,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.9,81,100000,0,0,391,0,0,0,0,0,0,0,340,2.0,10,10,16.1,457,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,100000,0,0,390,0,0,0,0,0,0,0,270,1.5,10,10,16.1,464,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,100100,0,0,390,0,0,0,0,0,0,0,260,1.5,10,10,16.0,525,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100100,0,0,379,0,0,0,0,0,0,0,230,0.2,9,9,16.1,579,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.9,76,100200,43,734,364,17,174,11,1867,0,1244,47,230,1.8,7,7,16.1,579,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,14.0,73,100200,297,1338,364,152,348,75,16913,10330,8371,348,280,1.1,6,6,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.9,68,100300,567,1338,357,384,659,104,44558,35582,12157,535,160,1.6,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,14.0,64,100300,809,1338,351,727,1149,33,96008,53673,4320,181,220,2.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.4,63,100300,1004,1338,354,903,1149,41,120744,56349,5428,233,270,3.6,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.5,64,100300,1140,1338,354,1026,1152,44,138837,57038,5934,254,260,4.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,14.9,65,100300,1208,1338,355,1086,1153,45,147739,56805,6181,260,280,5.2,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,14.5,60,100200,1202,1338,359,1081,1154,45,147058,57192,6140,258,270,5.8,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,15.0,61,100200,1123,1338,360,1010,1152,43,136392,56507,5883,252,260,6.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,15.0,62,100100,976,1338,360,878,1150,39,117185,55524,5236,225,260,7.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100100,772,1338,355,694,1150,31,91491,51743,4036,167,260,6.7,0,0,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,15.3,68,100100,524,1338,354,468,1151,18,61426,37663,2311,89,260,6.4,0,0,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.6,71,100100,250,1338,352,194,944,18,23745,0,2161,80,260,6.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.6,76,100000,21,513,358,7,449,0,1354,0,0,0,270,5.6,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.7,79,100000,0,0,345,0,0,0,0,0,0,0,280,5.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.1,82,100100,0,0,345,0,0,0,0,0,0,0,260,4.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.1,84,100100,0,0,343,0,0,0,0,0,0,0,260,3.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.2,85,100200,0,0,342,0,0,0,0,0,0,0,260,2.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.6,90,100200,0,0,340,0,0,0,0,0,0,0,240,1.9,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.1,87,100200,0,0,340,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.1,88,100200,0,0,339,0,0,0,0,0,0,0,270,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100200,0,0,338,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100200,0,0,338,0,0,0,0,0,0,0,270,0.0,0,0,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.7,90,100200,0,0,335,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,16.1,89,100300,41,719,353,19,290,10,2133,0,1130,42,330,0.2,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,16.1,80,100300,294,1339,361,182,580,55,20712,11517,6258,254,330,1.3,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,16.0,72,100300,565,1339,366,409,775,82,48296,36948,9737,421,260,0.3,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,15.6,64,100400,806,1339,361,725,1150,32,95649,52099,4287,179,260,2.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,15.6,64,100300,1002,1339,361,902,1152,40,120589,55222,5350,230,270,4.1,0,0,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,15.4,59,100300,1138,1339,366,1024,1153,44,138432,56197,5930,254,270,4.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,13.9,50,100300,1205,1339,370,1084,1154,45,147511,57783,6177,260,270,5.6,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,13.7,50,100300,1199,1339,369,1079,1155,45,146850,57975,6108,257,260,5.3,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,12.3,45,100200,1119,1339,368,1007,1153,43,136144,58925,5883,252,270,6.8,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,13.2,48,100100,972,1339,369,874,1150,39,116650,57152,5274,226,280,7.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,12.8,47,100100,767,1339,368,690,1151,30,91057,53617,4014,166,260,6.2,0,0,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.1,13.6,52,100000,519,1339,365,466,1161,16,61450,38832,2159,83,270,6.5,0,0,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,14.6,58,100000,245,1339,362,188,927,18,22870,0,2232,83,270,6.5,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.2,69,100000,19,486,358,6,430,0,1157,0,0,0,250,4.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.1,78,100100,0,0,354,0,0,0,0,0,0,0,250,2.8,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.6,78,100100,0,0,351,0,0,0,0,0,0,0,260,4.4,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.5,72,100100,0,0,351,0,0,0,0,0,0,0,250,2.9,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.0,68,100100,0,0,352,0,0,0,0,0,0,0,230,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.1,69,100100,0,0,351,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.1,76,100100,0,0,350,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.3,79,100100,0,0,348,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.8,87,100100,0,0,350,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.8,87,100000,0,0,350,0,0,0,0,0,0,0,270,1.5,0,0,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.9,88,100100,0,0,365,0,0,0,0,0,0,0,140,1.3,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,18.3,89,100100,40,704,372,18,267,10,2012,0,1130,42,140,0.0,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,18.2,79,100100,291,1339,378,175,534,58,19670,10013,6605,270,260,0.2,4,4,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,17.9,69,100200,562,1339,385,399,740,88,46736,34757,10355,451,260,2.2,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,18.2,68,100200,804,1339,394,561,686,149,66048,40789,17659,825,260,2.8,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.2,62,100100,1000,1339,396,724,739,172,86927,45514,20726,988,260,4.1,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,16.6,61,100100,1135,1339,392,805,696,214,96948,45171,25962,1244,270,5.8,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,15.3,53,100100,1202,1339,397,882,761,199,107937,48388,24447,1140,280,6.7,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,13.6,48,100000,1195,1339,394,874,755,200,106936,49215,24637,1152,260,6.6,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,16.2,60,100000,1115,1339,388,833,795,170,101850,48550,20942,990,260,6.1,4,4,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,16.8,63,99900,968,1339,386,726,808,142,88124,47557,17347,815,270,5.7,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.8,67,99900,762,1339,387,565,796,112,67527,43312,13421,610,260,5.7,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.1,17.8,68,99900,513,1339,386,359,723,82,41864,31727,9563,411,240,4.9,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,17.4,67,99800,239,1339,384,139,511,48,15671,3902,5430,218,240,4.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,14.5,56,99800,17,458,386,5,404,0,963,0,0,0,260,3.5,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,15.1,62,99800,0,0,378,0,0,0,0,0,0,0,240,3.1,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.9,68,99800,0,0,374,0,0,0,0,0,0,0,260,3.3,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.9,77,99800,0,0,382,0,0,0,0,0,0,0,270,4.3,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,18.3,78,99800,0,0,406,0,0,0,0,0,0,0,150,1.9,9,9,16.1,4572,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,18.2,75,99800,0,0,409,0,0,0,0,0,0,0,150,0.0,9,9,16.1,4572,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,17.9,70,99700,0,0,413,0,0,0,0,0,0,0,160,0.2,9,9,16.1,4572,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,18.2,73,99700,0,0,410,0,0,0,0,0,0,0,160,1.5,9,9,16.1,4572,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.3,71,99700,0,0,398,0,0,0,0,0,0,0,280,1.6,8,8,16.1,4572,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.8,73,99700,0,0,385,0,0,0,0,0,0,0,40,2.1,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.4,77,99700,0,0,379,0,0,0,0,0,0,0,120,2.7,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,18.9,84,99800,38,689,381,17,200,11,1848,0,1222,46,110,3.0,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,19.0,78,99800,288,1340,387,155,400,69,17206,8644,7679,318,130,2.5,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.6,19.3,72,99900,560,1340,396,356,567,120,40687,29360,13714,612,150,1.7,5,5,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.2,18.9,64,99900,802,1340,404,561,690,148,65950,40358,17488,816,150,3.4,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.9,18.8,61,99900,997,1340,408,737,777,158,88893,45366,19165,910,170,2.2,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.4,17.9,53,99900,1133,1340,415,875,861,147,108262,48921,18308,855,190,3.1,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.9,18.7,54,99800,1199,1340,419,914,834,167,112905,47772,20747,960,270,3.3,5,5,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.8,17.1,49,99800,1192,1340,416,906,829,168,111957,49019,20868,967,270,5.2,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.6,16.9,52,99700,1112,1340,409,778,674,219,93284,44111,26367,1271,270,5.6,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,18.4,63,99700,963,1340,403,638,585,218,74806,38741,25686,1247,260,4.6,5,5,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,19.4,71,99600,757,1340,398,480,530,180,55091,33360,20756,979,270,4.6,5,5,16.0,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,19.1,70,99600,508,1340,398,305,490,119,34416,24802,13499,598,240,4.1,5,5,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,19.0,70,99600,233,1340,397,122,385,55,13534,3203,6127,249,240,3.5,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,19.3,75,99700,15,430,390,4,359,0,644,0,4,0,260,2.7,4,4,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,18.4,72,99700,0,0,381,0,0,0,0,0,0,0,270,2.7,2,2,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,18.8,76,99800,0,0,367,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,18.3,74,99800,0,0,366,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,18.4,74,99800,0,0,379,0,0,0,0,0,0,0,180,1.3,2,2,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,19.5,80,99800,0,0,367,0,0,0,0,0,0,0,180,0.0,0,0,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,19.9,84,99700,0,0,365,0,0,0,0,0,0,0,90,0.0,0,0,16.1,77777,9,999999999,370,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,19.4,85,99700,0,0,362,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,19.4,87,99600,0,0,360,0,0,0,0,0,0,0,90,2.2,0,0,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,19.4,87,99600,0,0,360,0,0,0,0,0,0,0,90,3.1,0,0,16.0,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,19.3,86,99700,0,0,376,0,0,0,0,0,0,0,150,1.6,3,3,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,19.9,92,99700,36,674,379,16,207,10,1773,0,1152,44,260,2.3,5,5,6.8,77777,9,999999999,370,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,19.4,84,99800,286,1341,384,155,414,67,17241,8310,7479,309,260,0.2,5,5,9.7,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.5,19.4,78,99800,557,1341,390,340,507,130,38578,27219,14776,663,270,1.3,5,5,9.8,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,19.4,71,99800,799,1341,399,546,651,159,63850,38678,18618,874,270,0.4,5,5,11.5,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,19.4,67,99900,995,1341,404,737,782,156,88901,44977,18922,898,270,3.1,5,5,12.0,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,19.4,69,99900,1130,1341,402,840,787,177,102407,45832,21636,1026,250,4.2,5,5,14.5,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,19.3,68,99800,1197,1341,402,867,738,208,105323,44745,25433,1198,270,5.1,5,5,14.7,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,18.2,62,99700,1189,1341,403,859,733,209,104318,45452,25545,1206,260,5.2,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,17.7,60,99700,1108,1341,402,811,757,185,98315,46335,22536,1074,260,6.0,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,17.2,60,99700,959,1341,399,695,742,164,83254,45329,19711,936,270,4.5,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,17.2,60,99800,753,1341,399,528,700,135,62133,40961,15972,735,270,4.1,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.2,62,99800,503,1341,396,319,571,105,36398,28108,12009,525,280,4.4,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.2,17.2,65,99800,228,1341,389,124,431,51,13816,3108,5685,229,280,4.7,4,4,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,17.3,72,99700,13,402,378,3,295,0,439,0,20,1,260,4.9,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,17.7,78,99700,0,0,369,0,0,0,0,0,0,0,260,3.5,2,2,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,17.1,77,99800,0,0,355,0,0,0,0,0,0,0,260,3.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.8,74,99800,0,0,356,0,0,0,0,0,0,0,240,2.6,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.8,84,99800,0,0,353,0,0,0,0,0,0,0,240,2.5,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.7,84,99800,0,0,352,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.2,83,99800,0,0,350,0,0,0,0,0,0,0,260,1.3,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.3,82,99800,0,0,352,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.7,86,99800,0,0,350,0,0,0,0,0,0,0,240,1.3,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.2,81,99800,0,0,367,0,0,0,0,0,0,0,240,0.0,3,3,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,17.7,86,99900,0,0,366,0,0,0,0,0,0,0,250,0.0,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.9,84,99900,35,659,374,15,211,10,1674,0,1063,40,250,0.2,5,5,15.5,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,18.3,84,100000,283,1341,377,155,422,66,17206,8600,7333,302,250,1.6,5,5,11.6,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.4,18.2,77,100000,554,1341,383,346,539,123,39396,28892,14109,630,250,2.3,5,5,14.7,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,17.6,67,100100,797,1341,391,538,631,163,62825,39191,19151,899,260,3.5,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,16.1,58,100100,992,1341,394,730,772,159,88205,47287,19340,916,240,3.1,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,16.6,60,100100,1128,1341,395,845,803,170,103459,48556,20898,986,240,3.8,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,16.1,58,100100,1194,1341,394,870,750,203,106113,47526,24853,1166,260,5.1,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,16.0,58,100100,1186,1341,394,852,723,213,103420,46678,25991,1228,250,5.2,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,15.5,59,100000,1104,1341,388,774,677,216,92804,45075,26086,1256,270,6.3,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,14.9,56,100000,955,1341,389,683,719,171,81637,46065,20489,974,270,6.8,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,14.4,55,100000,748,1341,386,516,671,142,60502,41585,16677,768,260,4.1,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,15.0,61,99900,497,1341,383,317,579,102,36254,29195,11719,510,270,5.2,5,5,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.5,66,99900,222,1341,376,118,408,51,13159,3172,5669,228,270,6.1,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,14.6,67,99900,11,374,363,2,194,0,275,0,50,2,260,5.1,2,2,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.1,76,100000,0,0,350,0,0,0,0,0,0,0,270,5.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,15.9,77,100000,0,0,348,0,0,0,0,0,0,0,250,4.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.5,68,100000,0,0,370,0,0,0,0,0,0,0,180,0.3,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.0,70,100000,0,0,368,0,0,0,0,0,0,0,180,2.5,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.1,69,100000,0,0,367,0,0,0,0,0,0,0,200,1.3,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.2,76,100000,0,0,365,0,0,0,0,0,0,0,200,0.0,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.6,84,100000,0,0,361,0,0,0,0,0,0,0,200,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100100,0,0,360,0,0,0,0,0,0,0,200,0.0,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100000,0,0,360,0,0,0,0,0,0,0,250,0.0,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.2,87,100100,0,0,352,0,0,0,0,0,0,0,250,0.0,2,2,15.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,16.8,87,100100,33,645,344,14,566,0,2735,0,0,0,250,0.0,0,0,12.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.0,79,100200,280,1342,352,225,1001,16,27918,1447,2018,75,250,0.2,0,0,11.8,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,15.7,68,100200,552,1342,357,496,1162,18,65216,39730,2407,93,250,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.5,16.1,63,100200,794,1342,365,714,1152,32,94089,51348,4200,175,270,2.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,16.1,58,100200,990,1342,372,890,1152,40,118670,54686,5363,231,260,2.8,0,0,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,16.0,59,100200,1125,1342,369,1012,1155,44,136494,55659,5913,254,260,4.8,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,15.5,58,100200,1191,1342,369,1071,1156,45,145323,56362,6143,260,260,6.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,14.4,54,100200,1182,1342,367,1064,1157,45,144427,57431,6086,258,260,6.3,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,14.4,57,100100,1100,1342,362,990,1155,43,133389,57152,5823,251,270,6.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,14.4,58,100100,950,1342,377,700,775,151,84468,48183,18323,863,260,7.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,14.4,59,100100,743,1342,375,521,702,133,61420,42557,15698,719,270,7.2,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,13.8,58,100100,492,1342,364,323,625,94,37145,30725,10812,467,260,6.1,1,1,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,13.4,58,100100,216,1342,355,154,809,23,18165,0,2761,104,260,5.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.9,64,100100,10,346,350,2,272,0,311,0,7,0,270,4.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,14.2,67,100100,0,0,360,0,0,0,0,0,0,0,260,3.9,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.7,82,100100,0,0,348,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100200,0,0,346,0,0,0,0,0,0,0,280,1.9,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.6,84,100100,0,0,346,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.0,81,100100,0,0,345,0,0,0,0,0,0,0,240,1.9,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.6,79,100100,0,0,344,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.6,85,100000,0,0,339,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.6,86,100000,0,0,337,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100000,0,0,339,0,0,0,0,0,0,0,240,0.0,0,0,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.9,83,100100,0,0,336,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,14.7,81,100100,32,630,352,13,235,7,1478,0,844,31,270,0.0,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,16.6,83,100200,277,1343,361,157,470,61,17627,9040,6794,278,270,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,15.9,71,100200,549,1343,370,373,671,99,43269,33946,11473,502,270,0.2,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,14.5,56,100200,792,1343,381,590,806,115,70881,46692,13864,632,270,1.7,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,15.0,58,100200,987,1343,381,733,788,153,88778,48550,18641,880,260,3.6,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,15.0,56,100200,1122,1343,384,849,821,162,104334,50273,20040,942,250,4.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,14.9,55,100200,1188,1343,384,887,797,182,109011,49812,22501,1050,240,4.3,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,14.0,53,100100,1179,1343,382,898,836,164,111207,51514,20426,948,270,5.7,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,15.0,60,100100,1096,1343,378,816,791,170,99594,49286,20871,988,270,5.6,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,15.1,62,100000,946,1343,379,665,690,179,79105,44845,21396,1020,270,5.3,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,16.0,65,100000,738,1343,378,523,719,128,61627,42016,15109,691,270,6.7,3,3,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,15.2,64,100000,486,1343,373,305,561,103,34836,27955,11734,511,270,6.7,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,14.5,64,100000,210,1343,369,105,339,51,11571,2367,5711,230,270,6.5,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.6,74,100000,8,318,365,1,102,0,136,0,51,2,260,5.2,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.6,79,100000,0,0,362,0,0,0,0,0,0,0,270,5.6,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,15.5,80,100100,0,0,354,0,0,0,0,0,0,0,250,4.9,2,2,15.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.1,77,100100,0,0,343,0,0,0,0,0,0,0,250,3.6,0,0,14.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.7,82,100100,0,0,342,0,0,0,0,0,0,0,270,3.4,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.1,86,100200,0,0,355,0,0,0,0,0,0,0,250,2.1,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.1,84,100100,0,0,357,0,0,0,0,0,0,0,270,2.0,3,3,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.1,88,100100,0,0,354,0,0,0,0,0,0,0,310,1.5,3,3,14.3,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100100,0,0,352,0,0,0,0,0,0,0,340,1.3,3,3,13.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100100,0,0,352,0,0,0,0,0,0,0,340,0.0,3,3,14.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.7,93,100100,0,0,358,0,0,0,0,0,0,0,250,0.0,5,5,14.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.8,93,100200,30,615,359,12,193,8,1356,0,862,32,250,0.2,5,5,14.3,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,17.2,88,100200,274,1343,366,145,387,66,16084,7945,7357,303,250,1.5,5,5,13.3,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.2,78,100200,546,1343,375,345,559,118,39408,29799,13520,600,260,1.6,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,17.2,77,100300,789,1343,377,518,586,174,60098,37546,20273,955,260,2.8,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.2,69,100300,985,1343,387,686,672,193,81420,43185,23069,1110,280,4.1,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.6,71,100300,1120,1343,380,755,608,248,89703,41738,29604,1438,270,4.6,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,16.0,68,100300,1185,1343,380,847,714,217,102565,46408,26472,1254,260,4.7,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,15.6,62,100200,1175,1343,384,833,697,223,100594,46048,27043,1286,280,5.9,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,15.7,65,100200,1092,1343,382,809,783,173,98531,48546,21128,1002,270,7.0,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,16.1,70,100200,941,1343,378,666,702,174,79256,44621,20794,990,260,5.8,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.1,68,100200,732,1343,380,490,623,150,57009,38580,17563,812,270,6.2,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,16.4,73,100100,480,1343,376,277,443,118,31123,23178,13366,588,260,6.2,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.6,78,100100,204,1343,369,98,305,51,10762,1242,5678,229,260,5.8,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.2,79,100100,7,290,363,1,177,0,147,0,16,0,240,3.2,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100200,0,0,361,0,0,0,0,0,0,0,260,3.7,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.6,84,100200,0,0,360,0,0,0,0,0,0,0,260,3.9,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.2,84,100300,0,0,354,0,0,0,0,0,0,0,260,2.6,2,2,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100300,0,0,343,0,0,0,0,0,0,0,260,2.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100300,0,0,364,0,0,0,0,0,0,0,250,1.6,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100300,0,0,364,0,0,0,0,0,0,0,320,1.9,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.8,87,100300,0,0,364,0,0,0,0,0,0,0,270,0.3,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,17.2,88,100300,0,0,366,0,0,0,0,0,0,0,270,2.5,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.2,90,100300,0,0,364,0,0,0,0,0,0,0,300,2.1,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,17.1,89,100300,0,0,365,0,0,0,0,0,0,0,300,0.0,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,16.7,84,100300,29,600,367,11,197,7,1253,0,769,28,240,0.0,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,16.8,78,100400,271,1344,373,144,394,65,16021,7886,7217,297,240,0.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,17.2,73,100400,544,1344,382,343,556,118,39089,29582,13496,599,240,2.2,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,17.3,69,100400,786,1344,387,519,596,171,60310,37870,19923,937,240,2.6,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,18.0,69,100400,982,1344,391,661,611,214,77732,40308,25314,1228,270,2.7,5,5,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,17.1,59,100400,1117,1344,399,801,722,201,96654,45773,24405,1169,270,3.7,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,16.2,53,100400,1181,1344,403,897,829,168,110661,49808,20813,969,260,4.7,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,17.0,59,100300,1172,1344,399,873,792,182,106864,48175,22355,1050,260,5.0,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,15.5,52,100200,1088,1344,399,791,748,186,95785,47595,22598,1078,270,4.6,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.8,15.2,52,100200,937,1344,397,647,660,187,76562,43571,22256,1065,270,4.9,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,17.0,65,100100,727,1344,390,477,590,157,55130,36679,18286,849,260,7.2,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,16.8,66,100100,475,1344,387,258,374,126,28811,20031,14124,624,250,6.4,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,16.7,69,100100,198,1344,383,80,186,53,8818,723,5830,236,250,5.7,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.6,76,100100,6,261,371,0,0,0,0,0,0,0,260,5.5,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.2,76,100200,0,0,366,0,0,0,0,0,0,0,280,3.7,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.7,79,100200,0,0,366,0,0,0,0,0,0,0,280,3.9,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,16.7,81,100300,0,0,392,0,0,0,0,0,0,0,250,2.3,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.8,76,100300,0,0,397,0,0,0,0,0,0,0,300,0.2,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.1,78,100300,0,0,397,0,0,0,0,0,0,0,300,2.0,9,9,16.1,4572,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.8,78,100300,0,0,395,0,0,0,0,0,0,0,250,1.3,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,17.2,78,100200,0,0,398,0,0,0,0,0,0,0,250,0.0,9,9,16.1,4572,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,17.1,76,100200,0,0,400,0,0,0,0,0,0,0,260,0.2,9,9,16.1,4572,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,100200,0,0,385,0,0,0,0,0,0,0,260,2.1,8,8,16.0,4572,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.2,74,100300,0,0,396,0,0,0,0,0,0,0,260,0.2,9,9,16.1,4572,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.7,76,100300,28,585,398,10,69,9,1115,0,958,36,260,1.3,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,16.6,70,100300,268,1345,403,102,138,74,11165,3287,8169,339,310,0.0,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,15.8,63,100300,541,1345,407,244,192,166,27030,12422,18556,845,310,0.2,9,9,16.1,4465,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,17.2,71,100300,784,1345,406,362,178,259,40643,13596,29190,1417,310,1.7,9,9,16.1,3658,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.2,73,100400,979,1345,395,490,220,330,55702,17689,37713,1889,310,3.1,8,8,16.0,3658,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.8,15.5,53,100300,1114,1345,421,607,296,362,70025,24135,42012,2101,240,0.4,9,9,16.1,3800,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.0,14.5,46,100300,1178,1345,427,745,499,308,87927,37584,36584,1781,240,3.2,9,9,16.1,4877,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,15.5,54,100300,1168,1345,420,739,498,306,86985,37101,36230,1769,260,4.2,9,9,16.1,4877,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,14.9,55,100300,1084,1345,413,595,306,348,68564,24931,40384,2020,260,5.2,9,9,16.1,4841,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,14.0,51,100200,932,1345,414,484,261,303,55180,21266,34778,1724,270,5.6,9,9,16.1,4572,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,14.4,54,100200,722,1345,403,402,362,208,45525,26229,23664,1120,270,4.6,8,8,16.0,4572,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.1,14.7,56,100100,469,1345,391,261,405,120,29307,21804,13541,595,260,4.9,6,6,16.0,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,15.0,58,100100,192,1345,387,86,250,50,9421,662,5511,221,260,4.9,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,15.1,60,100100,4,233,406,0,0,0,0,0,0,0,240,3.0,9,9,16.1,4572,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,16.2,67,100100,0,0,396,0,0,0,0,0,0,0,220,2.3,8,8,16.1,4572,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.1,78,100100,0,0,375,0,0,0,0,0,0,0,250,3.6,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.1,74,100200,0,0,387,0,0,0,0,0,0,0,230,3.4,8,8,16.1,4572,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.2,75,100200,0,0,366,0,0,0,0,0,0,0,250,1.9,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.6,76,100200,0,0,368,0,0,0,0,0,0,0,190,0.2,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.2,76,100200,0,0,366,0,0,0,0,0,0,0,190,1.3,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.7,78,100100,0,0,367,0,0,0,0,0,0,0,190,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.6,78,100100,0,0,366,0,0,0,0,0,0,0,50,0.2,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,100100,0,0,366,0,0,0,0,0,0,0,50,1.5,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.1,75,100200,0,0,366,0,0,0,0,0,0,0,50,0.0,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.2,73,100200,26,571,369,10,239,5,1156,0,618,22,50,0.0,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,16.7,71,100300,265,1345,375,151,477,57,16925,7663,6409,261,130,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.6,16.4,64,100400,538,1345,381,354,625,104,40802,31870,12059,529,130,0.2,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,14.6,49,100400,781,1345,392,560,739,131,66470,44500,15633,719,130,1.7,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,16.1,54,100400,976,1345,394,709,749,165,85122,46537,19940,947,260,3.1,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.7,14.5,44,100400,1111,1345,407,807,747,190,97906,48335,23178,1104,240,4.3,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,11.5,39,100300,1175,1345,397,816,661,238,98270,46785,28883,1378,240,5.7,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,14.5,50,100300,1164,1345,395,807,658,237,96950,45191,28660,1374,250,5.6,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,15.5,54,100200,1080,1345,396,726,606,240,86048,42109,28560,1390,260,5.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,14.7,53,100200,927,1345,392,626,623,197,73747,42266,23311,1118,260,6.3,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,16.7,62,100200,717,1345,392,477,618,148,55370,37698,17236,795,250,6.7,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,16.1,62,100200,463,1345,382,284,530,101,32171,25312,11525,500,270,6.4,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,15.8,63,100100,186,1345,379,90,320,46,9941,0,5064,202,270,5.9,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.2,74,100100,3,205,375,0,0,0,0,0,0,0,260,3.7,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.9,74,100200,0,0,369,0,0,0,0,0,0,0,270,4.1,2,2,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100200,0,0,355,0,0,0,0,0,0,0,260,3.9,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.3,67,100300,0,0,355,0,0,0,0,0,0,0,230,2.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.8,79,100300,0,0,358,0,0,0,0,0,0,0,230,2.6,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,17.9,79,100300,0,0,373,0,0,0,0,0,0,0,240,2.5,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,100300,0,0,371,0,0,0,0,0,0,0,170,1.3,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.1,83,100300,0,0,371,0,0,0,0,0,0,0,170,0.0,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.9,77,100300,0,0,369,0,0,0,0,0,0,0,250,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.3,87,100300,0,0,374,0,0,0,0,0,0,0,250,0.0,5,5,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,18.2,89,100400,0,0,371,0,0,0,0,0,0,0,250,1.6,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.8,87,100400,25,556,371,9,176,6,1031,0,659,24,250,2.5,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,17.8,80,100500,262,1346,377,134,351,65,14771,6334,7230,298,230,2.0,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,17.8,73,100500,535,1346,383,345,592,110,39486,29975,12605,556,270,1.7,4,4,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,17.7,68,100500,778,1346,369,700,1157,31,92049,49232,4078,170,240,3.2,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.2,64,100500,974,1346,370,876,1156,39,116560,53486,5250,226,270,4.1,0,0,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.9,67,100500,1108,1346,387,805,747,190,97315,46001,23081,1103,260,4.6,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,18.3,68,100500,1171,1346,388,881,813,174,108117,47716,21406,1004,240,4.7,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,18.2,66,100400,1160,1346,391,896,864,151,110924,48979,18792,875,260,5.8,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,17.8,65,100300,1075,1346,396,795,781,171,96465,46921,20868,993,250,6.1,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,17.7,67,100300,922,1346,393,659,722,164,78385,44053,19628,931,260,5.7,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,17.2,66,100200,711,1346,404,404,387,199,45662,26622,22643,1069,250,5.7,8,8,16.0,2938,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.2,69,100200,457,1346,401,215,237,134,23722,12954,14892,660,270,5.7,8,8,16.0,4615,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,17.1,71,100200,180,1346,406,54,72,44,5948,0,4908,196,270,5.8,9,9,16.1,6096,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.8,72,100200,3,178,388,0,0,0,0,0,0,0,250,5.9,7,7,16.1,6096,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.2,76,100200,0,0,357,0,0,0,0,0,0,0,270,3.5,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.2,76,100300,0,0,373,0,0,0,0,0,0,0,260,2.6,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,17.1,76,100300,0,0,372,0,0,0,0,0,0,0,240,2.6,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.1,75,100300,0,0,366,0,0,0,0,0,0,0,240,2.6,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.3,75,100300,0,0,365,0,0,0,0,0,0,0,250,2.7,2,2,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.7,84,100200,0,0,352,0,0,0,0,0,0,0,250,3.5,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.5,80,100200,0,0,348,0,0,0,0,0,0,0,280,2.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.2,74,100200,0,0,347,0,0,0,0,0,0,0,280,1.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.7,81,100200,0,0,349,0,0,0,0,0,0,0,250,0.0,0,0,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.7,76,100200,0,0,362,0,0,0,0,0,0,0,250,1.3,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,16.7,80,100200,24,541,370,8,194,5,932,0,534,19,250,0.0,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,16.6,72,100200,259,1347,379,137,389,62,15187,6773,6901,283,260,0.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,16.2,64,100200,533,1347,386,333,547,117,37955,29344,13342,590,260,1.6,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.3,65,100200,776,1347,393,515,605,166,59749,38100,19346,907,250,2.8,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,18.3,69,100200,971,1347,394,640,579,223,74913,38725,26205,1275,260,4.6,5,5,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,17.1,62,100200,1105,1347,395,747,616,242,88675,41774,28882,1405,270,4.2,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,16.2,60,100100,1168,1347,392,810,659,238,97189,44318,28734,1379,250,5.2,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,16.5,60,100100,1156,1347,394,834,733,205,101083,46770,24930,1187,260,6.4,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,15.0,58,100000,1071,1347,387,756,694,204,90607,45985,24597,1183,270,8.0,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,15.1,60,99900,917,1347,384,635,665,181,75042,43709,21556,1027,250,6.6,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.1,64,99900,706,1347,385,465,602,149,53824,37214,17363,800,260,6.2,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,15.8,64,99900,451,1347,384,265,474,106,29842,23081,11987,521,250,5.6,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,15.5,64,99900,174,1347,382,80,280,44,8816,0,4854,193,250,5.0,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.2,67,99900,2,150,376,0,0,0,0,0,0,0,250,3.8,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.8,74,100000,0,0,392,0,0,0,0,0,0,0,250,1.3,8,8,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.2,76,100000,0,0,378,0,0,0,0,0,0,0,260,0.0,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.1,75,100100,0,0,378,0,0,0,0,0,0,0,260,0.2,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.8,74,100100,0,0,377,0,0,0,0,0,0,0,260,1.5,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.2,78,100000,0,0,375,0,0,0,0,0,0,0,220,1.3,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.3,79,100000,0,0,375,0,0,0,0,0,0,0,230,0.2,5,5,15.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.8,84,100000,0,0,374,0,0,0,0,0,0,0,230,1.6,5,5,14.7,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.8,84,99900,0,0,387,0,0,0,0,0,0,0,270,2.5,8,8,16.1,4572,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.8,84,99900,0,0,374,0,0,0,0,0,0,0,250,2.1,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,18.3,87,99900,0,0,374,0,0,0,0,0,0,0,270,2.1,5,5,14.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,18.4,90,99900,22,527,372,7,177,4,820,0,475,17,260,2.0,5,5,11.5,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,18.8,86,100000,256,1347,378,131,355,63,14448,5446,7015,288,240,1.6,5,5,13.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,18.2,75,100000,530,1347,383,337,573,111,38419,28908,12768,564,260,2.7,4,4,14.7,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,17.7,68,100000,773,1347,385,545,711,137,64166,41430,16227,750,270,3.2,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,16.7,62,100000,968,1347,392,646,602,214,75947,40635,25305,1225,270,4.1,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,16.0,55,100000,1101,1347,398,773,682,215,92580,45098,25869,1247,270,4.2,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.2,15.7,52,100000,1164,1347,400,856,770,190,104442,48522,23351,1103,270,4.7,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,16.7,55,99900,1152,1347,404,869,819,169,106726,49159,20806,978,270,5.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,16.8,59,99800,1066,1347,398,770,737,187,92748,46323,22585,1081,260,6.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,17.3,65,99800,912,1347,392,619,632,191,72670,41023,22536,1080,280,6.1,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.8,71,99800,700,1347,388,436,518,167,49930,32672,19232,895,260,5.1,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.9,67,99800,445,1347,394,220,283,126,24345,14881,14053,619,270,4.6,7,7,16.0,3962,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,16.2,65,99800,168,1347,408,51,77,42,5640,0,4595,182,270,4.0,9,9,16.1,3962,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,16.8,69,99800,1,123,406,0,0,0,0,0,0,0,260,3.2,9,9,16.1,3962,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.3,71,99900,0,0,407,0,0,0,0,0,0,0,260,3.4,9,9,16.1,3962,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.9,74,100000,0,0,399,0,0,0,0,0,0,0,150,2.1,8,8,16.1,3962,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,19.0,79,100100,0,0,386,0,0,0,0,0,0,0,120,2.0,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,19.3,81,100100,0,0,410,0,0,0,0,0,0,0,110,1.9,9,9,16.1,4033,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,18.8,78,100200,0,0,409,0,0,0,0,0,0,0,110,4.4,9,9,16.1,4572,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,18.2,75,100100,0,0,409,0,0,0,0,0,0,0,100,2.3,9,9,16.1,4572,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.8,71,99900,0,0,402,0,0,0,0,0,0,0,100,0.0,8,8,16.1,4572,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.8,71,99900,0,0,388,0,0,0,0,0,0,0,310,0.2,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.8,71,99900,0,0,388,0,0,0,0,0,0,0,310,1.5,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,18.8,78,99900,0,0,387,0,0,0,0,0,0,0,310,0.0,5,5,15.9,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,18.4,74,100000,21,512,389,7,172,4,815,0,500,18,310,0.2,5,5,14.3,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,19.0,74,100100,253,1348,393,128,345,63,14111,5043,6986,287,310,1.9,5,5,13.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,19.3,73,100100,527,1348,396,309,457,130,34709,24309,14665,655,250,0.2,5,5,14.7,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,19.0,67,100100,770,1348,402,477,501,191,54654,32552,22013,1044,250,2.2,5,5,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.7,19.4,64,100100,965,1348,408,633,572,224,73896,37687,26261,1279,250,2.6,5,5,16.0,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.7,19.5,61,100100,1098,1348,413,785,717,201,94164,43777,24207,1165,270,5.0,5,5,16.1,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.3,20.0,64,100100,1161,1348,412,844,749,199,102177,44532,24229,1154,260,4.6,5,5,16.1,77777,9,999999999,379,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.7,20.0,63,100000,1148,1348,414,839,757,194,101563,44721,23558,1122,250,4.7,5,5,16.1,77777,9,999999999,379,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,20.1,68,100000,1062,1348,408,749,693,203,89274,42357,24292,1174,260,5.5,5,5,16.1,77777,9,999999999,379,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,20.6,72,99900,907,1348,405,627,665,180,73669,39794,21209,1014,260,4.2,5,5,16.1,77777,9,999999999,390,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,20.6,74,99900,694,1348,403,453,589,150,52081,33565,17294,799,260,5.1,5,5,16.0,77777,9,999999999,390,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,20.0,76,99900,439,1348,396,248,427,109,27658,18979,12175,531,270,5.4,5,5,15.2,77777,9,999999999,379,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,19.3,79,99900,162,1348,389,68,216,42,7447,0,4619,184,270,5.5,5,5,14.5,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,18.8,82,99900,1,97,380,0,0,0,0,0,0,0,270,5.5,4,4,14.7,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,17.9,79,99900,0,0,370,0,0,0,0,0,0,0,260,3.4,2,2,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,18.2,78,100000,0,0,361,0,0,0,0,0,0,0,230,1.6,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.9,77,100000,0,0,360,0,0,0,0,0,0,0,240,2.3,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,18.3,81,100000,0,0,358,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,18.3,81,100000,0,0,358,0,0,0,0,0,0,0,240,1.5,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,18.3,82,100000,0,0,358,0,0,0,0,0,0,0,260,1.6,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,18.2,84,99900,0,0,355,0,0,0,0,0,0,0,270,2.5,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.8,83,99900,0,0,368,0,0,0,0,0,0,0,270,1.9,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.8,81,99900,0,0,370,0,0,0,0,0,0,0,270,0.0,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,100000,0,0,377,0,0,0,0,0,0,0,260,0.5,5,5,15.8,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,18.4,87,100000,20,497,375,6,168,4,709,0,414,15,250,3.1,5,5,14.5,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,18.9,87,100100,250,1349,378,125,337,63,13805,4761,6939,285,280,3.1,5,5,14.5,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,18.9,81,100100,524,1349,384,307,461,129,34602,24528,14525,648,260,3.0,5,5,14.2,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,19.0,79,100200,767,1349,409,369,211,249,41341,15575,28036,1357,290,3.2,9,9,12.5,351,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,19.4,81,100300,962,1349,421,437,150,331,49474,11815,37620,1888,250,4.1,10,10,9.0,244,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,18.8,84,100300,1095,1349,414,495,135,385,56471,11025,44227,2235,250,4.6,10,10,9.7,244,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,18.3,80,100200,1157,1349,403,621,277,383,71557,22129,44470,2223,260,4.5,9,9,9.9,253,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,18.3,76,100200,1144,1349,408,652,350,355,75460,27094,41368,2061,250,4.7,9,9,11.5,305,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,18.2,78,100200,1057,1349,405,637,431,299,73733,31828,34790,1728,260,5.0,9,9,13.3,305,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.8,77,100200,902,1349,404,528,405,257,60438,29587,29603,1451,270,4.5,9,9,16.1,305,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.8,79,100100,689,1349,413,337,234,217,37614,16733,24375,1156,260,3.6,10,10,16.0,305,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,17.8,80,100200,433,1349,400,196,214,127,21606,11036,14085,621,270,3.9,9,9,16.0,305,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.8,81,100200,156,1349,398,49,89,39,5426,0,4309,171,270,4.2,9,9,16.1,305,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.8,82,100200,0,72,409,0,0,0,0,0,0,0,270,4.5,10,10,16.1,305,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.8,85,100200,0,0,406,0,0,0,0,0,0,0,270,4.1,10,10,16.1,305,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.8,87,100300,0,0,404,0,0,0,0,0,0,0,270,4.0,10,10,15.9,343,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,17.7,89,100300,0,0,401,0,0,0,0,0,0,0,250,2.6,10,10,16.1,602,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.3,84,100400,0,0,403,0,0,0,0,0,0,0,250,2.5,10,10,16.1,534,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.8,87,100400,0,0,404,0,0,0,0,0,0,0,330,1.5,10,10,16.1,427,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.9,85,100400,0,0,407,0,0,0,0,0,0,0,10,1.6,10,10,15.3,416,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.9,18.0,84,100300,0,0,409,0,0,0,0,0,0,0,310,2.1,10,10,9.6,274,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,18.3,90,100300,0,0,404,0,0,0,0,0,0,0,270,2.6,10,10,8.0,274,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,18.3,90,100300,0,0,404,0,0,0,0,0,0,0,290,2.6,10,10,8.0,263,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,18.8,93,100400,0,0,404,0,0,0,0,0,0,0,290,3.2,10,10,6.2,183,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,18.3,93,100400,19,483,401,6,34,6,682,0,629,23,270,3.7,10,10,4.8,183,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,18.3,93,100500,247,1349,401,75,68,63,8300,983,6948,285,260,4.1,10,10,5.0,183,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,18.3,89,100500,521,1349,405,200,109,158,22114,6555,17555,796,270,4.1,10,10,6.6,190,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,18.2,86,100500,764,1349,408,323,127,251,36167,9515,28287,1368,280,4.1,10,10,8.4,290,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,100500,959,1349,410,437,152,329,49497,12186,37474,1878,260,4.1,10,10,9.0,495,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,18.0,73,100500,1092,1349,400,670,460,299,78051,33648,34991,1734,270,5.7,8,8,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,18.3,70,100400,1153,1349,386,945,984,104,120051,51159,13320,606,280,7.3,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,18.3,69,100300,1140,1349,388,955,1027,88,122641,51736,11307,509,270,8.2,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.2,18.3,70,100300,1052,1349,393,804,846,144,98398,48107,17701,833,270,8.3,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,18.2,76,100200,897,1349,384,630,696,167,74505,42616,19896,944,270,8.7,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,18.3,79,100200,683,1349,396,385,383,191,43368,25502,21625,1015,260,8.7,8,8,16.0,305,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,18.1,78,100200,427,1349,385,234,396,109,26068,18200,12173,529,260,8.4,6,6,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,18.0,78,100200,150,1349,404,49,102,38,5430,0,4195,166,250,6.2,9,9,16.1,302,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,18.3,85,100200,0,48,410,0,0,0,0,0,0,0,260,6.7,10,10,16.1,244,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.3,87,100300,0,0,408,0,0,0,0,0,0,0,250,6.4,10,10,15.9,236,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,18.3,88,100400,0,0,406,0,0,0,0,0,0,0,260,4.0,10,10,14.5,173,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,18.3,93,100400,0,0,401,0,0,0,0,0,0,0,260,4.0,10,10,12.1,122,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,18.3,93,100500,0,0,401,0,0,0,0,0,0,0,260,3.0,10,10,6.4,122,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,18.3,94,100400,0,0,381,0,0,0,0,0,0,0,260,2.7,8,8,6.4,122,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,18.1,95,100400,0,0,365,0,0,0,0,0,0,0,260,2.9,5,5,3.4,106,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,17.9,97,100400,0,0,395,0,0,0,0,0,0,0,290,1.9,10,10,0.4,91,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,18.0,94,100400,0,0,398,0,0,0,0,0,0,0,290,0.0,10,10,0.8,91,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,18.3,96,100400,0,0,345,0,0,0,0,0,0,0,120,0.0,0,0,1.2,120,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,18.3,96,100400,0,0,398,0,0,0,0,0,0,0,120,0.2,10,10,1.4,91,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,18.3,94,100500,18,468,400,5,72,4,582,0,472,17,80,1.3,10,10,2.4,104,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,18.3,89,100500,244,1350,394,93,144,67,10162,2277,7335,302,30,1.5,9,9,2.6,183,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,18.1,80,100500,518,1350,379,319,530,116,36198,27105,13187,583,320,1.8,5,5,4.4,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,18.3,74,100500,761,1350,381,534,705,137,62733,40604,16121,744,270,2.5,3,3,6.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,100500,956,1350,410,424,136,328,48019,10876,37359,1871,260,4.6,10,10,1.6,183,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,17.8,80,100500,1088,1350,391,591,295,353,67834,23396,40782,2047,270,3.8,8,8,8.4,183,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,17.9,81,100400,1150,1350,399,596,242,390,68511,19639,45153,2264,270,5.5,9,9,4.7,183,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,17.9,78,100300,1136,1350,388,765,610,252,90806,41190,30113,1464,250,6.1,7,7,10.1,183,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,17.7,73,100300,1048,1350,385,808,865,137,99254,49074,16881,791,270,7.0,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,17.3,69,100200,891,1350,386,692,881,110,84431,48236,13501,620,270,9.2,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.8,73,100100,677,1350,385,494,783,102,58563,40702,12072,539,270,8.7,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.8,76,100100,420,1350,376,275,638,76,31486,23681,8768,371,260,7.9,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.8,79,100100,144,1350,373,72,364,33,7984,0,3694,145,260,6.8,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,17.9,79,100100,0,24,374,0,0,0,0,0,0,0,240,3.9,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,18.3,79,100200,0,0,372,0,0,0,0,0,0,0,180,2.5,2,2,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,18.2,81,100200,0,0,358,0,0,0,0,0,0,0,170,1.9,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,17.9,79,100300,0,0,358,0,0,0,0,0,0,0,170,0.3,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,100300,0,0,356,0,0,0,0,0,0,0,170,2.3,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,18.3,85,100300,0,0,355,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.3,87,100300,0,0,353,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,18.2,87,100200,0,0,353,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.8,87,100200,0,0,350,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.8,84,100200,0,0,368,0,0,0,0,0,0,0,110,0.0,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.8,87,100300,0,0,371,0,0,0,0,0,0,0,110,0.2,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,17.8,83,100300,17,453,375,5,413,0,961,0,0,0,110,1.8,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,18.3,80,100400,241,1351,378,131,428,55,14564,4156,6091,247,170,0.2,4,4,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.8,18.2,67,100400,515,1351,386,369,769,75,43222,32238,8873,379,170,1.6,2,2,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.7,17.9,55,100400,758,1351,388,682,1162,30,89593,48479,3914,162,270,2.7,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.2,18.3,58,100400,952,1351,386,857,1161,38,113751,52095,5102,219,270,3.6,0,0,16.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.3,17.2,51,100400,1085,1351,407,822,832,154,100672,48948,18985,896,280,3.8,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.2,17.1,51,100300,1146,1351,407,853,795,178,104101,48286,21870,1034,280,5.2,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.7,16.6,51,100300,1132,1351,403,864,845,156,106393,49961,19295,906,280,6.1,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.3,16.0,50,100200,1043,1351,400,779,803,159,94652,48863,19389,918,270,5.2,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.7,15.6,48,100100,886,1351,408,624,700,164,73874,44413,19543,923,260,5.5,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.0,16.0,51,100100,671,1351,405,453,647,131,52594,37999,15296,695,240,3.6,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,15.5,49,100100,414,1351,405,248,513,91,28065,22055,10331,441,270,4.4,5,5,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,14.9,47,100100,139,1351,401,66,326,33,7352,0,3662,143,270,4.8,4,4,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,14.5,47,100100,0,1,395,0,0,0,0,0,0,0,260,2.5,3,3,15.9,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.2,14.9,50,100100,0,0,389,0,0,0,0,0,0,0,240,1.9,2,2,14.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,14.5,47,100200,0,0,378,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,15.0,52,100200,0,0,374,0,0,0,0,0,0,0,140,0.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,15.0,51,100200,0,0,376,0,0,0,0,0,0,0,140,2.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,15.1,55,100200,0,0,371,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,16.3,61,100200,0,0,369,0,0,0,0,0,0,0,300,0.2,0,0,15.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,17.7,71,100200,0,0,365,0,0,0,0,0,0,0,300,1.3,0,0,11.6,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.3,74,100200,0,0,360,0,0,0,0,0,0,0,300,0.0,0,0,14.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.8,76,100200,0,0,360,0,0,0,0,0,0,0,50,0.0,0,0,14.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,16.4,68,100200,0,0,361,0,0,0,0,0,0,0,50,0.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.8,10.6,39,100300,16,438,370,4,338,0,597,0,16,0,50,2.1,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.5,10.5,35,100300,238,1352,378,214,1202,2,30041,0,330,11,90,2.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,30.4,9.7,28,100400,512,1352,392,460,1172,16,60753,41192,2107,80,100,2.6,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,33.6,7.8,20,100400,755,1352,406,679,1162,30,89672,57101,3936,162,110,2.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,35.6,7.8,18,100400,949,1352,417,854,1161,39,113942,61288,5160,220,110,1.6,0,0,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,35.4,11.2,23,100400,1081,1352,420,973,1163,43,130980,60168,5749,247,260,2.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,30.1,15.3,41,100400,1142,1352,421,692,437,323,80826,33710,37946,1874,260,5.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,31.1,12.7,33,100300,1127,1352,423,675,421,325,78815,33533,38112,1885,270,5.6,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,31.2,11.4,30,100300,1038,1352,422,646,483,275,75423,37376,32318,1589,270,5.2,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,31.9,9.7,25,100200,880,1352,423,656,806,131,79320,51096,15928,737,270,5.8,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,30.0,12.0,33,100100,665,1352,416,443,626,135,51399,39068,15691,712,270,6.2,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.2,13.9,42,100100,408,1352,409,220,383,105,24596,18289,11737,506,270,5.6,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,15.5,51,100100,133,1330,402,47,138,34,5201,0,3717,146,270,4.9,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.4,15.1,53,100100,0,0,395,0,0,0,0,0,0,0,250,3.7,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.7,15.7,61,100100,0,0,384,0,0,0,0,0,0,0,240,4.5,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.6,71,100200,0,0,358,0,0,0,0,0,0,0,260,3.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,15.7,68,100200,0,0,356,0,0,0,0,0,0,0,270,2.9,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.0,68,100200,0,0,358,0,0,0,0,0,0,0,270,1.3,0,0,15.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.7,67,100200,0,0,358,0,0,0,0,0,0,0,270,0.0,0,0,13.3,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.5,71,100300,0,0,358,0,0,0,0,0,0,0,270,0.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,19.4,87,100300,0,0,359,0,0,0,0,0,0,0,270,2.3,0,0,15.7,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.9,19.1,89,100200,0,0,355,0,0,0,0,0,0,0,100,0.2,0,0,13.3,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.2,87,100200,0,0,346,0,0,0,0,0,0,0,100,1.5,0,0,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,18.8,93,100300,0,0,350,0,0,0,0,0,0,0,110,0.2,0,0,14.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,18.4,93,100400,15,424,366,4,374,0,767,0,0,0,110,1.6,4,4,11.3,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,19.0,87,100400,235,1352,372,137,515,47,15325,2308,5324,214,80,2.5,3,3,10.9,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,19.4,87,100500,509,1352,404,237,224,153,26188,12940,16964,766,100,5.0,9,9,8.4,213,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,19.3,86,100500,752,1352,404,366,223,242,40916,16207,27188,1311,110,4.2,9,9,11.3,213,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,18.2,74,100600,946,1352,384,635,614,206,74409,40118,24217,1169,110,4.7,4,4,11.8,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.9,17.7,61,100500,1077,1352,379,969,1163,43,129838,53941,5723,247,120,2.1,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.7,17.4,53,100500,1138,1352,404,978,1078,71,127444,53481,9278,412,280,2.5,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.0,18.8,61,100400,1123,1352,402,944,1035,85,121138,51328,10884,491,280,5.1,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,18.3,64,100300,1033,1352,394,793,858,138,97074,48324,16936,795,270,5.1,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,18.4,70,100300,875,1352,391,592,634,182,69325,40053,21426,1021,270,5.1,4,4,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,18.9,74,100300,659,1352,386,452,677,122,52553,36623,14227,643,270,5.1,3,3,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,19.2,78,100300,401,1352,383,249,564,82,28175,20148,9280,394,260,4.6,3,3,16.0,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,19.3,81,100300,128,1311,380,63,377,28,7028,0,3076,119,260,4.1,3,3,15.8,77777,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,19.4,87,100300,0,0,404,0,0,0,0,0,0,0,250,4.0,9,9,14.3,297,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,19.4,87,100300,0,0,403,0,0,0,0,0,0,0,250,2.5,9,9,12.9,244,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,19.4,90,100400,0,0,400,0,0,0,0,0,0,0,270,1.3,9,9,12.9,251,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.9,87,100400,0,0,411,0,0,0,0,0,0,0,210,1.6,10,10,13.1,305,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.9,87,100400,0,0,411,0,0,0,0,0,0,0,210,1.5,10,10,14.5,286,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,18.9,84,100400,0,0,414,0,0,0,0,0,0,0,180,0.2,10,10,14.5,247,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,18.8,84,100400,0,0,402,0,0,0,0,0,0,0,180,1.6,9,9,14.3,284,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.8,84,100400,0,0,396,0,0,0,0,0,0,0,140,2.1,9,9,13.1,366,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.8,85,100400,0,0,395,0,0,0,0,0,0,0,150,2.1,9,9,14.3,373,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.8,87,100400,0,0,404,0,0,0,0,0,0,0,140,2.1,10,10,12.0,427,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.7,87,100400,0,0,403,0,0,0,0,0,0,0,150,2.1,10,10,10.9,419,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.2,83,100500,14,409,403,3,65,2,362,0,283,10,100,2.0,10,10,8.0,373,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,17.2,80,100500,232,1353,395,85,130,63,9298,1717,6888,282,100,1.3,9,9,8.0,427,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,17.1,74,100500,506,1353,377,312,536,112,35416,27239,12741,560,100,0.0,4,4,9.8,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.7,66,100500,749,1353,377,522,695,137,61174,41177,16146,743,280,0.4,2,2,11.3,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.7,66,100500,942,1353,364,848,1163,38,112558,53923,5077,217,280,3.6,0,0,11.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,16.8,65,100500,1074,1353,367,966,1164,43,129467,55003,5716,247,250,4.7,0,0,11.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,17.3,69,100400,1134,1353,366,1020,1165,44,137350,54724,5940,256,250,5.2,0,0,12.7,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,17.8,69,100400,1118,1353,384,865,873,144,106891,49606,17825,834,270,6.3,3,3,11.5,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,17.7,73,100300,1028,1353,378,782,841,143,95478,48473,17538,825,270,6.6,3,3,13.3,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.2,74,100300,869,1353,375,652,818,126,78481,46624,15214,704,260,6.1,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.2,78,100200,653,1353,370,457,711,113,53395,38584,13318,597,270,5.1,3,3,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.0,78,100200,395,1353,372,243,556,81,27577,20809,9221,390,270,6.0,4,4,14.8,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.7,82,100200,123,1293,391,37,88,29,4089,0,3211,125,270,5.8,9,9,14.5,266,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.7,88,100200,0,0,396,0,0,0,0,0,0,0,280,5.8,10,10,14.3,205,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.7,90,100300,0,0,374,0,0,0,0,0,0,0,260,3.2,8,8,13.1,152,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.2,88,100300,0,0,355,0,0,0,0,0,0,0,250,3.1,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.6,90,100300,0,0,355,0,0,0,0,0,0,0,250,3.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.2,88,100300,0,0,355,0,0,0,0,0,0,0,160,2.5,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.7,90,100300,0,0,361,0,0,0,0,0,0,0,160,1.6,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.6,90,100300,0,0,357,0,0,0,0,0,0,0,170,2.3,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.2,90,100300,0,0,353,0,0,0,0,0,0,0,170,0.0,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.6,90,100300,0,0,355,0,0,0,0,0,0,0,170,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.1,87,100300,0,0,355,0,0,0,0,0,0,0,170,0.0,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,16.2,93,100400,0,0,355,0,0,0,0,0,0,0,270,0.0,5,5,13.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.8,93,100400,13,395,359,3,318,0,477,0,5,0,270,0.0,5,5,8.2,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,17.1,88,100400,229,1354,365,117,363,55,12897,3372,6136,249,270,0.0,5,5,9.7,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.8,78,100500,503,1354,373,316,562,107,35921,28043,12226,535,270,0.4,5,5,9.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,17.2,75,100500,745,1354,379,492,603,160,56908,37540,18568,864,270,3.1,5,5,9.8,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.2,73,100500,939,1354,381,628,608,206,73585,40504,24266,1171,270,3.1,5,5,11.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.1,70,100500,1070,1354,384,741,662,217,88120,43626,26009,1260,270,4.1,5,5,11.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,16.6,68,100400,1130,1354,381,838,790,179,102041,48546,21855,1037,280,4.3,4,4,10.2,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,15.8,65,100300,1114,1354,377,862,874,143,106592,51308,17788,832,260,5.9,3,3,14.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,14.0,58,100300,1023,1354,374,797,888,126,98384,52457,15665,729,260,7.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.0,64,100200,864,1354,373,660,854,115,80030,49101,13996,642,270,6.8,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.0,64,100200,647,1354,373,482,825,88,57543,42599,10530,462,260,7.2,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,15.0,65,100200,389,1354,371,255,649,68,29241,22696,7868,328,260,6.7,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.0,66,100200,118,1273,370,61,448,22,6883,0,2489,95,260,6.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.0,71,100200,0,0,361,0,0,0,0,0,0,0,250,5.6,2,2,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100200,0,0,347,0,0,0,0,0,0,0,260,4.3,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.1,73,100200,0,0,347,0,0,0,0,0,0,0,230,2.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.6,76,100300,0,0,347,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.6,79,100300,0,0,344,0,0,0,0,0,0,0,190,1.9,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.6,79,100300,0,0,344,0,0,0,0,0,0,0,190,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.8,80,100300,0,0,345,0,0,0,0,0,0,0,270,0.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,17.1,87,100300,0,0,346,0,0,0,0,0,0,0,270,2.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100200,0,0,343,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100200,0,0,343,0,0,0,0,0,0,0,250,1.5,0,0,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.8,88,100300,0,0,337,0,0,0,0,0,0,0,90,1.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.8,87,100300,12,380,359,2,182,0,271,0,58,2,90,0.0,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,17.1,82,100300,225,1355,361,131,517,45,14724,1912,5081,203,260,0.0,2,2,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,16.8,73,100300,499,1355,357,449,1177,15,59130,33593,1981,75,260,0.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,17.1,70,100400,742,1355,363,668,1167,29,87766,48955,3785,156,260,2.3,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.1,64,100400,936,1355,364,842,1164,38,111747,54543,5037,215,260,4.1,0,0,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,16.7,67,100300,1066,1355,364,959,1164,43,128394,55126,5711,247,270,5.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,16.4,67,100300,1125,1355,362,1013,1167,44,136392,55782,5904,254,260,5.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,13.9,54,100200,1109,1355,364,998,1166,43,134391,58200,5860,252,260,6.8,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,14.0,54,100100,1018,1355,364,916,1165,41,122440,57521,5472,235,270,7.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,15.1,60,100100,858,1355,362,772,1164,35,102021,54249,4602,194,270,7.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.6,66,100100,641,1355,358,577,1170,23,75754,46006,3057,122,260,5.7,0,0,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.3,65,100100,382,1355,357,327,1102,16,41813,20262,2037,76,260,5.4,0,0,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.0,64,100000,113,1252,357,82,925,5,10346,0,593,20,260,5.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,15.0,65,100000,0,0,371,0,0,0,0,0,0,0,250,3.9,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.1,65,100100,0,0,369,0,0,0,0,0,0,0,210,1.9,2,2,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.6,69,100100,0,0,355,0,0,0,0,0,0,0,140,0.4,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.5,70,100200,0,0,353,0,0,0,0,0,0,0,140,2.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.0,66,100200,0,0,354,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.0,71,100200,0,0,349,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.3,75,100200,0,0,346,0,0,0,0,0,0,0,100,1.9,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,17.2,88,100200,0,0,361,0,0,0,0,0,0,0,100,0.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,17.2,89,100100,0,0,359,0,0,0,0,0,0,0,100,0.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.2,87,100100,0,0,361,0,0,0,0,0,0,0,100,0.0,3,3,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.7,93,100100,0,0,365,0,0,0,0,0,0,0,310,0.0,5,5,15.9,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,17.3,90,100100,11,365,365,2,219,0,281,0,35,1,310,0.0,5,5,13.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,17.7,86,100200,222,1355,371,113,366,53,12537,2459,5925,240,310,0.2,5,5,9.8,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,17.2,75,100200,496,1355,380,309,552,107,35090,27172,12199,534,310,2.1,5,5,11.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,17.1,68,100200,739,1355,387,492,621,154,57057,38144,17894,830,270,2.3,5,5,13.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,16.7,62,100200,932,1355,392,643,663,186,75820,42948,22112,1058,270,3.6,5,5,14.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,16.7,60,100200,1062,1355,392,783,781,171,94843,47932,20785,989,270,5.0,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.1,16.6,59,100200,1121,1355,389,870,881,142,107727,50875,17614,823,250,4.8,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,15.6,54,100100,1104,1355,390,865,900,132,107499,52044,16511,768,280,6.6,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,15.6,58,100100,1013,1355,384,775,854,137,94778,50391,16823,788,270,5.9,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,15.7,62,100000,853,1355,379,632,799,129,75770,47016,15555,719,260,7.1,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.1,64,100000,635,1355,380,453,751,101,53327,39705,11968,530,250,6.7,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,16.4,68,100000,376,1355,368,253,697,60,29227,20926,6953,287,270,6.4,1,1,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.6,71,99900,108,1228,358,78,348,51,8184,0,5324,218,270,5.9,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,99900,0,0,367,0,0,0,0,0,0,0,250,3.4,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.7,69,100000,0,0,355,0,0,0,0,0,0,0,210,1.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.2,74,100000,0,0,353,0,0,0,0,0,0,0,210,1.6,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.6,76,100000,0,0,354,0,0,0,0,0,0,0,180,2.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,100000,0,0,353,0,0,0,0,0,0,0,180,2.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.0,72,100100,0,0,353,0,0,0,0,0,0,0,180,1.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,15.8,70,100100,0,0,354,0,0,0,0,0,0,0,50,2.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.3,88,100100,0,0,346,0,0,0,0,0,0,0,100,2.5,0,0,15.3,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,18.2,93,100100,0,0,362,0,0,0,0,0,0,0,100,2.0,3,3,9.7,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.8,93,100100,0,0,359,0,0,0,0,0,0,0,80,1.5,3,3,9.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,17.9,93,100100,0,0,360,0,0,0,0,0,0,0,70,1.6,3,3,8.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,18.3,92,100100,10,350,369,2,264,0,306,0,9,0,90,2.2,5,5,8.2,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,18.2,83,100100,219,1356,378,120,449,48,13405,1276,5350,215,50,2.6,5,5,9.7,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,17.7,72,100100,493,1356,386,318,608,97,36408,28217,11171,485,50,2.3,5,5,9.8,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,17.3,61,100200,735,1356,422,405,351,215,45709,24905,24342,1158,240,0.5,9,9,11.3,6096,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,18.3,66,100100,928,1356,412,541,399,268,61920,29287,30819,1517,240,4.1,8,8,11.0,6096,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,17.8,65,100100,1059,1356,419,576,303,340,66060,23895,39213,1967,260,4.3,9,9,13.1,6096,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.9,67,100100,1117,1356,417,600,282,367,68859,22558,42462,2132,260,6.3,9,9,14.5,6096,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,18.2,68,100000,1099,1356,417,624,351,340,71950,27120,39427,1973,260,6.7,9,9,14.7,5953,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,17.7,66,99900,1007,1356,416,594,407,291,68350,30494,33703,1673,280,6.5,9,9,15.9,5019,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,17.2,65,99900,847,1356,415,499,423,235,57031,30472,26974,1306,270,5.1,9,9,14.7,6096,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,17.2,66,99800,629,1356,404,381,489,154,43232,30011,17567,804,290,5.1,8,8,16.0,6096,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.9,67,99800,369,1356,401,188,328,98,20769,13399,10925,468,270,4.3,8,8,15.2,6096,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,16.8,70,99800,90,1060,405,29,165,18,3217,0,1990,76,270,3.7,9,9,14.5,5918,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.1,78,99800,0,0,389,0,0,0,0,0,0,0,270,4.0,8,8,14.7,4572,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.6,78,99900,0,0,369,0,0,0,0,0,0,0,240,3.0,4,4,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.1,75,99900,0,0,366,0,0,0,0,0,0,0,240,2.5,3,3,14.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.2,74,100000,0,0,374,0,0,0,0,0,0,0,240,1.3,5,5,14.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.1,78,100000,0,0,375,0,0,0,0,0,0,0,240,0.0,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.6,76,100000,0,0,375,0,0,0,0,0,0,0,240,0.3,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.2,74,100000,0,0,374,0,0,0,0,0,0,0,100,2.3,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.6,78,100000,0,0,372,0,0,0,0,0,0,0,100,0.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.1,79,100000,0,0,368,0,0,0,0,0,0,0,100,1.5,5,5,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100000,0,0,366,0,0,0,0,0,0,0,100,1.5,5,5,14.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.9,82,100100,0,0,369,0,0,0,0,0,0,0,100,0.0,5,5,13.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,18.2,88,100100,9,335,395,2,71,2,247,0,188,6,160,0.0,9,9,8.0,6822,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,17.3,83,100200,216,1357,393,81,142,58,8840,1208,6386,260,160,1.9,9,9,8.0,9016,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,18.2,79,100200,490,1357,404,225,217,147,24820,12419,16267,730,160,0.2,9,9,8.2,9144,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.2,17.7,67,100200,732,1357,415,375,275,227,42107,19926,25619,1224,270,1.3,9,9,10.0,9144,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,17.2,58,100200,925,1357,416,571,483,242,65925,34463,28096,1371,270,0.0,8,8,12.0,9127,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.8,17.9,55,100200,1055,1357,436,663,501,274,77286,35900,32084,1584,270,5.0,9,9,13.1,8838,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,18.3,68,100100,1112,1357,418,628,343,347,72423,26628,40263,2015,270,4.7,9,9,14.5,7797,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,18.4,64,100100,1095,1357,424,619,347,340,71321,26784,39351,1970,280,5.2,9,9,14.3,9127,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,18.9,67,100000,1002,1357,424,551,319,315,62897,24413,36232,1811,270,5.6,9,9,13.1,8483,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,18.9,72,100000,841,1357,417,498,429,232,56747,29970,26569,1287,280,4.7,9,9,14.5,4572,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,18.9,76,100000,623,1357,403,357,417,166,40193,25760,18740,863,270,5.1,8,8,14.0,4572,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,18.9,78,100000,363,1357,402,176,288,99,19435,11144,10993,472,260,4.6,8,8,13.4,4572,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,19.0,80,100000,85,1029,409,28,194,16,3148,0,1778,67,260,4.1,9,9,12.5,4572,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,19.3,87,100000,0,0,403,0,0,0,0,0,0,0,270,4.0,9,9,10.0,4749,9,999999999,359,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,18.8,87,100000,0,0,399,0,0,0,0,0,0,0,260,3.4,9,9,13.3,6096,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,18.3,87,100000,0,0,381,0,0,0,0,0,0,0,270,2.1,7,7,15.5,6096,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,18.2,89,100000,0,0,357,0,0,0,0,0,0,0,250,1.9,1,1,11.5,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.8,84,100000,0,0,396,0,0,0,0,0,0,0,250,0.0,9,9,12.9,4572,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,17.8,84,100000,0,0,396,0,0,0,0,0,0,0,250,0.0,9,9,12.9,4749,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.8,85,100000,0,0,395,0,0,0,0,0,0,0,250,0.0,9,9,12.9,6096,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,17.9,88,100000,0,0,392,0,0,0,0,0,0,0,250,0.0,9,9,12.7,6096,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,18.2,92,100000,0,0,390,0,0,0,0,0,0,0,130,0.0,9,9,11.3,6096,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.8,87,100000,0,0,384,0,0,0,0,0,0,0,130,0.0,8,8,11.0,6096,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,17.9,90,100100,0,0,390,0,0,0,0,0,0,0,130,0.0,9,9,12.7,6096,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,18.3,90,100200,8,321,385,1,101,0,136,0,51,2,130,0.0,8,8,11.3,6096,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,18.3,88,100200,213,1358,373,107,353,52,11784,1239,5708,230,130,0.2,5,5,11.3,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,18.2,73,100200,486,1358,385,322,648,90,36956,28355,10343,446,130,1.3,4,4,11.6,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,17.4,59,100300,729,1358,395,538,804,107,64084,43204,12758,575,270,0.3,3,3,14.7,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,18.9,67,100300,921,1358,401,658,728,164,78070,43522,19558,928,270,2.6,5,5,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.6,18.8,59,100200,1051,1358,409,802,850,145,97966,47956,17739,836,270,3.7,4,4,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,17.6,60,100200,1108,1358,396,824,798,173,100216,48008,21096,1002,260,4.7,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,16.2,55,100200,1090,1358,400,787,743,191,94912,47316,23117,1107,270,5.2,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,16.6,58,100200,997,1358,398,690,668,200,81756,43793,23803,1147,270,5.8,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,15.8,59,100200,835,1358,390,583,692,157,68680,43409,18576,870,260,6.7,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,17.2,66,100100,617,1358,390,418,668,115,48506,36080,13378,598,260,6.7,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.5,70,100100,356,1358,381,228,623,65,25995,17744,7406,307,270,5.6,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,17.9,74,100100,80,998,379,41,614,5,5066,0,633,22,270,4.6,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,18.0,80,100100,0,0,369,0,0,0,0,0,0,0,260,4.4,2,2,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,100100,0,0,353,0,0,0,0,0,0,0,260,3.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.1,73,100100,0,0,354,0,0,0,0,0,0,0,260,1.9,0,0,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.2,71,100100,0,0,356,0,0,0,0,0,0,0,260,0.0,0,0,14.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.8,74,100100,0,0,357,0,0,0,0,0,0,0,250,0.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,17.0,75,100100,0,0,357,0,0,0,0,0,0,0,250,1.7,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.5,73,100100,0,0,350,0,0,0,0,0,0,0,110,3.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.1,71,100200,0,0,349,0,0,0,0,0,0,0,60,1.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.6,79,100200,0,0,356,0,0,0,0,0,0,0,90,2.5,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.6,79,100200,0,0,344,0,0,0,0,0,0,0,120,1.5,0,0,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,15.7,76,100200,0,0,348,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.2,75,100200,8,306,372,1,132,0,139,0,36,1,120,0.0,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.9,76,100300,209,1358,376,111,411,48,12314,937,5309,213,250,0.0,5,5,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.4,18.3,78,100300,483,1358,381,305,576,100,34656,26458,11420,497,250,0.0,4,4,14.7,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,18.0,69,100400,725,1358,382,509,715,128,59711,40337,15037,687,250,0.4,2,2,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,16.1,58,100300,917,1358,372,825,1166,37,109298,54372,4946,211,250,3.6,0,0,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.1,62,100300,1046,1358,390,785,817,156,95422,48587,19022,900,250,5.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,16.8,61,100300,1104,1358,389,841,847,153,103252,49928,18848,887,240,4.7,3,3,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,17.9,70,100200,1085,1358,387,781,738,192,93937,45902,23163,1111,250,5.1,4,4,14.7,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,18.1,73,100100,991,1358,381,745,822,145,90248,47479,17668,832,260,5.2,3,3,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.7,71,100100,829,1358,374,603,768,134,71803,45096,16032,742,270,5.7,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.7,73,100100,610,1358,372,444,791,89,52503,39096,10553,462,240,5.7,3,3,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.0,77,100100,350,1358,375,211,536,73,23745,16565,8210,343,250,5.1,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,17.1,82,100100,75,967,385,28,311,11,3243,0,1261,47,250,4.6,8,8,16.1,244,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100100,0,0,361,0,0,0,0,0,0,0,260,5.0,3,3,14.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.7,85,100100,0,0,387,0,0,0,0,0,0,0,270,3.8,9,9,16.1,247,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.7,88,100100,0,0,385,0,0,0,0,0,0,0,260,1.6,9,9,16.1,270,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.6,89,100100,0,0,383,0,0,0,0,0,0,0,270,2.6,9,9,16.1,244,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.0,84,100200,0,0,384,0,0,0,0,0,0,0,260,2.6,9,9,16.1,247,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.6,87,100100,0,0,370,0,0,0,0,0,0,0,320,2.6,8,8,16.1,274,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.7,87,100100,0,0,355,0,0,0,0,0,0,0,330,2.3,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.6,87,100100,0,0,378,0,0,0,0,0,0,0,280,1.5,9,9,14.7,305,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.5,86,100100,0,0,378,0,0,0,0,0,0,0,270,1.5,9,9,16.1,308,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100100,0,0,369,0,0,0,0,0,0,0,360,1.5,8,8,16.0,335,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.0,87,100100,0,0,353,0,0,0,0,0,0,0,20,0.0,5,5,15.5,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,15.3,91,100100,7,291,373,1,64,1,131,0,88,3,140,0.0,9,9,11.3,3035,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.5,86,100100,206,1359,379,74,128,55,8155,886,6040,245,140,1.3,9,9,9.7,342,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,15.0,80,100200,479,1359,382,216,205,144,23881,12167,15967,712,140,0.0,9,9,9.7,1989,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.0,70,100200,721,1359,393,370,278,223,41614,20716,25177,1197,250,0.4,9,9,9.8,4267,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.0,68,100200,913,1359,387,523,378,269,59811,29100,30940,1518,250,3.1,8,8,11.0,4267,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100100,1042,1359,373,772,793,164,93566,49439,19972,947,270,4.2,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,15.0,65,100100,1099,1359,355,989,1170,43,132921,57282,5808,250,270,4.7,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.0,64,100000,1080,1359,357,971,1168,43,130231,57157,5769,249,260,5.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100000,986,1359,355,887,1168,40,118182,56414,5291,227,260,5.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.0,66,99900,823,1359,370,645,907,95,78816,49665,11667,526,260,5.7,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,99900,604,1359,365,449,827,81,53391,40727,9664,419,250,5.7,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,15.0,72,99900,343,1359,363,228,684,56,26257,18006,6408,261,270,5.1,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.1,74,99900,70,937,361,37,662,3,4730,0,323,11,270,4.5,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.6,81,99900,0,0,353,0,0,0,0,0,0,0,270,4.0,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.6,82,100000,0,0,342,0,0,0,0,0,0,0,270,3.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.7,85,100000,0,0,354,0,0,0,0,0,0,0,260,2.5,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.1,88,100000,0,0,354,0,0,0,0,0,0,0,250,2.0,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100000,0,0,352,0,0,0,0,0,0,0,250,1.6,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100000,0,0,379,0,0,0,0,0,0,0,270,2.5,9,9,16.1,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.1,89,100000,0,0,379,0,0,0,0,0,0,0,260,1.9,9,9,16.1,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.0,87,100000,0,0,381,0,0,0,0,0,0,0,310,0.2,9,9,15.5,312,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.6,86,100000,0,0,389,0,0,0,0,0,0,0,310,1.3,10,10,11.5,366,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100000,0,0,392,0,0,0,0,0,0,0,310,0.0,10,10,12.0,366,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.5,84,100000,0,0,391,0,0,0,0,0,0,0,40,0.2,10,10,11.5,366,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,15.0,81,100000,6,276,391,1,45,1,129,0,103,3,40,1.3,10,10,12.5,373,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.0,78,100000,203,1360,394,65,89,52,7202,470,5754,232,340,0.7,10,10,9.7,446,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,15.0,75,100100,476,1360,386,213,200,143,23530,11845,15847,706,270,1.9,9,9,9.7,495,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,15.0,69,100100,718,1360,379,402,376,204,45511,26902,23195,1095,270,1.0,7,7,10.3,549,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100000,910,1360,370,643,711,167,76294,45604,19941,944,250,2.7,3,3,11.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100000,1038,1360,355,934,1169,42,124890,56918,5561,240,250,3.7,0,0,13.3,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,99900,1094,1360,355,985,1171,43,132342,57291,5776,249,260,4.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,15.0,65,99900,1075,1360,355,967,1170,43,129684,57175,5715,246,270,6.8,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.0,64,99900,980,1360,372,787,950,102,97906,52868,12752,584,250,7.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.1,69,99900,818,1360,367,637,899,97,77708,49317,11829,533,250,6.6,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,99800,598,1360,374,429,769,91,50512,38510,10775,471,270,5.7,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.1,76,99800,336,1360,371,209,584,65,23730,16206,7354,303,260,5.7,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.1,79,99800,66,906,365,34,292,20,3735,0,2202,86,260,5.5,4,4,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.2,82,99900,0,0,360,0,0,0,0,0,0,0,260,3.5,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,99900,0,0,358,0,0,0,0,0,0,0,260,2.5,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.6,87,100000,0,0,377,0,0,0,0,0,0,0,260,2.1,8,8,16.1,335,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.1,84,100000,0,0,357,0,0,0,0,0,0,0,330,1.9,3,3,15.9,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.1,84,100000,0,0,357,0,0,0,0,0,0,0,330,0.2,3,3,14.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.2,85,100000,0,0,357,0,0,0,0,0,0,0,330,1.7,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.7,91,100000,0,0,355,0,0,0,0,0,0,0,270,3.5,3,3,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.6,93,100000,0,0,353,0,0,0,0,0,0,0,270,2.6,3,3,14.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100000,0,0,352,0,0,0,0,0,0,0,290,2.5,3,3,14.5,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,100000,0,0,352,0,0,0,0,0,0,0,250,1.5,3,3,14.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.1,89,100000,0,0,361,0,0,0,0,0,0,0,320,0.8,6,6,9.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.7,93,100100,6,261,380,0,0,0,0,0,0,0,340,1.5,9,9,8.0,244,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,16.8,89,100100,199,1361,384,75,151,53,8260,565,5855,237,360,0.9,9,9,8.0,266,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,16.2,83,100200,472,1361,378,233,279,136,25806,15729,15128,672,300,1.3,8,8,8.0,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.7,76,100200,714,1361,375,460,570,160,52874,35908,18517,858,260,0.2,5,5,8.4,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.7,71,100200,906,1361,380,616,642,188,72256,41967,22185,1060,260,2.1,5,5,11.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,16.7,73,100100,1034,1361,392,632,460,283,73262,34176,32961,1630,270,4.7,8,8,9.8,4267,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,16.6,70,100100,1090,1361,381,794,760,185,95837,47649,22428,1072,270,5.0,5,5,11.8,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,16.1,66,100000,1070,1361,383,786,777,175,95070,48437,21245,1012,260,4.6,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,16.2,67,100000,975,1361,382,745,856,132,90855,49830,16143,754,270,4.7,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.7,71,100000,812,1361,380,603,811,120,72228,45959,14384,659,260,5.6,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.7,73,100000,591,1361,392,361,510,140,41035,30013,15934,720,270,4.6,8,8,16.0,4462,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.7,76,99900,330,1361,389,172,366,84,19099,12110,9291,391,280,3.8,8,8,16.0,6139,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.7,79,100000,61,876,394,21,307,8,2511,0,885,32,280,3.2,9,9,15.9,7264,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.7,82,100000,0,0,391,0,0,0,0,0,0,0,280,3.7,9,9,14.7,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100100,0,0,388,0,0,0,0,0,0,0,280,4.5,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.7,85,100100,0,0,379,0,0,0,0,0,0,0,290,4.0,8,8,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100100,0,0,364,0,0,0,0,0,0,0,260,3.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100200,0,0,385,0,0,0,0,0,0,0,280,3.6,9,9,16.1,4845,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.7,88,100100,0,0,385,0,0,0,0,0,0,0,280,3.9,9,9,15.9,274,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.7,90,100100,0,0,382,0,0,0,0,0,0,0,290,2.0,9,9,14.3,274,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.7,90,100100,0,0,382,0,0,0,0,0,0,0,350,1.6,9,9,12.9,274,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.7,90,100000,0,0,382,0,0,0,0,0,0,0,330,2.1,9,9,12.5,925,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.7,90,100000,0,0,374,0,0,0,0,0,0,0,270,1.5,8,8,9.0,4514,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.7,93,100100,0,0,379,0,0,0,0,0,0,0,270,2.0,9,9,7.7,213,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.7,93,100100,5,247,371,0,0,0,0,0,0,0,320,1.6,8,8,5.2,213,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,16.6,89,100200,196,1361,362,99,363,47,10936,0,5178,207,310,0.3,5,5,9.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,16.2,78,100200,469,1361,369,288,542,102,32702,25903,11577,502,320,2.6,5,5,9.8,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.7,78,100200,710,1361,373,456,568,160,52458,35728,18441,854,250,2.7,5,5,11.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.7,73,100200,902,1361,378,609,631,191,71300,41469,22434,1073,280,3.1,5,5,12.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,16.7,67,100100,1029,1361,386,739,736,183,88569,46446,21994,1053,270,4.2,5,5,14.3,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,16.7,68,100100,1085,1361,384,816,823,160,99527,49371,19603,927,270,5.0,5,5,12.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.7,66,100000,1064,1361,386,807,839,151,98592,49684,18523,874,270,4.8,5,5,10.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,16.6,66,100000,969,1361,386,728,824,141,88197,48637,17202,807,260,6.8,5,5,13.3,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,16.2,67,99900,806,1361,382,602,822,116,72198,46482,13935,636,270,7.3,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.7,71,99900,585,1361,380,421,774,88,49482,37548,10386,452,280,7.7,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.7,74,99900,323,1361,377,204,613,59,23264,14516,6711,275,270,7.2,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.7,76,99900,57,845,371,30,307,17,3280,0,1877,73,270,6.5,4,4,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.8,82,99900,0,0,360,0,0,0,0,0,0,0,270,5.0,2,2,14.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.1,87,100000,0,0,346,0,0,0,0,0,0,0,250,4.4,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100000,0,0,346,0,0,0,0,0,0,0,250,3.1,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100000,0,0,346,0,0,0,0,0,0,0,250,2.7,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.8,85,100100,0,0,346,0,0,0,0,0,0,0,250,0.0,0,0,15.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,17.2,88,100100,0,0,346,0,0,0,0,0,0,0,150,0.2,0,0,14.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.2,90,100100,0,0,344,0,0,0,0,0,0,0,150,1.3,0,0,14.5,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,17.1,90,100000,0,0,343,0,0,0,0,0,0,0,150,0.0,0,0,14.3,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.7,90,100000,0,0,341,0,0,0,0,0,0,0,60,0.0,0,0,13.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,16.7,85,100100,0,0,365,0,0,0,0,0,0,0,60,0.0,5,5,14.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100100,0,0,361,0,0,0,0,0,0,0,60,1.3,3,3,12.7,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,16.7,83,100200,4,232,367,0,0,0,0,0,0,0,60,0.0,5,5,11.3,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,16.8,81,100200,193,1362,370,100,394,44,11085,0,4928,196,260,0.4,5,5,11.3,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,17.1,75,100300,465,1362,379,287,548,100,32544,25380,11374,493,260,2.9,5,5,11.3,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,16.7,68,100300,707,1362,384,454,571,158,52239,35754,18266,845,280,1.8,5,5,11.5,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,16.7,68,100300,898,1362,384,595,600,199,69387,40147,23373,1121,270,4.1,5,5,12.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,15.9,61,100300,1025,1362,388,712,674,204,84549,44759,24393,1177,270,4.2,5,5,11.8,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,14.7,57,100200,1080,1362,409,628,386,322,72649,30603,37506,1867,260,4.7,9,9,16.1,7620,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,16.5,65,100200,1059,1362,409,635,431,300,73552,32692,34988,1737,260,5.8,9,9,16.1,7620,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,15.1,58,100100,963,1362,401,625,559,229,72914,39706,26907,1307,260,6.8,8,8,16.1,7620,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,16.0,64,100100,800,1362,385,591,802,120,70601,46015,14408,659,260,7.1,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,15.0,61,100100,579,1362,381,420,793,83,49651,38790,9885,428,260,6.7,5,5,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,15.0,63,100100,317,1362,380,201,623,57,22956,14675,6465,263,250,5.9,5,5,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.0,64,100100,53,815,375,28,311,16,3071,0,1745,67,250,4.9,4,4,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,15.0,65,100100,0,0,367,0,0,0,0,0,0,0,260,3.6,2,2,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,15.1,65,100100,0,0,356,0,0,0,0,0,0,0,240,3.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.1,75,100200,0,0,351,0,0,0,0,0,0,0,240,2.7,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.2,76,100200,0,0,350,0,0,0,0,0,0,0,260,3.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,16.6,80,100200,0,0,349,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.2,74,100200,0,0,364,0,0,0,0,0,0,0,180,1.5,2,2,15.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,17.3,85,100200,0,0,349,0,0,0,0,0,0,0,260,1.5,0,0,12.9,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.8,90,100200,0,0,347,0,0,0,0,0,0,0,270,1.3,0,0,12.9,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.8,90,100200,0,0,362,0,0,0,0,0,0,0,270,0.0,3,3,12.9,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,17.8,91,100200,0,0,361,0,0,0,0,0,0,0,270,0.0,3,3,12.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.0,86,100200,0,0,346,0,0,0,0,0,0,0,270,0.0,0,0,13.3,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,15.7,83,100200,4,217,341,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.9,73,100300,189,1363,352,154,1058,7,19599,0,942,33,270,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.2,14.1,53,100300,462,1363,366,415,1187,13,54895,31930,1698,63,270,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,12.9,43,100300,703,1363,376,632,1174,27,83120,51680,3513,142,270,0.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,17.8,62,100300,894,1363,377,804,1171,36,106191,52219,4790,204,270,5.1,0,0,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.2,17.1,61,100300,1021,1363,374,918,1171,41,122335,54643,5489,237,260,3.7,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.8,15.9,51,100200,1075,1363,381,967,1171,43,129513,56357,5746,248,270,4.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,14.6,46,100200,1054,1363,397,838,933,117,104311,53502,14587,675,270,4.7,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.9,16.2,55,100200,958,1363,389,790,1005,84,99346,52690,10538,476,270,5.8,2,2,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,16.7,63,100100,793,1363,369,714,1173,31,93951,51208,4131,172,280,6.3,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,16.7,64,100100,572,1363,367,515,1181,19,67634,40252,2498,97,270,6.7,0,0,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.0,68,100100,310,1363,365,270,1147,9,35281,3706,1133,40,270,6.2,0,0,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,17.3,72,100000,49,784,362,25,698,0,4939,0,0,0,270,5.5,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.8,76,100000,0,0,360,0,0,0,0,0,0,0,260,3.5,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.6,75,100100,0,0,360,0,0,0,0,0,0,0,260,2.6,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.2,69,100100,0,0,359,0,0,0,0,0,0,0,260,2.5,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.2,74,100100,0,0,359,0,0,0,0,0,0,0,190,1.5,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,17.1,75,100100,0,0,357,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.2,71,100100,0,0,356,0,0,0,0,0,0,0,240,0.4,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.9,77,100100,0,0,354,0,0,0,0,0,0,0,240,2.7,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,18.4,91,100100,0,0,357,0,0,0,0,0,0,0,240,0.0,1,1,14.2,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,19.0,100,100100,0,0,400,0,0,0,0,0,0,0,270,0.0,10,10,0.4,61,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,18.9,97,100100,0,0,402,0,0,0,0,0,0,0,270,1.5,10,10,0.1,15,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,18.8,100,100100,0,0,387,0,0,0,0,0,0,0,270,0.0,9,9,0.2,30,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,18.2,100,100100,3,202,362,0,0,0,0,0,0,0,270,0.0,5,5,0.6,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,18.8,94,100200,186,1364,365,97,404,42,10762,0,4687,186,250,0.0,3,3,10.4,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,17.3,69,100200,458,1364,377,322,754,69,37490,28480,8008,337,250,0.2,2,2,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,17.7,58,100200,699,1364,382,629,1176,26,82476,46659,3455,140,250,1.9,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,17.2,60,100200,889,1364,377,800,1171,36,105632,52876,4796,204,270,4.6,0,0,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.2,16.2,54,100100,1016,1364,378,914,1171,41,121806,55642,5486,236,270,4.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.7,16.7,54,100100,1070,1364,381,963,1173,43,128860,55507,5711,247,260,5.2,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.8,16.6,54,100000,1049,1364,382,944,1173,42,126161,55493,5585,241,270,5.8,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.6,15.7,48,99900,952,1364,402,722,844,133,87702,49738,16229,757,260,6.2,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,16.0,54,99900,787,1364,394,542,675,152,63408,41890,17894,832,270,6.3,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,15.6,52,99800,566,1364,393,351,535,128,39890,30615,14672,656,270,6.7,3,3,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.2,16.4,58,99800,304,1364,390,149,312,80,16471,9209,8836,370,270,5.6,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,17.1,64,99800,45,754,386,22,156,17,2375,0,1818,71,270,4.5,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,16.1,62,99800,0,0,379,0,0,0,0,0,0,0,260,3.4,2,2,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,16.2,62,99800,0,0,367,0,0,0,0,0,0,0,250,1.3,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,16.6,62,99800,0,0,369,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,15.9,61,99800,0,0,367,0,0,0,0,0,0,0,120,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,14.4,56,99800,0,0,364,0,0,0,0,0,0,0,120,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,14.5,60,99800,0,0,359,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.1,67,99800,0,0,354,0,0,0,0,0,0,0,100,2.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.6,73,99800,0,0,350,0,0,0,0,0,0,0,100,2.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.7,74,99800,0,0,350,0,0,0,0,0,0,0,90,2.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.1,78,99800,0,0,348,0,0,0,0,0,0,0,90,2.6,0,0,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.2,84,99800,0,0,343,0,0,0,0,0,0,0,110,2.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,16.8,84,99800,3,187,367,0,0,0,0,0,0,0,80,1.5,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,17.3,77,99900,182,1365,374,95,399,42,10508,0,4617,183,80,1.5,4,4,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.2,17.7,67,99900,454,1365,386,320,762,67,37378,27946,7806,328,120,1.5,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.8,17.0,55,100000,695,1365,399,536,891,82,64721,44251,9968,438,270,1.8,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.8,18.9,58,100000,885,1365,407,686,887,110,83364,47090,13469,619,270,4.1,3,3,16.0,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,18.8,60,99900,1012,1365,386,910,1172,41,120955,52572,5465,236,270,4.6,0,0,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.7,17.9,59,99900,1066,1365,399,758,717,198,90580,45280,23732,1143,260,4.7,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,18.4,61,99800,1043,1365,400,747,731,188,89334,45222,22574,1084,260,5.5,3,3,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,18.6,65,99800,946,1365,395,665,700,179,78654,43285,21290,1017,260,4.3,3,3,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,16.3,55,99800,781,1365,394,537,674,151,62819,41582,17752,825,280,6.1,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.8,64,99800,560,1365,390,338,502,133,38274,28020,15060,675,270,5.7,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.7,17.5,64,99800,297,1365,388,156,380,73,17264,9582,8143,339,250,5.1,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.2,17.3,65,99800,42,724,386,20,190,14,2179,0,1549,60,250,4.5,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,18.2,75,99800,0,0,376,0,0,0,0,0,0,0,250,3.4,2,2,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.3,71,99800,0,0,363,0,0,0,0,0,0,0,250,1.9,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,17.8,74,99800,0,0,378,0,0,0,0,0,0,0,170,0.0,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.7,76,99900,0,0,376,0,0,0,0,0,0,0,170,0.2,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,17.2,74,99900,0,0,371,0,0,0,0,0,0,0,170,1.3,2,2,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.3,79,99900,0,0,354,0,0,0,0,0,0,0,170,0.0,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.9,82,100000,0,0,366,0,0,0,0,0,0,0,170,0.0,2,2,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.9,18.0,84,100000,0,0,370,0,0,0,0,0,0,0,60,0.0,3,3,15.9,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,18.1,89,100000,0,0,365,0,0,0,0,0,0,0,60,0.2,3,3,12.9,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,17.0,88,100000,0,0,365,0,0,0,0,0,0,0,60,1.5,5,5,12.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.9,88,100100,0,0,364,0,0,0,0,0,0,0,60,0.0,5,5,10.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.8,93,100200,2,172,387,0,0,0,0,0,0,0,90,0.2,9,9,1.0,7620,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.9,94,100200,179,1365,373,73,196,47,7967,0,5183,208,100,0.5,7,7,3.5,7620,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,18.1,93,100300,451,1365,374,227,307,126,25172,15761,14004,618,120,2.4,7,7,4.4,30,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,18.4,83,100300,691,1365,382,418,483,174,47488,30683,19829,924,120,0.0,6,6,2.9,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,18.0,69,100300,881,1365,385,654,807,133,78392,46081,16031,746,240,0.0,3,3,6.0,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.8,73,100300,1007,1365,385,695,667,204,82248,43180,24194,1168,240,4.7,5,5,8.2,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.8,73,100300,1061,1365,385,749,706,201,89381,44936,24061,1160,260,5.1,5,5,10.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.8,73,100300,1038,1365,399,602,387,308,69268,29443,35648,1776,260,6.2,8,8,9.8,6096,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,17.7,73,100300,941,1365,384,653,680,184,77063,43174,21863,1046,260,6.1,5,5,11.5,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,17.2,76,100300,775,1365,378,496,556,180,57093,36268,20840,981,260,5.1,5,5,13.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.2,78,100300,553,1365,375,312,410,146,34954,24203,16408,740,270,5.1,5,5,14.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,17.2,80,100300,291,1365,374,136,271,78,14929,7247,8628,361,260,4.8,5,5,13.4,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.2,81,100300,39,694,372,17,135,13,1855,0,1443,55,260,4.7,5,5,13.3,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.1,83,100300,0,0,373,0,0,0,0,0,0,0,270,4.7,6,6,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.1,87,100400,0,0,399,0,0,0,0,0,0,0,250,3.7,10,10,16.1,274,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,16.2,83,100400,0,0,386,0,0,0,0,0,0,0,260,4.3,9,9,16.1,316,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.6,82,100500,0,0,375,0,0,0,0,0,0,0,260,4.6,8,8,16.1,335,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.7,85,100500,0,0,362,0,0,0,0,0,0,0,260,4.1,6,6,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.5,86,100500,0,0,378,0,0,0,0,0,0,0,270,3.0,9,9,16.1,305,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100500,0,0,369,0,0,0,0,0,0,0,270,2.7,8,8,16.1,305,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100500,0,0,356,0,0,0,0,0,0,0,280,2.9,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.9,83,100500,0,0,378,0,0,0,0,0,0,0,250,1.3,9,9,16.1,335,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,100600,0,0,371,0,0,0,0,0,0,0,250,0.0,8,8,16.0,488,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,100600,0,0,379,0,0,0,0,0,0,0,210,1.6,9,9,16.1,488,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,14.4,78,100700,2,158,380,0,0,0,0,0,0,0,210,2.0,9,9,16.1,491,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,14.3,74,100700,175,1366,383,60,111,45,6555,0,5008,200,210,1.3,9,9,16.1,525,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.9,70,100700,447,1366,377,212,251,130,23418,14005,14406,634,250,0.5,8,8,16.1,579,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,13.8,67,100800,687,1366,366,423,509,167,48366,33952,19165,886,250,2.6,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.3,63,100800,877,1366,368,548,509,221,63328,37184,25690,1237,280,2.6,5,5,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.9,64,100800,1002,1366,371,645,545,245,75381,39903,28768,1405,250,4.7,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.9,64,100700,1056,1366,371,734,677,211,87394,46249,25246,1218,270,5.5,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,14.0,64,100600,1032,1366,372,731,711,193,87352,47401,23210,1113,260,4.2,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,14.4,66,100600,935,1366,372,647,675,185,76448,44975,21971,1048,260,5.1,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,14.5,66,100600,769,1366,372,508,610,165,58990,39878,19232,897,260,5.2,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.0,73,100500,547,1366,367,315,441,139,35528,26261,15721,705,260,5.7,5,5,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,15.3,76,100600,284,1366,360,149,385,69,16565,9329,7715,319,260,5.7,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.6,79,100600,35,665,359,15,192,10,1669,0,1119,42,260,5.6,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.6,82,100600,0,0,356,0,0,0,0,0,0,0,260,4.5,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100600,0,0,359,0,0,0,0,0,0,0,260,4.0,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.7,85,100600,0,0,367,0,0,0,0,0,0,0,250,3.2,7,7,16.1,366,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100600,0,0,354,0,0,0,0,0,0,0,240,2.5,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100600,0,0,354,0,0,0,0,0,0,0,260,1.9,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100600,0,0,354,0,0,0,0,0,0,0,260,0.0,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,15.5,85,100600,0,0,358,0,0,0,0,0,0,0,260,0.0,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.0,87,100600,0,0,350,0,0,0,0,0,0,0,100,0.0,4,4,15.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,14.7,89,100500,0,0,344,0,0,0,0,0,0,0,100,0.5,3,3,14.5,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100500,0,0,367,0,0,0,0,0,0,0,50,2.1,8,8,12.0,366,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100500,0,0,388,0,0,0,0,0,0,0,90,2.2,10,10,12.3,366,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.0,83,100600,2,143,389,0,0,0,0,0,0,0,90,2.3,10,10,8.0,373,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.0,81,100600,172,1367,391,52,78,43,5771,0,4707,187,90,0.0,10,10,8.0,427,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,14.7,79,100600,443,1367,381,189,176,132,20862,9825,14620,645,90,0.7,9,9,8.0,446,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,14.2,67,100600,683,1367,391,338,251,213,37868,18637,23936,1128,270,2.0,9,9,8.0,2536,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.4,63,100600,872,1367,389,489,357,260,55642,27702,29835,1455,270,0.0,8,8,8.0,5019,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100500,998,1367,398,537,298,320,61326,24145,36743,1832,270,3.8,9,9,8.2,6167,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100500,1050,1367,390,633,441,295,73392,33882,34365,1702,260,5.6,8,8,9.8,6706,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100400,1027,1367,376,720,694,199,85759,46170,23760,1143,260,5.1,5,5,11.8,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100300,929,1367,376,644,679,183,76076,44743,21674,1033,270,5.0,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.1,67,100300,763,1367,398,398,290,236,44799,21991,26713,1281,250,4.5,9,9,16.1,6812,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.6,73,100200,541,1367,385,258,240,163,28578,15354,18151,824,260,4.1,8,8,16.0,7566,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.6,73,100200,278,1367,385,107,145,77,11685,3831,8487,354,280,3.8,8,8,16.0,7109,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.6,74,100200,32,635,392,13,72,11,1426,0,1242,47,280,3.5,9,9,16.1,6634,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.7,76,100200,0,0,382,0,0,0,0,0,0,0,250,2.6,8,8,16.1,6096,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,16.1,79,100300,0,0,368,0,0,0,0,0,0,0,250,2.5,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.2,82,100300,0,0,387,0,0,0,0,0,0,0,240,1.5,9,9,16.1,4572,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100300,0,0,380,0,0,0,0,0,0,0,250,1.5,8,8,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.6,84,100300,0,0,363,0,0,0,0,0,0,0,10,1.5,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.1,84,100300,0,0,357,0,0,0,0,0,0,0,70,1.3,3,3,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.0,87,100300,0,0,359,0,0,0,0,0,0,0,90,0.2,5,5,15.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100200,0,0,351,0,0,0,0,0,0,0,90,1.5,4,4,14.3,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.7,91,100200,0,0,349,0,0,0,0,0,0,0,80,1.5,3,3,12.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100200,0,0,349,0,0,0,0,0,0,0,90,1.5,3,3,12.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100200,0,0,355,0,0,0,0,0,0,0,50,2.0,5,5,12.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,16.1,93,100200,1,129,376,0,0,0,0,0,0,0,90,1.6,9,9,11.1,6202,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,16.1,88,100300,169,1368,380,59,126,44,6518,0,4832,193,80,1.9,9,9,9.7,5188,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.9,82,100300,439,1368,391,208,253,127,22987,13247,14070,619,140,0.5,9,9,9.7,3978,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,16.7,76,100300,679,1368,398,355,306,204,39821,21559,22928,1078,190,0.2,9,9,11.3,7187,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,16.7,71,100300,868,1368,394,507,412,245,57850,30311,28166,1369,190,2.1,8,8,11.0,8178,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,16.8,66,100200,993,1368,410,538,307,316,61431,24304,36238,1808,260,3.3,9,9,16.1,5663,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,17.1,66,100200,1045,1368,412,618,414,302,71342,31432,35075,1744,260,4.8,9,9,16.1,7010,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,16.2,65,100100,1022,1368,408,599,403,298,68955,30979,34536,1715,260,6.0,9,9,16.1,6974,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,16.6,68,100100,923,1368,407,503,318,288,57157,24798,32918,1626,250,4.6,9,9,16.1,6706,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,15.8,63,100000,757,1368,407,387,271,237,43470,20453,26767,1284,270,4.6,9,9,16.1,6706,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.2,73,100000,534,1368,395,257,250,160,28507,15452,17780,806,260,4.6,8,8,16.0,6759,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.9,16.9,73,100000,271,1368,393,105,153,75,11548,3622,8261,344,240,4.3,8,8,16.0,7216,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,16.7,74,100000,29,606,400,11,76,9,1219,0,1040,39,240,4.0,9,9,16.1,7264,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.7,76,100000,0,0,397,0,0,0,0,0,0,0,240,3.0,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.7,76,100100,0,0,397,0,0,0,0,0,0,0,250,2.3,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.7,76,100100,0,0,397,0,0,0,0,0,0,0,200,0.2,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,16.6,76,100100,0,0,396,0,0,0,0,0,0,0,200,1.6,9,9,16.1,4572,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.2,76,100100,0,0,394,0,0,0,0,0,0,0,220,2.5,9,9,16.1,4749,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.7,78,100100,0,0,394,0,0,0,0,0,0,0,220,1.3,9,9,16.1,6096,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.7,79,100100,0,0,394,0,0,0,0,0,0,0,70,0.2,9,9,16.1,6096,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.7,85,100000,0,0,387,0,0,0,0,0,0,0,70,2.1,9,9,16.1,6096,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.7,90,100000,0,0,382,0,0,0,0,0,0,0,70,2.1,9,9,16.1,6096,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.7,90,100000,0,0,340,0,0,0,0,0,0,0,40,2.1,0,0,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.7,90,100100,0,0,375,0,0,0,0,0,0,0,70,0.2,8,8,15.7,6096,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.7,87,100100,1,114,361,0,0,0,0,0,0,0,70,1.5,4,4,12.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,16.8,84,100100,165,1368,361,89,452,35,9966,0,3910,153,60,1.5,3,3,13.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,17.1,79,100200,435,1368,368,284,639,80,32443,25240,9230,392,90,1.3,3,3,14.7,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,16.7,71,100200,675,1368,381,438,592,146,50312,35804,16840,771,270,0.2,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,16.7,66,100200,864,1368,386,581,633,182,67885,41181,21331,1013,270,1.5,5,5,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,16.8,67,100200,988,1368,380,701,719,182,83459,45647,21740,1040,270,4.6,3,3,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,17.2,70,100100,1040,1368,385,718,667,211,85115,43856,25186,1219,250,4.7,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,17.2,69,100100,1016,1368,386,714,700,194,84894,44937,23187,1115,240,5.1,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,17.1,70,100000,917,1368,384,633,672,182,74493,43084,21553,1028,270,5.2,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,16.8,69,100000,751,1368,383,500,627,156,57993,38936,18196,845,260,5.8,5,5,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.2,73,100000,528,1368,381,310,468,129,34861,25753,14610,651,270,6.7,5,5,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,17.2,77,100000,265,1368,371,141,401,63,15588,6992,7000,287,270,5.9,3,3,16.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,17.2,81,100000,27,577,367,10,201,6,1142,0,699,26,270,5.1,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,17.2,84,100000,0,0,370,0,0,0,0,0,0,0,270,4.9,5,5,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,17.2,84,100100,0,0,367,0,0,0,0,0,0,0,260,3.0,4,4,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.1,87,100100,0,0,361,0,0,0,0,0,0,0,260,2.0,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.2,82,100100,0,0,357,0,0,0,0,0,0,0,250,1.6,2,2,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100100,0,0,346,0,0,0,0,0,0,0,240,1.9,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100100,0,0,346,0,0,0,0,0,0,0,240,0.3,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,16.9,87,100100,0,0,365,0,0,0,0,0,0,0,160,1.1,5,5,16.1,244,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,16.1,88,100100,0,0,359,0,0,0,0,0,0,0,160,1.3,5,5,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.7,91,100100,0,0,375,0,0,0,0,0,0,0,100,1.6,9,9,16.1,251,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100200,0,0,367,0,0,0,0,0,0,0,80,2.1,8,8,16.0,305,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.7,90,100200,0,0,376,0,0,0,0,0,0,0,90,1.3,9,9,15.7,324,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.1,86,100300,1,100,382,0,0,0,0,0,0,0,90,2.0,9,9,12.7,464,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.1,83,100300,162,1369,396,53,99,41,5784,0,4516,179,90,1.5,10,10,11.3,510,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,16.0,80,100300,431,1369,388,200,239,125,22109,12494,13877,609,90,1.6,9,9,11.5,464,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,15.6,73,100400,671,1369,393,331,250,208,36966,18127,23386,1099,90,2.0,9,9,12.9,532,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,100300,859,1369,410,401,183,287,45214,14702,32493,1596,260,1.7,10,10,12.0,647,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,15.7,68,100300,983,1369,385,588,436,275,67822,33011,31913,1573,260,3.3,7,7,14.1,701,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,15.5,66,100300,1035,1369,376,757,774,171,91192,48724,20751,988,260,3.7,4,4,14.7,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,15.1,64,100200,1011,1369,373,769,853,140,93836,51069,17129,803,260,4.7,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,15.5,64,100200,911,1369,376,695,860,123,84415,49910,14955,692,250,5.7,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.1,65,100200,745,1369,372,531,745,126,62641,43863,14867,678,260,5.7,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,16.1,73,100200,522,1369,368,327,564,112,37234,29423,12821,564,280,5.7,3,3,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,16.1,74,100200,259,1369,370,129,340,65,14275,6318,7210,296,270,6.0,4,4,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.0,75,100200,24,548,368,8,170,5,925,0,582,21,270,6.2,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.1,74,100200,0,0,358,0,0,0,0,0,0,0,280,6.0,2,2,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.6,79,100200,0,0,344,0,0,0,0,0,0,0,250,3.6,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.7,79,100200,0,0,345,0,0,0,0,0,0,0,240,0.2,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.1,82,100300,0,0,345,0,0,0,0,0,0,0,240,2.2,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.0,83,100300,0,0,343,0,0,0,0,0,0,0,240,2.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.6,82,100300,0,0,342,0,0,0,0,0,0,0,360,1.3,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.5,86,100300,0,0,337,0,0,0,0,0,0,0,160,0.2,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,14.9,84,100200,0,0,350,0,0,0,0,0,0,0,160,2.2,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100200,0,0,342,0,0,0,0,0,0,0,90,2.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100200,0,0,342,0,0,0,0,0,0,0,100,2.6,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,14.4,89,100300,0,0,343,0,0,0,0,0,0,0,90,2.7,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.5,86,100300,1,86,351,0,0,0,0,0,0,0,90,2.7,5,5,15.7,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,14.9,82,100400,158,1370,357,80,384,36,8920,0,4022,158,90,0.2,5,5,13.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,14.3,72,100400,427,1370,364,267,577,87,30350,24957,9939,423,160,1.6,5,5,14.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,13.9,65,100400,666,1370,370,444,638,134,51454,38800,15556,705,160,2.2,5,5,13.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.4,63,100400,855,1370,389,492,396,245,56154,30067,28106,1362,280,3.1,8,8,16.0,853,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,14.5,64,100300,979,1370,375,645,590,224,75594,41702,26377,1279,260,4.7,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.0,66,100300,1030,1370,398,577,343,319,66177,27499,36837,1837,250,5.7,9,9,16.1,5019,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,15.0,65,100200,1005,1370,390,614,465,273,71057,35102,31795,1566,240,5.6,8,8,16.1,6096,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,14.9,64,100200,906,1370,378,640,716,166,75823,45962,19798,935,260,4.9,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,14.5,66,100200,739,1370,372,482,596,161,55777,38721,18705,868,260,3.9,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.0,70,100200,515,1370,384,250,260,152,27745,16123,16964,763,270,6.2,8,8,16.0,4572,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,15.0,72,100200,252,1370,382,96,145,69,10520,2989,7612,314,270,6.2,8,8,16.0,4572,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.9,72,100200,21,520,389,7,73,6,798,0,669,24,270,6.3,9,9,16.1,4572,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.0,69,100200,0,0,379,0,0,0,0,0,0,0,260,6.7,8,8,16.1,4572,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,14.5,73,100300,0,0,364,0,0,0,0,0,0,0,260,6.5,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.5,79,100300,0,0,378,0,0,0,0,0,0,0,260,4.8,8,8,16.1,4572,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.0,79,100300,0,0,356,0,0,0,0,0,0,0,270,6.6,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.0,81,100300,0,0,359,0,0,0,0,0,0,0,270,6.1,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.9,81,100300,0,0,358,0,0,0,0,0,0,0,280,5.3,5,5,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.8,77,100300,0,0,355,0,0,0,0,0,0,0,260,2.6,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.9,74,100300,0,0,374,0,0,0,0,0,0,0,310,2.6,9,9,16.1,457,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,100300,0,0,359,0,0,0,0,0,0,0,360,2.3,7,7,16.1,457,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100300,0,0,352,0,0,0,0,0,0,0,20,0.0,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.4,84,100300,0,0,347,0,0,0,0,0,0,0,90,1.5,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,100300,0,72,350,0,0,0,0,0,0,0,50,1.5,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.0,81,100300,155,1371,353,73,314,38,8073,0,4175,164,50,1.3,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,14.3,77,100400,423,1371,358,254,522,93,28740,23339,10566,452,220,0.2,5,5,15.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,13.8,71,100400,662,1371,375,354,331,194,39727,23642,21882,1020,220,1.5,8,8,14.7,4267,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,100400,850,1371,368,562,606,187,65578,41897,21875,1037,280,1.5,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.8,63,100400,974,1371,385,560,383,288,64306,30274,33301,1645,270,6.0,8,8,16.1,4267,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.4,61,100300,1025,1371,371,737,745,181,88463,49005,21764,1038,250,4.7,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,14.3,65,100200,999,1371,372,718,742,177,85912,48208,21248,1012,250,5.3,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.9,64,100200,900,1371,368,653,767,150,78000,48219,17973,842,270,6.6,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.8,65,100200,732,1371,363,519,737,125,61193,44107,14833,674,270,6.1,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.8,61,100100,509,1371,362,326,599,104,37326,31415,11906,518,260,5.7,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.8,63,100100,246,1371,362,128,382,59,14176,6440,6588,268,280,6.5,4,4,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,12.9,67,100100,19,491,361,6,191,3,713,0,395,14,280,7.0,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.2,70,100100,0,0,359,0,0,0,0,0,0,0,260,5.2,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100200,0,0,356,0,0,0,0,0,0,0,270,6.1,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100200,0,0,356,0,0,0,0,0,0,0,270,5.5,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.9,71,100200,0,0,377,0,0,0,0,0,0,0,270,4.0,9,9,16.1,4572,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.2,72,100200,0,0,378,0,0,0,0,0,0,0,260,3.0,9,9,16.1,4177,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,12.8,71,100200,0,0,377,0,0,0,0,0,0,0,260,1.9,9,9,16.1,1761,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,12.8,73,100100,0,0,374,0,0,0,0,0,0,0,260,0.0,9,9,16.1,6096,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.8,80,100000,0,0,367,0,0,0,0,0,0,0,260,0.0,9,9,16.1,6096,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.8,78,100000,0,0,369,0,0,0,0,0,0,0,340,0.0,9,9,16.1,5704,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100000,0,0,358,0,0,0,0,0,0,0,340,0.0,8,8,16.0,2225,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.4,81,100100,0,0,369,0,0,0,0,0,0,0,340,0.6,9,9,15.6,809,9,999999999,240,0.0000,0,88,999.000,13.0,1.0 +2012,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,16.1,13.8,86,100100,0,59,367,0,0,0,0,0,0,0,70,2.3,9,9,15.5,1219,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.3,83,100100,151,1372,367,50,107,38,5530,0,4243,167,70,0.0,9,9,11.5,1396,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.2,77,100100,419,1372,372,180,184,124,19822,9862,13690,598,70,0.0,9,9,13.3,2991,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,12.7,73,100200,658,1372,373,311,217,207,34746,16177,23263,1089,280,0.2,9,9,16.1,4841,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.7,61,100200,845,1372,374,475,367,249,54155,28843,28566,1383,280,1.6,8,8,16.0,4159,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,11.0,58,100200,969,1372,382,503,263,317,57356,22299,36375,1807,280,2.8,9,9,16.1,1064,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.9,10.7,52,100100,1019,1372,388,618,453,281,71736,35967,32842,1617,220,4.3,9,9,16.1,1468,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,11.3,59,100100,994,1372,382,567,370,299,65197,30200,34586,1711,240,5.8,9,9,16.1,2653,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,12.2,62,100100,894,1372,376,545,472,237,62808,35726,27506,1332,270,6.5,8,8,16.1,884,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,12.5,64,100100,726,1372,384,369,271,226,41516,20858,25522,1212,270,6.0,9,9,16.1,2839,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.7,61,100100,503,1372,360,305,517,115,34547,28758,13092,574,270,5.7,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,11.7,62,100100,240,1372,366,105,230,65,11531,4445,7125,291,280,4.9,7,7,16.0,7620,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,11.8,65,100100,17,463,377,5,115,4,589,0,421,15,280,4.2,9,9,16.1,5873,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,10.6,66,100100,0,0,355,0,0,0,0,0,0,0,70,2.5,7,7,16.1,2286,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,10.6,68,100200,0,0,346,0,0,0,0,0,0,0,80,1.6,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,10.6,70,100200,0,0,343,0,0,0,0,0,0,0,80,2.5,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.6,72,100300,0,0,341,0,0,0,0,0,0,0,90,2.0,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.7,73,100300,0,0,341,0,0,0,0,0,0,0,90,1.6,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,15.0,1.0 +2012,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,15.6,11.1,75,100300,0,0,341,0,0,0,0,0,0,0,50,2.6,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,11.1,76,100300,0,0,340,0,0,0,0,0,0,0,50,2.5,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,11.0,82,100300,0,0,334,0,0,0,0,0,0,0,80,2.0,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,10.6,78,100400,0,0,335,0,0,0,0,0,0,0,40,1.6,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.6,84,100400,0,0,330,0,0,0,0,0,0,0,110,2.1,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.0,77,100500,0,0,332,0,0,0,0,0,0,0,50,3.3,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,10.1,77,100600,0,46,333,0,0,0,0,0,0,0,120,1.6,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,10.7,77,100600,148,1372,337,74,137,60,7879,683,6343,259,70,2.5,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,11.2,69,100700,415,1372,368,200,274,117,22191,14577,13061,567,110,2.2,9,9,16.1,1344,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.8,66,100800,654,1372,376,351,339,190,39464,24467,21419,994,110,3.0,9,9,15.7,1793,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.2,70,100800,841,1372,366,476,376,245,54208,29291,28105,1358,10,2.1,8,8,12.0,1524,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,11.0,54,100800,964,1372,366,662,664,196,78340,46519,23300,1115,50,2.7,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,10.7,50,100800,1014,1372,392,615,453,280,71281,35941,32616,1605,260,4.0,9,9,16.1,4399,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,11.2,55,100800,988,1372,379,663,619,217,78075,44641,25670,1239,270,6.6,8,8,16.1,5400,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.2,59,100800,888,1372,367,621,702,167,73528,46701,19891,937,250,5.7,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.2,59,100800,720,1372,388,369,280,222,41495,21460,25117,1190,270,5.9,9,9,16.1,2286,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.2,61,100800,497,1372,377,250,298,142,27816,18300,15897,708,250,7.7,8,8,16.0,2277,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.7,12.5,63,100800,234,1372,376,95,182,64,10380,3171,7009,286,270,7.4,8,8,16.0,2201,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,12.9,67,100800,15,436,375,4,91,3,476,0,357,12,270,7.1,8,8,16.1,2134,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.2,72,100800,0,0,357,0,0,0,0,0,0,0,280,6.2,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.6,69,100900,0,0,356,0,0,0,0,0,0,0,270,6.3,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.2,63,100900,0,0,352,0,0,0,0,0,0,0,270,6.1,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.7,66,100900,0,0,349,0,0,0,0,0,0,0,340,1.5,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.6,67,100900,0,0,347,0,0,0,0,0,0,0,230,1.3,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.1,65,100900,0,0,346,0,0,0,0,0,0,0,230,0.0,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,11.1,68,100900,0,0,339,0,0,0,0,0,0,0,50,0.2,2,2,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.2,76,100800,0,0,322,0,0,0,0,0,0,0,50,2.0,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.7,81,100900,0,0,320,0,0,0,0,0,0,0,80,1.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.7,84,100900,0,0,336,0,0,0,0,0,0,0,80,1.5,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.7,84,100900,0,0,317,0,0,0,0,0,0,0,80,2.1,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.7,83,101000,0,33,332,0,0,0,0,0,0,0,90,2.0,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,11.8,77,101000,144,1373,338,79,470,30,8850,0,3322,128,70,1.6,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,12.2,72,101000,411,1373,351,256,579,83,29157,24652,9479,401,90,2.3,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,12.1,64,101000,649,1373,360,441,675,122,51336,40395,14276,640,330,0.2,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,11.7,55,101000,836,1373,369,588,716,152,69582,46740,18079,842,330,1.5,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,12.2,54,100900,959,1373,373,674,707,181,80155,47711,21605,1028,260,3.8,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,12.1,53,100900,1009,1373,374,747,801,158,90345,51550,19238,908,260,5.6,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,11.8,54,100800,983,1373,371,704,740,174,84276,49410,20959,996,270,5.1,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,12.2,57,100700,882,1373,369,605,668,176,71286,45299,20852,986,280,5.1,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,12.3,58,100600,714,1373,369,465,595,156,53718,39118,18052,831,270,5.2,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,13.3,63,100600,491,1373,368,290,487,116,32731,26436,13161,577,260,5.7,5,5,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,13.3,64,100600,228,1373,367,114,352,56,12638,4283,6200,251,260,5.1,5,5,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.4,66,100600,13,408,365,3,292,0,433,0,26,1,260,4.7,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,14.6,76,100600,0,0,359,0,0,0,0,0,0,0,270,5.0,4,4,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.0,83,100600,0,0,354,0,0,0,0,0,0,0,270,3.9,2,2,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.6,81,100600,0,0,342,0,0,0,0,0,0,0,270,2.7,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.7,82,100600,0,0,342,0,0,0,0,0,0,0,270,2.7,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.0,84,100600,0,0,342,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.5,84,100600,0,0,339,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100600,0,0,336,0,0,0,0,0,0,0,270,0.0,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.9,84,100500,0,0,336,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.3,86,100500,0,0,331,0,0,0,0,0,0,0,340,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100500,0,0,330,0,0,0,0,0,0,0,340,0.0,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100600,0,0,333,0,0,0,0,0,0,0,340,0.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.3,83,100600,0,19,347,0,0,0,0,0,0,0,340,1.3,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.7,77,100600,141,1374,346,78,482,28,8717,0,3186,123,340,0.0,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.5,12.1,55,100600,407,1374,350,366,1203,10,48819,25665,1280,46,340,0.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.7,11.0,42,100600,645,1374,365,580,1186,23,76260,50475,3071,122,270,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.7,10.0,35,100500,831,1374,373,748,1181,33,98851,58500,4412,184,270,1.6,0,0,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,11.3,39,100500,954,1374,374,858,1180,39,114098,59802,5149,220,270,2.8,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,12.9,46,100400,1003,1374,371,903,1181,40,120404,59094,5395,232,270,4.7,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,14.0,50,100400,977,1374,370,879,1180,40,116874,57818,5280,226,280,5.7,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,15.1,55,100300,876,1374,371,788,1180,36,104034,55173,4712,199,270,5.9,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,15.5,59,100300,708,1374,366,637,1183,27,83568,49665,3544,144,270,7.1,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,14.4,55,100200,484,1374,365,413,1103,24,52458,34340,3108,121,270,6.7,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,14.1,56,100200,222,1374,361,165,902,19,19781,0,2300,86,260,5.9,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,13.8,57,100200,12,381,359,2,190,0,273,0,55,2,260,5.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,12.9,54,100200,0,0,357,0,0,0,0,0,0,0,260,4.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,14.1,61,100200,0,0,356,0,0,0,0,0,0,0,270,4.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.4,67,100200,0,0,355,0,0,0,0,0,0,0,80,3.4,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,13.8,61,100200,0,0,353,0,0,0,0,0,0,0,70,1.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.5,13.2,59,100200,0,0,352,0,0,0,0,0,0,0,70,2.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,12.7,62,100200,0,0,345,0,0,0,0,0,0,0,70,2.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,12.1,58,100100,0,0,346,0,0,0,0,0,0,0,90,2.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,11.0,55,100100,0,0,344,0,0,0,0,0,0,0,60,1.6,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,9.9,52,100100,0,0,341,0,0,0,0,0,0,0,80,2.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,9.4,51,100100,0,0,340,0,0,0,0,0,0,0,100,0.0,0,0,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,8.3,48,100100,0,0,337,0,0,0,0,0,0,0,100,1.9,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,8.3,47,100100,0,6,360,0,0,0,0,0,0,0,100,0.0,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.5,8.3,43,100200,137,1375,367,67,347,32,7425,0,3588,139,100,0.0,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.7,8.3,35,100200,403,1375,383,262,648,73,30167,26777,8372,349,270,0.0,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.0,8.1,30,100200,640,1375,395,457,761,102,53922,44542,12112,534,270,0.2,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,29.4,6.7,24,100200,826,1375,420,537,581,188,62557,42544,22005,1038,270,1.9,8,8,16.0,7620,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.2,11.6,40,100100,949,1375,395,605,539,233,70445,40188,27299,1323,270,4.6,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.7,10.7,37,100100,998,1375,396,663,603,225,77975,44165,26650,1290,260,4.5,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,12.0,40,100000,971,1375,395,646,608,217,75927,43708,25599,1236,250,4.3,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,14.1,49,100000,870,1375,389,639,793,137,76504,48571,16470,764,270,5.6,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,12.4,44,99900,702,1375,386,486,699,129,56846,42802,15098,684,270,5.2,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.4,13.9,52,99900,478,1375,388,270,430,121,30295,23432,13585,597,280,5.7,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.6,13.9,55,99900,216,1375,384,103,305,55,11310,2833,6058,245,270,4.9,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,13.9,58,99900,10,355,377,2,262,0,299,0,14,0,270,4.1,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,14.0,60,99900,0,0,367,0,0,0,0,0,0,0,280,3.9,2,2,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.1,69,99900,0,0,352,0,0,0,0,0,0,0,250,2.6,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.7,72,100000,0,0,352,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.2,76,100000,0,0,351,0,0,0,0,0,0,0,260,2.0,0,0,16.1,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.7,79,100000,0,0,351,0,0,0,0,0,0,0,140,1.3,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.6,81,100000,0,0,348,0,0,0,0,0,0,0,140,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.8,16.0,79,100000,0,0,362,0,0,0,0,0,0,0,70,0.0,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.5,84,99900,0,0,353,0,0,0,0,0,0,0,70,0.2,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.3,81,99900,0,0,350,0,0,0,0,0,0,0,70,1.5,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,14.0,83,99800,0,0,346,0,0,0,0,0,0,0,90,1.5,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.5,84,99900,0,0,359,0,0,0,0,0,0,0,90,0.0,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.2,83,99900,0,0,359,0,0,0,0,0,0,0,250,0.4,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.9,94,99900,134,1369,359,68,387,30,7490,0,3327,129,250,2.8,5,5,8.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,16.9,88,100000,398,1375,355,256,626,74,29153,22084,8501,357,260,0.0,2,2,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,14.0,53,100000,636,1375,366,572,1189,23,75136,47404,2965,118,260,0.0,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.2,10.6,35,99900,822,1375,377,739,1182,33,97588,57837,4340,181,260,0.0,0,0,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,29.0,10.9,33,99900,943,1375,386,848,1180,39,112646,59979,5126,218,260,3.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.2,13.9,50,99800,992,1375,371,893,1182,40,118904,58120,5329,229,260,5.2,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,17.9,73,99700,966,1375,380,652,635,206,76496,41731,24324,1174,250,5.6,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.2,15.3,58,99600,865,1375,383,561,576,199,65120,39586,23246,1110,270,5.1,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,16.8,69,99600,696,1375,375,486,715,124,56749,40548,14496,657,260,5.0,2,2,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,13.9,56,99500,472,1375,361,421,1181,15,55120,33236,1964,74,260,4.1,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,15.4,63,99500,210,1375,372,116,466,45,12957,859,5037,201,260,4.1,2,2,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,16.9,72,99600,9,329,377,1,93,0,135,0,56,2,260,4.1,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.3,84,99600,0,0,356,0,0,0,0,0,0,0,270,3.9,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.2,84,99600,0,0,355,0,0,0,0,0,0,0,250,2.1,0,0,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,17.8,81,99600,0,0,355,0,0,0,0,0,0,0,350,1.9,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,17.7,80,99600,0,0,355,0,0,0,0,0,0,0,350,0.0,0,0,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.5,17.2,77,99600,0,0,356,0,0,0,0,0,0,0,50,0.2,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,17.1,83,99500,0,0,349,0,0,0,0,0,0,0,50,1.3,0,0,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.9,16.9,78,99500,0,0,353,0,0,0,0,0,0,0,50,0.0,0,0,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,18.0,92,99600,0,0,347,0,0,0,0,0,0,0,60,0.0,0,0,15.9,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.1,86,99500,0,0,340,0,0,0,0,0,0,0,60,0.2,0,0,14.7,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.1,84,99600,0,0,343,0,0,0,0,0,0,0,60,2.1,0,0,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.8,75,99600,0,0,337,0,0,0,0,0,0,0,80,2.1,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,12.9,72,99600,0,0,355,0,0,0,0,0,0,0,90,1.9,5,5,15.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.4,14.0,67,99600,130,1356,368,65,387,29,7273,0,3204,124,130,0.2,5,5,14.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.7,14.7,57,99700,394,1376,383,275,762,57,32051,24137,6628,272,130,2.0,4,4,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.2,11.8,38,99700,631,1376,394,515,1009,52,63708,47184,6456,271,80,1.6,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,30.6,8.9,26,99700,817,1376,409,691,1069,57,87800,57011,7278,315,60,2.1,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,31.8,8.2,23,99700,938,1376,397,844,1182,38,112254,61804,5073,216,260,0.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.9,15.4,44,99600,987,1376,391,888,1182,40,118036,56630,5317,228,260,4.5,0,0,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.7,14.1,41,99600,960,1376,405,681,724,176,81001,47414,21027,1000,270,4.2,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.3,15.2,48,99600,859,1376,399,560,583,196,64975,39919,22843,1089,280,4.5,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.2,12.2,37,99600,690,1376,400,484,727,120,56869,43447,14116,635,280,4.2,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.2,12.2,39,99600,466,1376,395,290,566,98,33007,28154,11233,484,260,4.6,3,3,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,12.8,42,99600,204,1376,393,112,456,44,12477,1080,4945,196,260,4.3,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.8,13.6,47,99600,7,303,389,1,151,0,142,0,29,1,260,4.0,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,15.3,58,99600,0,0,382,0,0,0,0,0,0,0,270,3.5,3,3,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,12.7,46,99700,0,0,380,0,0,0,0,0,0,0,290,2.9,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,12.3,45,99700,0,0,367,0,0,0,0,0,0,0,290,1.5,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,13.3,50,99800,0,0,365,0,0,0,0,0,0,0,130,1.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,13.2,51,99800,0,0,363,0,0,0,0,0,0,0,130,1.9,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,12.7,50,99800,0,0,378,0,0,0,0,0,0,0,130,0.0,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,11.9,47,99900,0,0,377,0,0,0,0,0,0,0,60,0.4,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,10.3,44,100000,0,0,372,0,0,0,0,0,0,0,60,3.3,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,12.7,53,100100,0,0,372,0,0,0,0,0,0,0,120,5.0,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,16.7,73,100200,0,0,372,0,0,0,0,0,0,0,90,4.1,3,3,16.0,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,18.1,80,100300,0,0,383,0,0,0,0,0,0,0,100,4.2,6,6,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,18.9,81,100400,0,0,406,0,0,0,0,0,0,0,120,5.0,9,9,16.1,525,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.9,18.8,78,100500,127,1343,410,47,165,32,5170,0,3514,138,130,4.2,9,9,16.1,579,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,18.2,73,100600,390,1377,411,182,250,111,19958,11039,12227,530,120,4.6,9,9,16.1,589,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,17.8,71,100600,627,1377,411,302,240,193,33607,16314,21605,1006,150,4.6,9,9,16.1,739,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,17.8,69,100600,812,1377,405,430,303,251,48432,22627,28460,1380,130,3.6,8,8,16.0,1094,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,17.1,62,100600,933,1377,419,482,263,304,54582,20884,34585,1716,150,4.6,9,9,16.1,1059,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.7,16.6,57,100600,982,1377,422,585,433,276,67278,32541,31977,1578,150,5.0,9,9,16.1,1753,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.7,15.5,50,100500,954,1377,417,641,625,207,75109,42693,24420,1176,160,3.6,8,8,16.1,4877,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,15.1,49,100500,853,1377,402,624,788,136,74416,47503,16261,753,260,0.6,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,16.0,56,100500,684,1377,397,465,672,131,54015,39402,15269,693,260,5.0,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,15.6,56,100400,460,1377,394,268,471,110,30053,23451,12407,540,240,4.1,5,5,16.0,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.1,16.2,61,100400,198,1377,390,94,306,50,10341,562,5510,222,240,3.8,5,5,16.0,77777,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,16.8,68,100400,6,278,382,1,224,0,175,0,0,0,240,3.7,4,4,16.1,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,17.9,79,100400,0,0,373,0,0,0,0,0,0,0,240,4.0,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,18.9,87,100500,0,0,372,0,0,0,0,0,0,0,240,3.1,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,19.0,88,100500,0,0,371,0,0,0,0,0,0,0,260,3.1,3,3,16.1,77777,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,18.4,87,100500,0,0,369,0,0,0,0,0,0,0,270,3.2,3,3,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,18.4,87,100500,0,0,369,0,0,0,0,0,0,0,270,3.7,3,3,16.1,77777,9,999999999,340,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,18.8,90,100500,0,0,388,0,0,0,0,0,0,0,260,3.6,8,8,16.1,244,9,999999999,350,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,18.2,90,100500,0,0,368,0,0,0,0,0,0,0,270,3.4,4,4,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,17.8,90,100400,0,0,362,0,0,0,0,0,0,0,270,1.3,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,17.8,91,100300,0,0,361,0,0,0,0,0,0,0,270,0.0,3,3,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.8,93,100300,0,0,359,0,0,0,0,0,0,0,270,0.0,3,3,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.3,90,100300,0,0,359,0,0,0,0,0,0,0,190,0.2,3,3,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,18.2,95,100300,0,0,366,0,0,0,0,0,0,0,190,1.3,5,5,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,17.8,89,100400,124,1333,390,44,151,31,4873,0,3395,133,190,0.2,9,9,16.1,4860,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,18.0,83,100400,386,1378,390,198,344,102,21935,14276,11355,489,190,0.0,8,8,16.1,77777,9,999999999,329,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,17.8,78,100400,622,1378,380,410,630,126,47123,34829,14507,652,190,3.2,5,5,16.1,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,17.8,76,100400,807,1378,382,539,629,171,62541,39587,19883,935,270,4.1,5,5,16.0,77777,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,17.1,75,100300,928,1378,382,571,484,245,65672,34825,28309,1381,260,4.8,6,6,16.1,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,17.1,78,100200,976,1378,408,486,223,327,55032,18100,37327,1867,250,5.8,10,10,16.1,305,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.7,78,100200,949,1378,405,486,254,311,55072,20352,35500,1766,260,6.5,10,10,16.1,305,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,16.7,78,100100,847,1378,405,434,265,271,48917,20586,30743,1503,250,4.8,10,10,16.1,305,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,16.7,79,100100,678,1378,405,342,272,208,38250,19428,23396,1101,250,6.1,10,10,16.1,305,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,16.7,81,100100,455,1378,402,199,192,135,21894,10577,14978,663,250,5.1,10,10,16.0,300,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.9,86,100000,193,1378,399,64,101,50,7022,19,5487,221,260,4.7,10,10,16.1,260,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100000,5,253,399,0,0,0,0,0,0,0,260,4.1,10,10,16.1,244,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.7,85,100100,0,0,398,0,0,0,0,0,0,0,240,3.9,10,10,16.1,244,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100100,0,0,396,0,0,0,0,0,0,0,250,2.0,10,10,16.1,251,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100100,0,0,399,0,0,0,0,0,0,0,320,1.3,10,10,15.9,305,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100100,0,0,399,0,0,0,0,0,0,0,320,0.2,10,10,14.7,312,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.6,84,100100,0,0,399,0,0,0,0,0,0,0,110,1.5,10,10,15.9,366,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100100,0,0,398,0,0,0,0,0,0,0,110,1.5,10,10,14.3,366,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100000,0,0,398,0,0,0,0,0,0,0,190,1.6,10,10,12.5,373,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.1,81,100000,0,0,398,0,0,0,0,0,0,0,190,2.0,10,10,9.7,427,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.2,82,100000,0,0,398,0,0,0,0,0,0,0,160,1.7,10,10,9.5,427,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,16.7,84,100000,0,0,399,0,0,0,0,0,0,0,160,3.1,10,10,8.0,427,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,16.1,82,100000,0,0,398,0,0,0,0,0,0,0,150,2.3,10,10,11.5,419,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.2,85,100000,0,0,395,0,0,0,0,0,0,0,150,0.2,10,10,11.9,373,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,17.1,93,100000,121,1321,393,34,73,28,3761,0,3065,119,90,2.7,10,10,5.3,455,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,16.7,90,100100,381,1378,393,143,122,110,15743,5452,12097,523,80,2.7,10,10,9.0,525,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.8,88,100100,617,1378,396,261,148,195,28971,10303,21706,1009,100,3.0,10,10,14.6,561,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,16.7,87,100100,802,1378,396,359,160,266,40175,12495,29914,1454,120,3.1,10,10,16.0,530,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,16.1,75,100100,923,1378,405,450,213,308,50883,17247,35020,1737,140,2.4,10,10,16.1,882,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,15.1,68,100000,971,1378,407,538,338,300,61400,26903,34447,1708,110,2.7,10,10,16.1,989,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,99900,943,1378,410,563,440,262,64707,33133,30262,1483,160,3.5,10,10,16.1,1097,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,15.6,68,99900,841,1378,410,465,350,252,52765,26663,28705,1393,150,3.1,10,10,16.1,1045,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,15.5,68,99800,673,1378,398,376,384,188,42300,26508,21291,992,180,2.6,9,9,16.1,707,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,15.6,71,99800,449,1378,407,194,187,133,21422,10368,14769,652,140,4.1,10,10,16.0,914,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,15.6,74,99800,187,1378,404,62,100,48,6790,0,5310,213,160,3.8,10,10,16.0,914,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.6,76,99800,4,229,401,0,0,0,0,0,0,0,160,3.5,10,10,16.1,921,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.8,77,99900,0,0,401,0,0,0,0,0,0,0,140,2.6,10,10,16.1,914,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.5,78,99900,0,0,397,0,0,0,0,0,0,0,140,0.2,10,10,16.1,828,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.0,76,99900,0,0,386,0,0,0,0,0,0,0,110,2.0,9,9,16.1,657,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,15.0,76,100000,0,0,385,0,0,0,0,0,0,0,110,1.0,9,9,16.1,898,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.1,76,100000,0,0,397,0,0,0,0,0,0,0,160,2.6,10,10,16.1,640,9,999999999,270,0.0000,0,88,999.000,3.0,1.0 +2012,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,19.3,15.6,79,100000,0,0,397,0,0,0,0,0,0,0,150,2.5,10,10,16.1,636,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.6,81,100000,0,0,395,0,0,0,0,0,0,0,150,2.1,10,10,16.1,627,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.6,81,99900,0,0,395,0,0,0,0,0,0,0,110,1.9,10,10,16.1,747,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.6,82,99900,0,0,394,0,0,0,0,0,0,0,90,0.2,10,10,16.1,643,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,99900,0,0,392,0,0,0,0,0,0,0,90,2.1,10,10,16.0,671,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100000,0,0,392,0,0,0,0,0,0,0,100,2.9,10,10,16.1,641,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.7,85,100000,0,0,380,0,0,0,0,0,0,0,120,1.9,9,9,16.1,453,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.1,88,100000,118,1310,381,41,144,29,4506,0,3159,123,120,2.1,9,9,16.1,679,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.8,82,100100,377,1379,384,169,226,108,18638,10123,11898,513,110,2.1,9,9,16.1,1277,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,15.7,79,100100,613,1379,387,299,253,187,33315,17445,20914,967,90,2.0,9,9,16.1,559,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,15.6,76,100100,797,1379,382,437,346,237,49447,25963,26991,1298,90,1.5,8,8,16.0,1128,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,15.6,73,100100,918,1379,371,607,604,205,70816,41391,24035,1155,240,3.5,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,15.6,72,100100,965,1379,372,696,756,167,83079,47696,20021,949,210,3.3,5,5,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,15.6,67,100000,937,1379,376,745,946,102,91983,52286,12649,578,250,5.1,4,4,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,15.6,71,100000,836,1379,367,650,907,100,79038,49794,12258,555,270,5.2,3,3,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.5,76,100000,667,1379,367,455,683,125,52890,39502,14561,657,260,5.8,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,15.0,76,100000,443,1379,378,214,271,127,23656,14643,14078,619,260,6.2,8,8,16.0,427,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,15.0,77,100000,182,1379,366,87,136,69,9274,1645,7405,306,270,5.3,6,6,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,15.0,79,100000,3,206,361,0,0,0,0,0,0,0,260,4.9,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.0,81,100000,0,0,359,0,0,0,0,0,0,0,260,3.2,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,14.9,81,100100,0,0,371,0,0,0,0,0,0,0,240,3.0,8,8,16.1,457,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100100,0,0,356,0,0,0,0,0,0,0,200,2.2,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.3,78,100100,0,0,390,0,0,0,0,0,0,0,260,3.6,10,10,16.1,870,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100100,0,0,389,0,0,0,0,0,0,0,260,3.6,10,10,16.1,1097,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100100,0,0,389,0,0,0,0,0,0,0,250,3.5,10,10,16.1,1025,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,14.0,77,100100,0,0,388,0,0,0,0,0,0,0,220,2.1,10,10,16.1,1057,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100100,0,0,387,0,0,0,0,0,0,0,250,3.0,10,10,16.1,610,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100100,0,0,387,0,0,0,0,0,0,0,260,2.0,10,10,16.1,602,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100100,0,0,387,0,0,0,0,0,0,0,260,1.5,10,10,16.0,556,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.8,77,100100,0,0,376,0,0,0,0,0,0,0,180,3.0,9,9,16.1,617,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.2,74,100200,0,0,375,0,0,0,0,0,0,0,180,2.5,9,9,16.1,692,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.8,73,100300,115,1298,375,39,142,28,4345,0,3052,118,190,1.6,9,9,16.1,871,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,12.8,72,100300,372,1380,375,163,206,107,17917,9634,11837,509,170,2.3,9,9,16.1,1030,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.8,68,100400,608,1380,380,290,234,187,32323,16668,20964,967,230,0.4,9,9,16.1,1174,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,12.8,66,100400,792,1380,375,433,341,237,48956,26344,26961,1294,220,3.6,8,8,16.0,864,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,11.7,56,100400,912,1380,389,494,318,284,56302,26021,32556,1599,180,4.3,9,9,16.1,984,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,11.9,56,100300,960,1380,390,576,446,266,66417,34865,30842,1511,210,6.1,9,9,16.1,1213,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,12.8,63,100300,932,1380,386,559,447,257,64274,34452,29710,1450,220,4.9,9,9,16.1,757,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,13.2,63,100200,830,1380,381,520,523,205,59866,37524,23747,1131,270,8.1,8,8,16.1,945,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,12.8,66,100300,661,1380,361,441,644,132,51027,39432,15352,694,270,7.2,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.8,68,100300,437,1380,372,227,342,119,25224,18201,13234,577,260,7.2,8,8,16.0,1004,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,12.5,68,100300,177,1380,371,73,204,47,7974,0,5119,204,270,6.7,8,8,16.0,988,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,12.2,68,100300,3,183,368,0,0,0,0,0,0,0,270,6.1,8,8,16.1,975,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.1,69,100300,0,0,353,0,0,0,0,0,0,0,260,5.6,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.7,68,100300,0,0,373,0,0,0,0,0,0,0,270,4.6,9,9,16.1,1975,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,11.8,68,100300,0,0,366,0,0,0,0,0,0,0,260,4.1,8,8,16.1,823,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.8,68,100300,0,0,374,0,0,0,0,0,0,0,250,3.9,9,9,16.1,823,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.2,70,100300,0,0,385,0,0,0,0,0,0,0,260,2.5,10,10,16.1,860,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.2,70,100300,0,0,385,0,0,0,0,0,0,0,260,2.9,10,10,16.1,1226,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.7,73,100300,0,0,385,0,0,0,0,0,0,0,240,1.7,10,10,15.8,734,9,999999999,229,0.0000,0,88,999.000,8.0,1.0 +2012,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,16.8,15.0,89,100200,0,0,383,0,0,0,0,0,0,0,330,2.6,10,10,16.1,287,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.6,91,100200,0,0,379,0,0,0,0,0,0,0,80,2.3,10,10,13.0,356,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100200,0,0,360,0,0,0,0,0,0,0,100,2.1,8,8,16.0,1424,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,14.3,91,100300,0,0,376,0,0,0,0,0,0,0,90,1.6,10,10,15.7,797,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.6,85,100300,0,0,359,0,0,0,0,0,0,0,330,0.2,8,8,14.7,549,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,11.5,74,100300,112,1287,345,54,396,22,6103,0,2505,95,330,1.5,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,9.8,61,100400,368,1381,348,222,544,77,25149,21178,8753,366,290,1.7,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,8.1,53,100400,603,1381,349,381,568,133,43753,36208,15334,687,290,3.2,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,6.7,47,100400,787,1381,349,510,582,178,59194,42025,20768,971,240,3.6,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,7.5,47,100400,907,1381,348,636,707,171,75416,49265,20395,961,260,4.6,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,5.9,40,100300,954,1381,350,738,891,122,90548,56896,14984,690,260,4.5,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,7.9,47,100200,926,1381,350,730,929,106,90024,56723,13161,600,250,4.3,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,9.0,51,100200,824,1381,358,602,790,130,71985,50466,15655,718,250,5.8,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,10.0,53,100200,655,1381,361,458,726,113,53695,43293,13342,595,260,6.8,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,10.0,55,100200,432,1381,358,275,612,84,31479,27808,9635,408,260,7.2,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.1,10.9,59,100200,171,1381,358,93,455,37,10401,0,4095,160,260,7.5,5,5,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,11.8,64,100200,2,160,355,0,0,0,0,0,0,0,260,7.7,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.1,67,100200,0,0,347,0,0,0,0,0,0,0,280,7.5,2,2,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.6,65,100200,0,0,334,0,0,0,0,0,0,0,280,6.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.1,65,100200,0,0,332,0,0,0,0,0,0,0,280,6.5,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.1,65,100300,0,0,346,0,0,0,0,0,0,0,270,4.5,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.1,67,100300,0,0,344,0,0,0,0,0,0,0,260,4.3,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,11.1,68,100300,0,0,343,0,0,0,0,0,0,0,270,5.8,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,11.0,70,100300,0,0,341,0,0,0,0,0,0,0,260,3.0,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,10.6,71,100300,0,0,355,0,0,0,0,0,0,0,350,2.0,8,8,16.1,671,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.6,78,100300,0,0,335,0,0,0,0,0,0,0,50,1.6,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.6,78,100300,0,0,335,0,0,0,0,0,0,0,40,2.6,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,10.6,77,100400,0,0,336,0,0,0,0,0,0,0,40,2.7,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,10.6,75,100400,0,0,338,0,0,0,0,0,0,0,40,3.0,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,10.5,71,100500,109,1275,342,56,471,19,6374,0,2173,82,20,2.6,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,8.8,57,100600,363,1381,348,231,623,67,26432,22376,7722,319,20,2.7,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,4.6,38,100600,598,1381,352,410,699,107,47832,41990,12520,550,340,3.9,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,6.1,40,100600,782,1381,357,545,709,144,64326,47757,17034,783,260,6.2,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,9.0,48,100600,902,1381,357,665,804,140,80007,52191,16962,788,260,7.9,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,9.5,51,100500,949,1381,355,719,854,133,87472,54122,16194,752,260,9.1,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,9.9,52,100400,921,1381,352,730,944,101,90245,55959,12561,571,260,7.9,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,9.3,50,100400,819,1381,341,736,1187,33,97147,58841,4341,181,270,9.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,8.6,45,100400,650,1381,344,584,1191,24,76822,52484,3112,124,260,10.7,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,11.1,55,100400,426,1381,345,383,1207,11,50957,29216,1411,51,260,9.8,0,0,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,10.8,53,100400,166,1381,345,140,1125,4,18338,0,549,18,280,9.3,0,0,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,10.8,54,100400,2,139,344,0,0,0,0,0,0,0,280,8.4,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,10.7,55,100500,0,0,342,0,0,0,0,0,0,0,290,4.9,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,-0.5,25,100500,0,0,331,0,0,0,0,0,0,0,350,4.1,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,0.7,28,100500,0,0,330,0,0,0,0,0,0,0,330,8.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,1.2,30,100500,0,0,328,0,0,0,0,0,0,0,340,7.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,1.8,32,100600,0,0,327,0,0,0,0,0,0,0,330,5.8,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,2.1,33,100600,0,0,327,0,0,0,0,0,0,0,350,6.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,1.6,33,100600,0,0,324,0,0,0,0,0,0,0,310,6.9,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,0.6,30,100600,0,0,325,0,0,0,0,0,0,0,330,4.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,0.7,30,100500,0,0,325,0,0,0,0,0,0,0,320,4.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,1.1,31,100500,0,0,326,0,0,0,0,0,0,0,320,6.7,0,0,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,0.1,28,100500,0,0,327,0,0,0,0,0,0,0,330,7.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,0.7,29,100500,0,0,342,0,0,0,0,0,0,0,310,6.2,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,1.1,29,100600,105,1259,343,57,533,16,6528,0,1862,69,310,6.1,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.3,1.1,26,100600,359,1382,351,234,663,62,26995,24532,7163,293,330,5.3,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,1.1,24,100600,594,1382,356,436,822,83,51888,46350,9867,424,320,6.8,2,2,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,1.1,21,100600,777,1382,354,699,1189,31,92401,61845,4046,166,320,7.7,0,0,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.3,4.8,25,100500,897,1382,365,806,1186,37,106939,63203,4871,205,320,7.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,10.0,40,100400,944,1382,361,849,1188,38,112821,60916,5083,216,290,5.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,10.3,43,100300,915,1382,359,823,1187,37,109122,60246,4943,209,280,9.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,12.3,50,100300,813,1382,359,731,1187,33,96316,56467,4296,179,270,10.1,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,13.3,55,100200,644,1382,358,579,1192,23,75978,48593,3063,122,280,9.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,13.3,59,100200,421,1382,353,362,1133,17,46447,27113,2230,84,280,10.3,0,0,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,13.9,64,100200,161,1382,351,124,981,10,15293,0,1197,42,250,8.4,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.2,61,100200,1,118,349,0,0,0,0,0,0,0,250,6.5,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,4.4,28,100200,0,0,355,0,0,0,0,0,0,0,330,5.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,4.3,28,100200,0,0,352,0,0,0,0,0,0,0,330,5.8,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,3.9,29,100200,0,0,347,0,0,0,0,0,0,0,360,6.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,3.8,30,100300,0,0,344,0,0,0,0,0,0,0,20,4.9,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.2,3.3,29,100200,0,0,343,0,0,0,0,0,0,0,360,3.5,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,3.2,29,100300,0,0,343,0,0,0,0,0,0,0,360,2.7,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,3.1,31,100300,0,0,337,0,0,0,0,0,0,0,360,0.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,5.5,43,100200,0,0,328,0,0,0,0,0,0,0,60,0.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,4.9,43,100200,0,0,325,0,0,0,0,0,0,0,60,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,4.4,44,100200,0,0,320,0,0,0,0,0,0,0,60,2.1,0,0,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,4.5,44,100300,0,0,320,0,0,0,0,0,0,0,60,0.2,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,4.8,42,100400,0,0,326,0,0,0,0,0,0,0,60,1.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.2,3.2,33,100400,102,1242,334,82,1120,0,16706,0,0,0,60,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,2.1,27,100500,354,1383,341,319,1217,7,43096,21969,939,33,60,2.1,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.1,1.5,23,100500,589,1383,350,530,1198,20,70007,52145,2609,101,350,2.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.6,0.0,19,100500,772,1383,355,695,1191,30,91897,62144,3999,164,350,2.3,0,0,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.9,-2.8,13,100500,891,1383,363,802,1188,36,106651,66057,4798,202,350,0.0,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.4,-2.8,13,100400,938,1383,365,844,1188,38,112487,66851,5109,216,350,0.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,29.5,-2.8,12,100300,910,1383,371,818,1187,37,108817,66376,4953,209,350,1.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,29.9,-2.9,12,100200,807,1383,372,726,1188,32,96093,64112,4295,178,260,3.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,29.4,-3.6,11,100200,639,1383,369,575,1196,23,75957,57200,3003,119,240,3.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,29.4,-1.1,14,100100,415,1383,372,363,1161,14,47343,33984,1886,70,250,3.6,0,0,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.8,-3.2,12,100100,156,1383,374,91,555,29,10396,0,3270,125,320,3.6,1,1,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.1,-5.0,11,100100,1,97,377,0,0,0,0,0,0,0,320,3.6,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,-5.1,12,100200,0,0,365,0,0,0,0,0,0,0,320,3.6,2,2,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.5,-5.9,12,100200,0,0,347,0,0,0,0,0,0,0,340,3.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,-7.9,11,100200,0,0,339,0,0,0,0,0,0,0,350,4.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.0,-9.2,10,100200,0,0,336,0,0,0,0,0,0,0,10,2.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.9,-11.0,8,100200,0,0,338,0,0,0,0,0,0,0,330,2.5,0,0,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,-9.3,10,100100,0,0,348,0,0,0,0,0,0,0,10,1.3,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,-3.8,20,100100,0,0,335,0,0,0,0,0,0,0,10,0.0,2,2,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,-3.2,22,100000,0,0,320,0,0,0,0,0,0,0,50,0.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,-2.9,25,100000,0,0,313,0,0,0,0,0,0,0,50,2.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-3.9,21,100000,0,0,317,0,0,0,0,0,0,0,70,1.5,0,0,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,-3.5,24,100000,0,0,312,0,0,0,0,0,0,0,50,2.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,-5.0,19,100000,0,0,317,0,0,0,0,0,0,0,70,2.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.4,-5.0,17,100100,86,1072,325,60,972,0,12158,0,0,0,50,2.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.6,-5.1,14,100100,350,1383,340,314,1214,7,42391,23415,952,33,50,1.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.4,-6.2,11,100100,584,1383,351,525,1197,20,69410,54085,2599,101,50,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.3,-6.7,9,100100,767,1383,360,690,1191,30,91345,63827,3957,162,270,0.0,0,0,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,29.2,-6.7,9,100000,886,1383,364,797,1189,36,106024,66944,4763,200,270,0.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.7,4.2,22,100000,933,1383,371,839,1188,38,111637,64162,5038,214,270,4.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.7,-2.0,15,99900,904,1383,358,813,1188,37,108127,66053,4898,206,280,4.3,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.6,-0.7,17,99900,802,1383,359,719,1184,33,94963,63177,4345,180,270,5.6,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,-0.3,18,99800,633,1383,357,568,1191,23,74878,55751,3036,120,270,4.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.0,6.1,30,99800,410,1383,360,347,1104,20,44111,30438,2497,95,270,5.7,0,0,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,7.0,34,99800,152,1383,362,86,515,30,9695,0,3334,128,270,5.7,1,1,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.6,8.0,39,99800,0,78,366,0,0,0,0,0,0,0,270,5.6,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,9.5,48,99900,0,0,357,0,0,0,0,0,0,0,270,4.9,2,2,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,10.5,52,99900,0,0,344,0,0,0,0,0,0,0,260,3.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,10.1,51,100000,0,0,344,0,0,0,0,0,0,0,130,0.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,10.5,53,100000,0,0,344,0,0,0,0,0,0,0,130,2.5,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,9.3,52,100100,0,0,337,0,0,0,0,0,0,0,70,1.5,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,8.8,51,100100,0,0,336,0,0,0,0,0,0,0,60,1.6,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,8.3,55,100100,0,0,328,0,0,0,0,0,0,0,110,2.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,8.7,61,100100,0,0,322,0,0,0,0,0,0,0,100,2.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,11.8,73,100000,0,0,327,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.2,78,100100,0,0,326,0,0,0,0,0,0,0,100,0.0,0,0,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,10.3,70,100100,0,0,336,0,0,0,0,0,0,0,90,0.2,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,8.2,57,100100,0,0,341,0,0,0,0,0,0,0,90,1.9,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,6.9,50,100200,83,1053,341,47,722,4,5936,0,485,16,90,0.0,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.9,4.1,33,100200,345,1384,353,249,831,42,29453,22913,4930,195,90,0.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.6,1.5,24,100300,579,1384,363,448,920,63,54306,47595,7614,320,270,0.0,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.1,0.0,18,100300,762,1384,373,622,1009,67,77630,58199,8380,363,270,0.0,3,3,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.8,1.5,18,100200,881,1384,384,702,956,94,86978,59267,11634,522,270,0.5,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,12.9,49,100200,927,1384,381,703,857,129,85233,52135,15696,727,270,4.7,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.4,13.0,52,100200,899,1384,376,647,761,153,77086,48758,18349,859,280,5.1,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,10.4,43,100200,796,1384,375,546,679,155,63995,45298,18291,848,270,5.1,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,8.8,40,100200,628,1384,371,455,798,93,53930,44782,11101,485,270,5.0,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.3,7.8,37,100200,405,1384,369,275,723,64,31981,28201,7449,308,270,4.1,3,3,16.0,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.5,9.6,44,100200,147,1384,368,84,533,28,9534,0,3149,121,270,3.6,3,3,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,11.0,51,100200,0,60,365,0,0,0,0,0,0,0,270,3.0,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,10.6,53,100200,0,0,356,0,0,0,0,0,0,0,280,2.3,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,10.8,54,100300,0,0,344,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,12.0,60,100300,0,0,344,0,0,0,0,0,0,0,150,1.5,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,10.5,53,100400,0,0,344,0,0,0,0,0,0,0,150,1.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.2,9.5,53,100400,0,0,337,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,10.3,62,100500,0,0,346,0,0,0,0,0,0,0,40,0.3,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,12.1,70,100500,0,0,352,0,0,0,0,0,0,0,40,2.0,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.2,73,100500,0,0,343,0,0,0,0,0,0,0,40,1.3,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.6,81,100400,0,0,339,0,0,0,0,0,0,0,110,0.2,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.6,78,100500,0,0,335,0,0,0,0,0,0,0,110,1.5,5,5,16.0,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,10.5,76,100500,0,0,336,0,0,0,0,0,0,0,110,0.0,5,5,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,9.2,64,100500,0,0,341,0,0,0,0,0,0,0,240,0.0,5,5,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,8.2,61,100600,79,1032,336,44,702,4,5553,0,470,16,240,0.2,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,10.9,66,100700,341,1385,344,235,757,49,27329,19640,5668,228,240,2.3,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,12.9,72,100700,574,1385,349,402,744,94,47008,38818,11011,479,260,3.2,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,13.0,68,100700,757,1385,354,550,788,119,65271,46891,14204,644,260,0.0,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,13.2,61,100700,875,1385,364,662,854,122,79916,51117,14782,680,260,3.7,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,12.9,62,100600,922,1385,362,741,973,94,91955,54808,11679,529,270,4.6,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,13.2,65,100500,893,1385,359,719,975,90,89019,54185,11188,504,270,4.7,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.0,67,100500,791,1385,356,592,840,112,70963,49167,13509,612,270,5.2,3,3,15.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.3,78,100500,623,1385,353,448,786,95,52810,41359,11213,492,270,5.6,3,3,13.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,14.0,77,100500,400,1385,351,265,684,68,30509,24459,7839,326,270,4.6,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.2,82,100500,143,1385,348,83,550,26,9371,0,2971,114,270,4.1,3,3,15.2,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,14.3,87,100500,0,44,344,0,0,0,0,0,0,0,270,3.6,3,3,10.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,14.8,93,100500,0,0,354,0,0,0,0,0,0,0,270,2.9,7,7,1.9,61,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,15.9,99,100500,0,0,352,0,0,0,0,0,0,0,260,2.1,6,6,0.8,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.5,90,100500,0,0,348,0,0,0,0,0,0,0,260,0.0,3,3,15.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,15.0,93,100600,0,0,343,0,0,0,0,0,0,0,240,0.0,3,3,6.2,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,15.0,93,100600,0,0,343,0,0,0,0,0,0,0,240,0.0,3,3,4.3,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,15.9,99,100600,0,0,380,0,0,0,0,0,0,0,250,2.5,10,10,0.2,30,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,14.9,96,100600,0,0,358,0,0,0,0,0,0,0,270,1.3,8,8,1.3,40,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.8,90,100600,0,0,325,0,0,0,0,0,0,0,270,0.0,0,0,4.8,122,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,13.4,91,100500,0,0,321,0,0,0,0,0,0,0,50,0.0,0,0,4.6,122,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.9,97,100500,0,0,320,0,0,0,0,0,0,0,50,0.0,0,0,2.4,240,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,13.3,97,100600,0,0,355,0,0,0,0,0,0,0,60,1.3,9,9,0.8,91,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,12.8,99,100600,0,0,331,0,0,0,0,0,0,0,60,0.0,5,5,0.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.9,94,100600,76,1012,335,39,607,5,4731,0,635,22,270,0.0,5,5,0.6,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.3,78,100600,336,1386,340,230,749,49,26752,18338,5668,228,270,0.2,3,3,5.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.9,78,100600,569,1386,344,423,850,74,50353,40722,8807,376,270,2.3,3,3,6.2,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,13.0,77,100600,752,1386,345,555,818,111,66158,47603,13301,600,270,3.6,3,3,4.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,13.4,77,100600,870,1386,347,620,743,153,73514,47567,18260,853,270,4.5,3,3,8.4,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,100500,917,1386,351,750,1007,84,93628,54659,10511,472,270,4.2,2,2,11.8,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.9,73,100400,888,1386,340,799,1191,36,105558,56943,4753,201,260,4.5,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.9,73,100400,786,1386,354,642,1010,69,79734,51941,8647,378,270,4.2,3,3,15.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100400,617,1386,349,476,913,69,57427,43755,8389,359,270,5.0,2,2,11.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.9,76,100300,394,1386,337,355,1215,9,47357,21675,1194,43,270,4.6,0,0,12.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.2,80,100300,139,1386,341,88,675,20,10095,0,2338,88,270,4.1,1,1,12.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.5,85,100300,0,28,347,0,0,0,0,0,0,0,270,3.6,3,3,12.9,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,15.0,89,100400,0,0,346,0,0,0,0,0,0,0,240,3.6,3,3,12.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.0,90,100400,0,0,372,0,0,0,0,0,0,0,280,3.5,9,9,13.1,190,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.9,89,100400,0,0,372,0,0,0,0,0,0,0,240,3.1,9,9,14.5,244,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,14.4,87,100500,0,0,371,0,0,0,0,0,0,0,270,2.9,9,9,14.5,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.3,89,100500,0,0,368,0,0,0,0,0,0,0,270,1.5,9,9,14.7,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.9,87,100500,0,0,367,0,0,0,0,0,0,0,260,1.6,9,9,15.9,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.8,89,100500,0,0,375,0,0,0,0,0,0,0,270,2.3,10,10,14.3,244,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.3,87,100400,0,0,364,0,0,0,0,0,0,0,270,0.0,9,9,12.9,244,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100400,0,0,361,0,0,0,0,0,0,0,120,0.0,9,9,11.9,240,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100400,0,0,371,0,0,0,0,0,0,0,120,0.0,10,10,4.8,205,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,13.1,94,100400,0,0,318,0,0,0,0,0,0,0,120,1.2,0,0,2.6,128,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.7,90,100500,0,0,325,0,0,0,0,0,0,0,120,0.0,1,1,2.0,152,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.3,87,100500,73,992,357,27,149,19,2969,0,2107,81,280,0.3,9,9,2.0,172,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,12.6,84,100600,332,1386,361,161,298,89,17725,11331,9891,417,300,3.0,9,9,2.3,319,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.1,77,100600,565,1386,365,289,308,164,32271,20648,18383,834,270,2.1,9,9,4.4,366,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.2,72,100600,747,1386,350,508,673,146,59293,43211,17072,784,260,2.3,5,5,6.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.2,72,100600,865,1386,345,630,786,140,75248,49566,16756,777,250,3.5,3,3,8.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.2,70,100500,911,1386,348,719,938,103,88521,54412,12697,578,270,2.6,3,3,11.8,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.3,70,100400,882,1386,353,666,852,124,80440,51728,15009,691,270,2.8,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.8,73,100400,780,1386,367,512,607,170,59342,40969,19825,926,270,4.2,8,8,16.1,6096,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.8,73,100300,612,1386,353,441,789,93,51993,41849,10940,478,260,4.5,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100300,390,1386,351,253,651,70,28960,23691,8030,334,260,3.6,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,13.1,78,100300,135,1386,350,77,525,26,8621,0,2887,110,270,5.0,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.3,81,100300,0,13,349,0,0,0,0,0,0,0,270,6.2,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.2,80,100400,0,0,361,0,0,0,0,0,0,0,270,4.9,8,8,16.1,335,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,83,100400,0,0,346,0,0,0,0,0,0,0,260,2.5,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.2,83,100400,0,0,349,0,0,0,0,0,0,0,250,1.8,6,6,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100400,0,0,358,0,0,0,0,0,0,0,280,3.0,8,8,16.1,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100400,0,0,340,0,0,0,0,0,0,0,260,1.9,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100400,0,0,366,0,0,0,0,0,0,0,260,0.0,9,9,16.1,6755,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.3,81,100400,0,0,362,0,0,0,0,0,0,0,260,0.0,9,9,15.5,449,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.8,86,100400,0,0,371,0,0,0,0,0,0,0,120,0.0,10,10,11.3,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100400,0,0,374,0,0,0,0,0,0,0,120,0.0,10,10,11.3,396,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100400,0,0,374,0,0,0,0,0,0,0,120,0.0,10,10,11.0,409,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.1,80,100400,0,0,373,0,0,0,0,0,0,0,160,1.3,10,10,11.3,464,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.7,78,100400,0,0,373,0,0,0,0,0,0,0,80,0.2,10,10,11.1,518,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.7,78,100400,70,971,373,26,89,22,2833,0,2353,91,80,2.1,10,10,9.3,518,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,11.7,77,100500,327,1387,363,135,177,93,14794,7006,10236,433,160,2.1,9,9,6.2,518,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,11.7,75,100500,560,1387,365,276,271,166,30700,18390,18620,845,160,2.1,9,9,4.8,532,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.7,70,100500,742,1387,381,348,203,239,38992,16151,26973,1287,260,2.0,10,10,4.8,647,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,11.0,64,100500,860,1387,355,550,557,205,63702,40545,23847,1137,240,2.1,6,6,8.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,11.1,63,100400,906,1387,355,613,648,190,71962,45435,22381,1064,250,1.9,5,5,9.8,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,11.2,61,100300,877,1387,378,519,437,243,59475,33884,27980,1353,250,4.7,9,9,11.8,6777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.7,68,100300,775,1387,366,476,502,195,54549,36219,22477,1059,260,4.9,8,8,16.1,7315,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.7,68,100300,607,1387,353,418,712,107,48765,40181,12470,550,270,3.7,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.7,68,100300,385,1387,353,226,508,85,25492,21071,9652,407,260,4.6,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.7,70,100300,131,1386,350,62,332,31,6901,0,3449,134,260,4.3,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,11.7,72,100300,0,0,347,0,0,0,0,0,0,0,260,4.1,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,11.8,73,100300,0,0,344,0,0,0,0,0,0,0,270,4.2,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100300,0,0,340,0,0,0,0,0,0,0,270,4.6,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100300,0,0,343,0,0,0,0,0,0,0,270,4.2,4,4,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100300,0,0,337,0,0,0,0,0,0,0,260,1.6,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.8,81,100300,0,0,326,0,0,0,0,0,0,0,140,2.0,0,0,15.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.8,84,100400,0,0,343,0,0,0,0,0,0,0,120,1.5,5,5,14.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.8,86,100400,0,0,361,0,0,0,0,0,0,0,150,1.6,9,9,14.3,5455,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.7,83,100400,0,0,373,0,0,0,0,0,0,0,90,2.1,10,10,12.9,610,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100300,0,0,370,0,0,0,0,0,0,0,90,2.2,10,10,12.9,610,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100300,0,0,370,0,0,0,0,0,0,0,80,2.6,10,10,12.0,624,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.1,80,100300,0,0,363,0,0,0,0,0,0,0,90,3.2,9,9,6.8,732,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.0,82,100300,0,0,340,0,0,0,0,0,0,0,100,4.1,5,5,9.6,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,11.7,80,100400,67,951,340,38,237,27,4055,0,2845,113,110,3.2,5,5,7.9,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,11.6,74,100400,322,1388,345,183,474,73,20481,15129,8173,339,110,3.5,5,5,6.8,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.1,65,100500,555,1388,352,376,691,100,43592,37322,11584,505,50,2.4,5,5,9.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.1,65,100500,737,1388,365,422,411,204,47893,30548,23272,1095,50,0.0,8,8,9.0,762,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.2,59,100400,855,1388,360,586,677,170,68852,45929,20005,939,260,1.7,5,5,11.5,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.7,61,100300,901,1388,360,601,624,196,70275,44052,23036,1098,260,3.1,5,5,13.3,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,11.7,61,100200,872,1388,361,638,793,139,76214,50189,16742,776,270,3.2,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,11.7,59,100200,770,1388,363,555,774,126,65802,47555,14951,681,260,3.7,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,11.8,62,100200,602,1388,360,423,745,99,49484,40836,11670,512,270,4.7,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100200,380,1388,356,224,513,84,25230,20420,9464,399,270,5.7,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,13.1,73,100200,127,1370,355,58,298,31,6382,0,3380,131,260,5.4,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.4,76,100200,0,0,351,0,0,0,0,0,0,0,260,5.0,4,4,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100200,0,0,347,0,0,0,0,0,0,0,270,3.9,3,3,14.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.9,81,100300,0,0,346,0,0,0,0,0,0,0,250,2.5,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100300,0,0,350,0,0,0,0,0,0,0,230,1.9,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100300,0,0,350,0,0,0,0,0,0,0,230,0.0,5,5,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100300,0,0,370,0,0,0,0,0,0,0,230,0.2,9,9,16.1,6096,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.9,84,100300,0,0,370,0,0,0,0,0,0,0,230,1.3,9,9,16.1,6096,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,13.8,87,100300,0,0,359,0,0,0,0,0,0,0,230,0.0,8,8,15.3,6096,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.2,93,100300,0,0,338,0,0,0,0,0,0,0,90,0.0,5,5,9.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,12.7,90,100400,0,0,337,0,0,0,0,0,0,0,90,0.0,5,5,7.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,12.0,88,100400,0,0,335,0,0,0,0,0,0,0,90,0.0,5,5,6.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.2,90,100400,0,0,335,0,0,0,0,0,0,0,90,0.0,5,5,6.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,12.1,90,100400,0,0,334,0,0,0,0,0,0,0,90,0.2,5,5,6.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,11.8,89,100500,64,930,333,36,269,24,3868,0,2548,100,90,1.5,5,5,6.4,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,12.9,83,100600,318,1388,344,189,537,66,21264,15026,7436,306,150,1.3,5,5,6.6,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,13.3,76,100600,550,1388,350,398,806,79,46872,38496,9278,397,150,0.0,4,4,8.2,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,13.3,68,100600,731,1388,357,576,943,79,70156,49580,9654,423,280,0.0,3,3,9.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,13.9,70,100600,849,1388,354,656,899,106,79651,51334,12913,586,280,3.7,2,2,10.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100500,895,1388,345,805,1191,36,106323,57123,4826,204,270,4.5,0,0,13.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,13.9,68,100400,867,1388,360,658,866,118,79511,50858,14272,654,270,3.7,3,3,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.0,69,100400,765,1388,363,575,855,105,69013,48270,12586,566,260,4.7,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,14.5,74,100400,597,1388,358,445,853,78,52908,41293,9310,401,280,5.7,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,15.0,78,100400,375,1388,356,242,642,68,27570,21054,7785,323,280,5.7,3,3,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,15.3,81,100400,123,1357,355,64,433,25,7134,0,2848,109,270,5.1,3,3,15.2,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,15.6,85,100400,0,0,354,0,0,0,0,0,0,0,270,4.6,3,3,14.7,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.6,87,100400,0,0,348,0,0,0,0,0,0,0,270,4.5,2,2,15.9,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.6,87,100400,0,0,337,0,0,0,0,0,0,0,260,3.4,0,0,14.5,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.6,88,100400,0,0,337,0,0,0,0,0,0,0,210,1.3,0,0,14.3,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.5,90,100500,0,0,334,0,0,0,0,0,0,0,110,0.3,0,0,12.9,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.0,87,100500,0,0,333,0,0,0,0,0,0,0,110,2.5,0,0,13.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,14.9,90,100500,0,0,341,0,0,0,0,0,0,0,40,2.1,2,2,14.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,13.8,93,100500,0,0,322,0,0,0,0,0,0,0,100,2.2,0,0,11.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.9,90,100500,0,0,319,0,0,0,0,0,0,0,90,2.5,0,0,11.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,13.2,90,100500,0,0,321,0,0,0,0,0,0,0,50,1.3,0,0,11.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.8,90,100500,0,0,319,0,0,0,0,0,0,0,50,0.0,0,0,11.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,11.6,89,100500,0,0,313,0,0,0,0,0,0,0,100,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.8,79,100600,0,0,317,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.0,63,100600,61,909,333,35,801,0,6985,0,0,0,100,1.6,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,5.5,39,100700,313,1389,335,281,1224,5,38223,11028,714,24,70,2.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.7,4.1,28,100700,545,1389,363,472,1137,26,60617,46867,3330,131,90,1.9,2,2,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.7,2.2,21,100700,726,1389,364,653,1195,28,86108,59699,3687,150,90,0.0,0,0,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.9,1.1,17,100700,844,1389,373,759,1193,34,100481,63941,4533,189,260,0.4,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.7,5.3,23,100600,890,1389,377,801,1193,36,106207,63109,4792,202,260,3.3,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.1,6.9,28,100500,862,1389,387,638,819,130,76757,53096,15719,723,270,4.6,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,5.5,27,100500,760,1389,380,521,685,146,61072,46548,17211,790,260,4.7,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.4,9.0,35,100500,592,1389,381,398,674,111,46210,39480,12920,570,270,5.1,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,9.4,40,100500,371,1389,374,216,498,83,24296,20426,9381,394,270,5.1,3,3,16.0,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,10.9,46,100500,120,1342,363,59,396,25,6651,0,2839,109,260,4.6,1,1,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,12.2,53,100500,0,0,353,0,0,0,0,0,0,0,260,4.0,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,12.0,54,100500,0,0,351,0,0,0,0,0,0,0,260,3.4,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.2,10.6,51,100500,0,0,347,0,0,0,0,0,0,0,260,1.9,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,10.5,49,100500,0,0,349,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.5,9.9,51,100500,0,0,343,0,0,0,0,0,0,0,90,2.3,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,8.6,48,100500,0,0,340,0,0,0,0,0,0,0,110,3.5,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.1,6.4,39,100600,0,0,342,0,0,0,0,0,0,0,110,2.7,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,4.0,33,100500,0,0,338,0,0,0,0,0,0,0,50,0.2,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,4.2,39,100500,0,0,327,0,0,0,0,0,0,0,50,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,2.8,35,100500,0,0,326,0,0,0,0,0,0,0,50,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,2.8,40,100500,0,0,318,0,0,0,0,0,0,0,110,0.0,0,0,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,2.5,38,100500,0,0,319,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,-0.1,29,100500,0,0,337,0,0,0,0,0,0,0,80,0.2,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.7,-0.7,23,100600,58,888,351,33,796,0,6586,0,0,0,80,1.5,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.3,-1.5,16,100600,308,1390,372,239,970,24,29231,17103,2934,111,80,1.3,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.1,-0.1,16,100700,540,1390,379,466,1133,26,59832,48000,3366,132,100,0.2,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,30.0,-0.6,14,100700,721,1390,376,649,1197,28,85637,60599,3645,147,100,1.5,0,0,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,31.6,-1.6,12,100600,839,1390,383,755,1195,34,100023,64815,4477,186,260,0.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,30.8,3.5,18,100500,885,1390,386,797,1195,36,105740,63934,4739,199,260,5.1,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.8,4.7,22,100400,856,1390,377,771,1195,34,102112,62737,4552,190,280,5.1,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.3,2.1,19,100400,755,1390,387,510,661,151,59672,46299,17764,816,270,5.0,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,28.1,1.3,18,100400,588,1390,385,399,691,107,46505,42100,12504,548,270,4.6,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,27.0,3.0,21,100400,366,1390,382,222,553,76,25175,22874,8652,360,250,4.6,3,3,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.4,6.1,29,100400,116,1328,378,54,335,26,6026,0,2898,111,260,4.6,3,3,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.8,9.1,39,100400,0,0,373,0,0,0,0,0,0,0,260,4.5,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.7,10.5,46,100400,0,0,366,0,0,0,0,0,0,0,270,3.5,2,2,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.3,9.6,44,100400,0,0,351,0,0,0,0,0,0,0,270,2.3,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.1,6.9,35,100400,0,0,352,0,0,0,0,0,0,0,140,0.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.6,8.1,42,100400,0,0,346,0,0,0,0,0,0,0,140,2.5,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,6.7,40,100500,0,0,342,0,0,0,0,0,0,0,120,1.6,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,6.6,40,100500,0,0,340,0,0,0,0,0,0,0,120,2.5,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,6.3,40,100500,0,0,338,0,0,0,0,0,0,0,50,2.1,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,7.9,53,100400,0,0,328,0,0,0,0,0,0,0,50,2.1,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,8.4,56,100400,0,0,326,0,0,0,0,0,0,0,100,2.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,8.9,58,100500,0,0,327,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,8.3,60,100500,0,0,321,0,0,0,0,0,0,0,90,0.2,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,8.1,59,100500,0,0,336,0,0,0,0,0,0,0,90,1.6,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,7.0,50,100600,55,867,340,31,360,17,3407,0,1838,70,80,2.2,3,3,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,9.4,52,100700,304,1390,353,203,721,46,23510,15075,5314,212,110,2.5,3,3,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,12.5,57,100700,535,1390,371,391,830,72,46304,38396,8557,363,130,1.5,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,11.0,47,100700,716,1390,378,526,814,106,62523,47574,12708,568,120,1.5,5,5,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.0,8.9,34,100600,834,1390,381,679,1004,77,84489,56437,9576,423,270,1.8,2,2,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.4,13.5,48,100600,880,1390,371,792,1195,35,104602,57282,4683,197,270,4.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.3,14.7,55,100500,851,1390,383,662,913,103,80536,51137,12537,568,270,5.1,3,3,16.1,77777,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.2,12.8,52,100500,750,1390,375,528,733,132,62013,45167,15610,712,260,5.0,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,13.0,57,100500,583,1390,366,408,745,96,47694,39260,11227,490,260,4.5,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,14.4,68,100400,362,1390,349,280,957,31,33870,19113,3750,146,260,4.1,0,0,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.3,15.0,72,100400,114,1319,348,77,819,10,9181,0,1157,41,260,3.8,0,0,16.0,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,15.8,77,100400,0,0,347,0,0,0,0,0,0,0,260,3.5,0,0,16.1,77777,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,17.2,90,100500,0,0,359,0,0,0,0,0,0,0,260,3.1,3,3,15.0,77777,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,17.1,93,100500,0,0,382,0,0,0,0,0,0,0,270,2.9,9,9,8.6,112,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,16.7,88,100500,0,0,361,0,0,0,0,0,0,0,270,1.6,4,4,12.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.8,92,100600,0,0,358,0,0,0,0,0,0,0,250,2.2,4,4,12.9,77777,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.0,89,100600,0,0,365,0,0,0,0,0,0,0,260,2.8,7,7,13.4,274,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.0,89,100600,0,0,389,0,0,0,0,0,0,0,270,2.9,10,10,13.3,213,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,15.6,88,100600,0,0,388,0,0,0,0,0,0,0,270,1.5,10,10,15.7,216,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.5,90,100600,0,0,385,0,0,0,0,0,0,0,190,1.5,10,10,12.7,240,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.9,89,100500,0,0,383,0,0,0,0,0,0,0,140,1.3,10,10,11.3,209,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.4,84,100500,0,0,384,0,0,0,0,0,0,0,120,0.0,10,10,11.0,186,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.3,84,100500,0,0,384,0,0,0,0,0,0,0,120,1.9,10,10,6.2,216,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,100500,0,0,381,0,0,0,0,0,0,0,120,0.5,10,10,4.6,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,100600,53,846,381,21,68,19,2282,0,2012,78,250,0.0,10,10,3.2,244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,100600,299,1391,384,112,135,83,12328,4309,9175,384,250,0.3,10,10,3.2,267,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100600,530,1391,376,273,320,151,30397,20061,16892,759,250,2.6,9,9,3.3,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100600,711,1391,368,395,377,203,44576,27312,22956,1079,290,2.6,8,8,4.0,437,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,13.3,70,100600,829,1391,360,557,646,173,65000,43320,20213,949,280,3.8,5,5,6.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.3,70,100500,875,1391,359,586,634,187,68403,43516,21933,1041,260,5.0,5,5,8.4,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.3,73,100400,847,1391,357,611,772,141,72566,48247,16842,780,260,4.1,5,5,11.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.2,72,100400,745,1391,354,551,825,109,65678,47540,13037,586,250,4.2,4,4,14.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,12.9,71,100300,579,1391,350,435,876,71,52009,41670,8524,364,260,4.5,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.3,75,100300,358,1391,349,237,689,59,27190,20392,6830,280,240,4.1,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.8,80,100300,111,1309,359,47,264,26,5165,0,2837,109,270,4.1,7,7,16.1,396,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.4,78,100300,0,0,372,0,0,0,0,0,0,0,250,5.0,9,9,16.1,396,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.8,81,100300,0,0,383,0,0,0,0,0,0,0,270,4.5,10,10,16.1,396,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100300,0,0,380,0,0,0,0,0,0,0,270,3.6,10,10,16.1,396,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.4,81,100300,0,0,380,0,0,0,0,0,0,0,250,3.5,10,10,16.1,388,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.8,83,100300,0,0,381,0,0,0,0,0,0,0,230,2.7,10,10,16.1,342,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100400,0,0,380,0,0,0,0,0,0,0,250,3.1,10,10,16.1,404,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.2,80,100400,0,0,380,0,0,0,0,0,0,0,270,3.0,10,10,16.1,464,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.7,77,100300,0,0,379,0,0,0,0,0,0,0,260,2.2,10,10,16.1,514,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,100400,0,0,379,0,0,0,0,0,0,0,180,2.6,10,10,16.1,491,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,12.2,74,100400,0,0,379,0,0,0,0,0,0,0,270,2.7,10,10,16.1,518,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.2,72,100500,0,0,381,0,0,0,0,0,0,0,250,3.1,10,10,16.0,571,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.3,76,100300,0,0,368,0,0,0,0,0,0,0,60,3.9,9,9,15.7,1252,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100300,0,0,366,0,0,0,0,0,0,0,110,2.8,9,9,12.3,3459,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.8,80,100300,50,825,367,23,111,19,2438,0,2013,78,130,4.4,9,9,9.0,4160,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.7,75,100400,294,1392,372,129,223,81,14120,7038,8977,375,230,2.9,9,9,16.1,3353,9,999999999,229,0.0000,0,88,999.000,5.0,1.0 +2012,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,17.3,12.4,73,100400,525,1392,372,272,325,149,30262,20543,16670,747,240,1.7,9,9,16.1,3353,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100400,706,1392,387,343,236,223,38319,17951,25041,1185,260,3.1,10,10,16.0,2557,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.2,74,100300,824,1392,375,421,269,262,47478,21570,29682,1439,260,3.4,9,9,16.1,667,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.3,73,100200,870,1392,388,420,212,288,47378,17499,32622,1599,250,4.1,10,10,16.1,701,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.4,76,100200,842,1392,386,443,298,263,50104,23761,29907,1453,250,4.0,10,10,15.5,701,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.9,84,100100,741,1392,381,389,307,226,43674,23227,25475,1211,260,3.7,10,10,11.8,708,9,999999999,250,0.0000,0,88,999.000,3.0,1.0 +2012,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,16.6,14.0,85,100100,574,1392,381,292,301,168,32547,20033,18824,858,270,4.5,10,10,16.1,758,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100100,354,1392,378,147,180,101,16147,7600,11180,478,250,4.1,10,10,16.0,733,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,13.8,85,100000,108,1298,379,34,117,25,3807,0,2812,108,260,4.4,10,10,16.0,748,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.5,13.5,82,100000,0,0,379,0,0,0,0,0,0,0,260,4.6,10,10,16.1,815,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.2,82,100000,0,0,377,0,0,0,0,0,0,0,270,3.8,10,10,16.1,1167,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.8,78,100000,0,0,369,0,0,0,0,0,0,0,230,5.2,9,9,16.1,1062,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.3,79,100000,0,0,365,0,0,0,0,0,0,0,270,6.0,9,9,16.1,1086,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,10.5,67,100100,0,0,366,0,0,0,0,0,0,0,270,4.7,9,9,16.1,1089,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,9.9,65,100100,0,0,375,0,0,0,0,0,0,0,260,5.5,10,10,16.1,1057,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,9.3,65,100000,0,0,361,0,0,0,0,0,0,0,270,8.1,9,9,16.1,1247,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,8.4,63,100000,0,0,350,0,0,0,0,0,0,0,270,7.6,8,8,16.1,1463,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.8,67,100000,0,0,335,0,0,0,0,0,0,0,280,7.1,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.3,67,100000,0,0,352,0,0,0,0,0,0,0,290,6.1,9,9,16.1,6706,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.3,67,100000,0,0,345,0,0,0,0,0,0,0,290,5.7,8,8,16.0,6208,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.1,60,100000,0,0,353,0,0,0,0,0,0,0,280,8.9,9,9,16.1,2438,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,6.6,60,100100,0,0,343,0,0,0,0,0,0,0,270,9.6,8,8,16.1,2438,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,6.0,57,100100,47,804,330,24,245,16,2627,0,1724,66,270,7.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,5.0,51,100100,290,1392,332,165,489,63,18552,13733,7135,291,280,7.3,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,5.1,48,100100,521,1392,337,351,694,92,40798,37598,10727,461,280,8.0,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,5.6,48,100200,701,1392,340,482,700,130,56499,45601,15261,689,270,10.3,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,5.6,47,100100,819,1392,343,563,686,159,66199,47833,18800,873,260,9.9,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,5.5,46,100100,865,1392,343,585,654,179,68737,47194,21100,993,270,10.7,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,5.1,44,100000,837,1392,344,623,832,123,74991,53774,14830,677,280,13.5,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,5.5,48,100000,736,1392,340,538,805,112,64108,50326,13425,602,260,13.4,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,5.1,46,100000,570,1392,340,406,781,87,47897,42846,10269,442,260,10.0,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,5.6,48,100000,350,1392,340,215,581,69,24455,21200,7884,325,270,11.8,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,5.9,52,100000,105,1287,336,52,421,20,5871,0,2269,86,280,10.7,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,6.2,56,100000,0,0,333,0,0,0,0,0,0,0,280,9.7,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,6.7,60,100100,0,0,331,0,0,0,0,0,0,0,290,9.3,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,6.6,60,100100,0,0,331,0,0,0,0,0,0,0,280,9.4,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,6.0,58,100100,0,0,327,0,0,0,0,0,0,0,280,9.8,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,5.5,57,100200,0,0,322,0,0,0,0,0,0,0,280,5.3,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,4.3,55,100200,0,0,315,0,0,0,0,0,0,0,330,2.7,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,4.0,55,100200,0,0,303,0,0,0,0,0,0,0,310,3.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,4.0,55,100200,0,0,303,0,0,0,0,0,0,0,330,2.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,1.2,51,100200,0,0,292,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,1.8,55,100200,0,0,291,0,0,0,0,0,0,0,330,0.0,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,2.2,56,100300,0,0,292,0,0,0,0,0,0,0,330,0.0,0,0,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,1.0,52,100400,0,0,290,0,0,0,0,0,0,0,330,2.2,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,0.5,52,100400,0,0,300,0,0,0,0,0,0,0,320,2.5,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,0.0,46,100500,45,782,305,22,289,13,2448,0,1420,54,340,2.1,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,0.0,41,100600,285,1393,317,173,578,55,19686,14929,6263,252,340,2.1,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,0.2,39,100600,516,1393,322,364,770,79,42770,40568,9305,395,260,2.3,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,1.7,41,100700,696,1393,328,490,740,120,57747,48026,14170,635,270,3.6,5,5,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,1.2,38,100700,814,1393,330,562,694,156,66178,49211,18495,856,280,7.4,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,1.8,38,100600,860,1393,331,617,760,147,73569,52652,17650,817,260,9.0,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,2.7,41,100600,832,1393,329,656,944,92,80690,57756,11402,509,270,10.7,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,2.8,40,100500,732,1393,337,551,861,98,66305,52773,11881,527,260,10.5,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,7.2,56,100500,566,1393,339,417,843,75,49657,43249,8974,382,270,12.3,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,7.2,56,100500,346,1393,352,187,411,85,20857,16723,9512,399,280,11.3,8,8,16.0,2734,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,7.5,58,100600,103,1276,351,41,242,23,4581,0,2595,99,280,10.5,8,8,16.0,2658,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,7.5,59,100600,0,0,357,0,0,0,0,0,0,0,280,9.1,9,9,16.1,2573,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,4.6,48,100700,0,0,346,0,0,0,0,0,0,0,280,3.9,8,8,16.1,2438,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,-3.3,28,100800,0,0,322,0,0,0,0,0,0,0,360,2.7,5,5,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,-3.2,29,100800,0,0,317,0,0,0,0,0,0,0,10,3.1,4,4,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,-2.8,31,100900,0,0,313,0,0,0,0,0,0,0,360,3.5,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,-2.8,31,100800,0,0,310,0,0,0,0,0,0,0,360,6.7,2,2,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,-2.8,31,100900,0,0,300,0,0,0,0,0,0,0,10,6.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,-2.8,31,100900,0,0,299,0,0,0,0,0,0,0,350,5.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,-2.9,33,101000,0,0,295,0,0,0,0,0,0,0,320,4.4,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,-3.9,32,101000,0,0,291,0,0,0,0,0,0,0,350,3.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,-3.9,34,101000,0,0,287,0,0,0,0,0,0,0,20,2.6,0,0,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,-2.8,43,101100,0,0,280,0,0,0,0,0,0,0,100,1.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,-2.9,42,101100,0,0,280,0,0,0,0,0,0,0,60,1.7,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.3,-3.9,36,101200,42,761,284,20,659,0,3584,0,1,0,40,3.5,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,-4.0,31,101300,280,1394,293,252,1232,4,34688,6175,545,18,50,3.1,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,-5.2,24,101300,511,1394,300,460,1213,15,61029,47318,2006,75,50,3.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,-6.7,20,101400,691,1394,318,543,946,74,66481,55844,9084,392,90,3.1,3,3,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,-7.2,17,101300,809,1394,323,622,898,101,75889,58279,12400,555,110,3.8,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,-6.6,17,101300,855,1394,330,649,869,116,78934,58239,14157,643,80,2.0,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,-1.8,26,101200,827,1394,332,650,935,94,79781,58735,11612,518,230,5.5,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,-2.8,23,101200,727,1394,333,567,928,83,69190,55957,10114,442,250,3.6,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.6,-1.9,25,101200,562,1394,335,420,870,70,50387,46386,8418,356,250,4.0,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,5.0,48,101200,342,1394,332,218,633,62,24909,21266,7136,292,270,6.7,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,4.7,49,101200,100,1265,329,49,425,18,5553,0,2088,78,280,6.7,3,3,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,4.2,49,101200,0,0,322,0,0,0,0,0,0,0,280,6.6,2,2,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,2.9,45,101300,0,0,310,0,0,0,0,0,0,0,270,5.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,2.9,46,101300,0,0,309,0,0,0,0,0,0,0,250,3.5,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,0.4,38,101300,0,0,307,0,0,0,0,0,0,0,310,2.7,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,3.0,52,101400,0,0,301,0,0,0,0,0,0,0,90,3.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,1.0,45,101300,0,0,300,0,0,0,0,0,0,0,90,3.5,0,0,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,-0.1,40,101300,0,0,301,0,0,0,0,0,0,0,90,2.5,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,-1.4,36,101300,0,0,300,0,0,0,0,0,0,0,70,1.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,-3.3,37,101200,0,0,286,0,0,0,0,0,0,0,70,1.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,-3.3,37,101200,0,0,285,0,0,0,0,0,0,0,70,0.0,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,-3.3,38,101100,0,0,283,0,0,0,0,0,0,0,50,0.0,0,0,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,-4.2,37,101100,0,0,281,0,0,0,0,0,0,0,50,2.3,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,-6.0,29,101200,0,0,296,0,0,0,0,0,0,0,50,0.0,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,-5.7,29,101200,40,740,299,19,673,0,3749,0,0,0,20,0.4,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,-6.8,22,101200,276,1394,310,192,797,35,22637,14017,4092,159,20,3.1,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,-7.3,18,101200,506,1394,321,404,993,43,49647,45244,5300,214,30,3.0,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,-8.3,15,101200,686,1394,326,555,1000,62,68722,57165,7715,328,10,2.6,3,3,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,-10.1,11,101100,804,1394,334,641,967,83,79260,60611,10335,455,350,1.3,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.8,-11.2,9,101000,851,1394,338,653,892,109,79755,59552,13357,603,350,0.0,3,3,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.1,-11.2,9,100900,823,1394,336,682,1040,67,85860,63142,8519,370,260,0.7,2,2,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.8,-6.9,14,100900,723,1394,325,650,1200,28,85833,62458,3661,148,260,5.8,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,-0.5,27,100800,558,1394,338,390,750,90,45793,42814,10633,458,280,6.6,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,-4.4,20,100800,338,1394,333,201,533,71,22764,20943,8125,335,280,5.7,3,3,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,0.0,30,100800,97,1250,334,47,419,18,5341,0,2008,75,280,5.4,3,3,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,4.3,43,100800,0,0,335,0,0,0,0,0,0,0,280,4.9,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,7.5,57,100800,0,0,331,0,0,0,0,0,0,0,260,3.6,2,2,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.3,66,100800,0,0,320,0,0,0,0,0,0,0,250,3.2,0,0,16.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,8.8,64,100900,0,0,319,0,0,0,0,0,0,0,250,0.0,0,0,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,7.4,63,100900,0,0,313,0,0,0,0,0,0,0,40,0.0,0,0,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,3.7,49,100900,0,0,309,0,0,0,0,0,0,0,40,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,-2.3,29,100800,0,0,308,0,0,0,0,0,0,0,40,2.5,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,-6.8,21,100800,0,0,301,0,0,0,0,0,0,0,50,1.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,-7.3,24,100800,0,0,289,0,0,0,0,0,0,0,50,1.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.7,-7.8,21,100700,0,0,294,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,-7.8,23,100700,0,0,288,0,0,0,0,0,0,0,110,1.5,0,0,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,-7.1,25,100700,0,0,286,0,0,0,0,0,0,0,90,1.5,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,-6.8,26,100700,0,0,297,0,0,0,0,0,0,0,90,1.5,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,-7.9,21,100700,38,718,306,17,637,0,3349,0,0,0,90,1.6,4,4,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,-8.5,16,100800,271,1395,318,190,809,33,22454,13261,3912,151,40,2.2,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.9,-9.8,11,100800,501,1395,332,445,1188,17,58318,47028,2292,87,350,2.9,2,2,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,-8.3,11,100700,682,1395,332,613,1202,25,80932,60843,3343,133,50,1.5,0,0,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.2,-9.5,9,100700,799,1395,341,719,1199,32,95167,65789,4215,174,130,1.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,26.3,-10.0,8,100600,846,1395,346,761,1199,34,100942,67144,4521,188,290,2.8,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.0,-4.7,15,100500,818,1395,337,736,1198,33,97418,65282,4348,180,290,4.6,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,2.5,30,100500,719,1395,337,612,1100,46,77854,57725,5828,244,280,4.7,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,4.1,34,100500,554,1395,337,447,1009,46,55054,46309,5683,233,260,5.0,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.6,2.2,30,100400,335,1395,335,269,1028,22,33295,20178,2691,102,270,4.1,0,0,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,4.3,37,100400,83,1078,332,57,967,0,11513,0,0,0,260,3.6,0,0,16.0,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,6.2,46,100400,0,0,329,0,0,0,0,0,0,0,260,3.0,0,0,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,7.1,51,100400,0,0,325,0,0,0,0,0,0,0,240,2.3,0,0,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,5.3,42,100400,0,0,328,0,0,0,0,0,0,0,240,0.0,0,0,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,-0.8,26,100400,0,0,325,0,0,0,0,0,0,0,60,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,-2.8,22,100500,0,0,322,0,0,0,0,0,0,0,60,1.6,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,-7.3,15,100500,0,0,318,0,0,0,0,0,0,0,50,2.1,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,-8.2,14,100500,0,0,317,0,0,0,0,0,0,0,50,2.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,-6.2,18,100500,0,0,312,0,0,0,0,0,0,0,40,1.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,5.7,62,100500,0,0,323,0,0,0,0,0,0,0,80,2.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,6.7,62,100500,0,0,328,0,0,0,0,0,0,0,110,2.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.7,67,100500,0,0,324,0,0,0,0,0,0,0,60,1.5,5,5,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,6.3,67,100500,0,0,340,0,0,0,0,0,0,0,100,1.5,9,9,16.1,7620,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,-0.5,39,100500,0,0,337,0,0,0,0,0,0,0,110,1.6,9,9,16.1,7584,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,-0.6,35,100500,35,697,343,15,207,10,1685,0,1100,41,40,2.3,9,9,16.1,7350,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,-5.3,20,100600,267,1395,352,142,413,63,15873,11603,7070,287,40,3.8,9,9,16.1,7620,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.0,-7.1,13,100600,496,1395,370,329,669,91,38149,37702,10576,451,40,1.7,9,9,16.1,7620,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,23.9,-6.7,12,100600,677,1395,372,485,776,108,57460,50233,12884,570,140,3.0,8,8,16.1,7620,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,24.5,-7.7,11,100600,794,1395,382,495,526,195,57213,41574,22698,1064,140,2.3,9,9,16.1,7620,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,25.3,-5.7,12,100500,841,1395,389,465,354,251,53098,30499,28852,1386,270,0.6,9,9,16.1,7620,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,22.8,6.3,35,100500,814,1395,393,443,340,245,50323,27878,27955,1342,270,5.2,9,9,16.1,7620,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,11.8,63,100400,715,1395,379,342,225,227,38294,17552,25539,1209,280,5.5,9,9,16.1,7620,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.1,65,100400,550,1395,372,271,276,163,30173,18403,18165,822,270,3.6,8,8,16.1,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,11.7,63,100400,332,1395,358,183,440,78,20415,15210,8767,366,270,3.6,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.7,65,100400,80,1064,355,41,220,28,4415,0,3064,121,260,3.6,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.9,69,100400,0,0,352,0,0,0,0,0,0,0,260,3.5,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.3,81,100500,0,0,369,0,0,0,0,0,0,0,260,2.5,9,9,16.1,6096,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.4,84,100500,0,0,360,0,0,0,0,0,0,0,260,1.9,8,8,15.9,6096,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.8,84,100500,0,0,349,0,0,0,0,0,0,0,260,0.0,5,5,14.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.4,85,100500,0,0,343,0,0,0,0,0,0,0,180,0.2,4,4,14.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.8,89,100500,0,0,339,0,0,0,0,0,0,0,180,1.3,3,3,11.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100500,0,0,343,0,0,0,0,0,0,0,180,0.2,5,5,9.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,12.7,84,100500,0,0,342,0,0,0,0,0,0,0,170,2.1,5,5,6.2,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,12.2,91,100500,0,0,345,0,0,0,0,0,0,0,170,2.0,8,8,4.6,4572,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,12.1,99,100500,0,0,346,0,0,0,0,0,0,0,70,1.3,9,9,0.4,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,11.7,97,100600,0,0,355,0,0,0,0,0,0,0,130,0.0,10,10,0.1,15,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,12.8,100,100500,0,0,360,0,0,0,0,0,0,0,130,2.6,10,10,0.1,30,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,12.5,97,100500,0,0,360,0,0,0,0,0,0,0,110,2.4,10,10,1.1,55,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,12.0,94,100600,33,676,360,14,114,11,1541,0,1247,47,120,0.2,10,10,4.7,4572,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.1,86,100700,262,1396,367,114,228,71,12522,5520,7855,324,130,2.1,10,10,6.6,4536,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,10.8,73,100700,492,1396,372,257,344,136,28635,20811,15198,673,40,2.3,10,10,8.4,4267,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,8.9,60,100700,672,1396,375,360,342,196,40555,25648,22137,1029,110,4.1,10,10,11.0,4267,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,7.0,51,100800,790,1396,375,399,263,250,45000,21809,28381,1361,110,0.0,10,10,11.3,4267,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,9.0,56,100700,837,1396,371,459,347,252,52170,28124,28720,1386,110,0.2,9,9,11.3,4124,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,9.3,54,100700,810,1396,376,500,511,204,57465,38020,23540,1115,100,1.3,9,9,11.3,3083,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,8.4,50,100700,711,1396,376,441,532,171,50603,37595,19637,907,100,0.4,9,9,11.5,3601,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,8.8,51,100600,546,1396,378,337,546,123,38332,32785,14063,621,100,3.2,9,9,13.3,5237,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,7.8,49,100600,328,1396,366,175,402,81,19539,15039,9026,377,130,4.1,8,8,16.0,3370,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,10.7,61,100600,78,1050,367,32,371,11,3714,0,1311,48,150,3.6,8,8,15.2,3523,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.3,75,100600,0,0,375,0,0,0,0,0,0,0,150,2.9,9,9,14.7,3622,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100700,0,0,372,0,0,0,0,0,0,0,200,1.5,9,9,16.1,3317,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100700,0,0,383,0,0,0,0,0,0,0,200,1.6,10,10,15.9,3083,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100700,0,0,383,0,0,0,0,0,0,0,20,2.0,10,10,14.5,3281,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.2,77,100700,0,0,373,0,0,0,0,0,0,0,20,1.3,9,9,14.7,2743,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.0,69,100700,0,0,373,0,0,0,0,0,0,0,350,0.2,9,9,15.9,2707,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,10.6,66,100700,0,0,369,0,0,0,0,0,0,0,350,1.3,9,9,14.7,2438,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,10.7,68,100700,0,0,366,0,0,0,0,0,0,0,350,0.0,9,9,15.7,2509,9,999999999,200,0.0000,0,88,999.000,3.0,1.0 +2012,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,16.0,11.0,72,100700,0,0,374,0,0,0,0,0,0,0,10,0.2,10,10,13.3,2976,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.6,73,100600,0,0,371,0,0,0,0,0,0,0,10,1.6,10,10,15.9,2384,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.6,75,100600,0,0,368,0,0,0,0,0,0,0,70,2.1,10,10,14.0,1981,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,10.5,77,100600,0,0,355,0,0,0,0,0,0,0,80,1.5,9,9,16.1,1963,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,9.9,71,100600,0,0,358,0,0,0,0,0,0,0,340,1.7,9,9,16.1,1811,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,9.5,67,100700,31,654,360,13,152,10,1448,0,1075,40,60,3.0,9,9,16.1,1658,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,9.9,66,100800,257,1396,364,123,303,67,13552,7013,7409,304,50,2.1,9,9,16.1,1541,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,9.4,58,100800,487,1396,371,273,428,124,30657,24958,13963,613,100,2.1,9,9,16.1,1800,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,9.4,58,100800,667,1396,363,390,451,175,44229,31978,19897,917,100,2.1,8,8,16.0,2743,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,9.6,56,100800,785,1396,374,429,348,233,48570,27563,26534,1267,190,2.2,9,9,14.5,2618,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.1,10.9,56,100700,832,1396,384,464,368,245,52737,29097,28011,1349,190,2.5,9,9,14.7,1871,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.7,9.3,48,100600,806,1396,385,510,550,193,58800,40055,22320,1052,160,1.6,9,9,16.1,3850,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.4,9.2,46,100500,707,1396,389,461,612,151,53323,41025,17582,805,160,2.8,9,9,15.9,7157,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,11.9,64,100500,543,1396,379,309,436,139,34725,26888,15736,703,260,4.5,9,9,14.7,3497,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,13.3,73,100500,325,1396,370,161,323,86,17769,11455,9509,400,260,4.1,8,8,16.0,2277,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,13.9,77,100500,76,1037,369,28,278,13,3167,0,1436,53,270,4.4,8,8,16.0,2201,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.4,81,100500,0,0,376,0,0,0,0,0,0,0,270,4.3,9,9,16.1,2134,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,14.3,83,100500,0,0,384,0,0,0,0,0,0,0,280,1.9,10,10,15.7,2187,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,13.9,80,100600,0,0,384,0,0,0,0,0,0,0,280,0.0,10,10,13.3,2438,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.9,78,100600,0,0,387,0,0,0,0,0,0,0,230,0.2,10,10,16.1,1244,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.0,78,100600,0,0,387,0,0,0,0,0,0,0,230,2.2,10,10,16.1,967,9,999999999,250,0.0000,0,88,999.000,3.0,1.0 +2012,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,18.0,14.0,77,100700,0,0,377,0,0,0,0,0,0,0,250,2.0,9,9,16.1,862,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,14.5,82,100700,0,0,387,0,0,0,0,0,0,0,80,0.0,10,10,12.0,1131,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.5,85,100600,0,0,384,0,0,0,0,0,0,0,80,1.6,10,10,15.3,1385,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,15.0,88,100600,0,0,384,0,0,0,0,0,0,0,100,2.1,10,10,8.1,1032,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,15.0,94,100500,0,0,379,0,0,0,0,0,0,0,110,3.3,10,10,10.3,1009,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,15.0,94,100500,0,0,378,0,0,0,0,0,0,0,110,3.6,10,10,12.0,699,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,15.0,96,100600,0,0,367,0,0,0,0,0,0,0,110,3.1,9,9,13.3,965,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,14.8,94,100600,0,0,367,0,0,0,0,0,0,0,110,3.7,9,9,16.1,1651,9,999999999,259,0.0000,0,88,999.000,3.0,1.0 +2012,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,16.0,15.0,94,100600,29,633,379,11,104,9,1226,0,988,37,110,3.3,10,10,4.4,1010,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,15.0,93,100700,253,1397,379,107,207,69,11664,4123,7584,313,110,4.1,10,10,11.3,767,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,15.0,89,100700,482,1397,372,264,398,126,29412,21827,14158,624,100,4.8,9,9,12.3,1849,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.0,84,100700,663,1397,388,339,294,200,37864,21024,22424,1047,110,5.1,10,10,16.0,707,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,14.9,80,100700,781,1397,391,406,294,242,45647,22597,27321,1312,130,4.2,10,10,16.1,821,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.6,14.3,71,100600,828,1397,397,444,321,254,50153,25075,28817,1394,140,4.3,10,10,16.1,708,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,20.0,14.4,70,100600,801,1397,399,475,450,216,54037,32863,24740,1179,150,5.1,10,10,16.1,942,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,14.5,71,100500,703,1397,399,419,472,181,47518,32301,20672,962,170,5.0,10,10,15.9,1168,9,999999999,259,0.0000,0,88,999.000,3.0,1.0 +2012,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,18.8,15.7,82,100600,539,1397,394,293,380,147,32721,22885,16421,738,170,3.9,10,10,14.5,1189,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,16.1,87,100600,322,1397,392,138,204,91,15101,7091,9979,422,150,2.1,10,10,11.0,672,9,999999999,290,0.0000,0,88,999.000,13.0,1.0 +2012,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,17.7,15.8,89,100600,74,1025,389,23,180,13,2597,0,1514,57,210,2.9,10,10,7.3,687,9,999999999,279,0.0000,0,88,999.000,2.0,1.0 +2012,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,17.1,15.8,92,100600,0,0,385,0,0,0,0,0,0,0,210,3.1,10,10,4.4,501,9,999999999,279,0.0000,0,88,999.000,5.0,1.0 +2012,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,16.8,15.7,93,100600,0,0,384,0,0,0,0,0,0,0,270,1.5,10,10,10.4,318,9,999999999,279,0.0000,0,88,999.000,3.0,1.0 +2012,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,15.8,15.7,99,100600,0,0,378,0,0,0,0,0,0,0,100,2.1,10,10,5.5,266,9,999999999,279,0.0000,0,88,999.000,2.0,1.0 +2012,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,15.9,15.7,99,100600,0,0,379,0,0,0,0,0,0,0,80,2.2,10,10,4.6,649,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,15.5,96,100700,0,0,380,0,0,0,0,0,0,0,80,2.6,10,10,8.2,343,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.3,14.9,97,100700,0,0,375,0,0,0,0,0,0,0,190,2.3,10,10,8.5,160,9,999999999,259,0.0000,0,88,999.000,38.0,1.0 +2012,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,15.3,13.9,91,100700,0,0,374,0,0,0,0,0,0,0,240,3.5,10,10,9.7,547,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,14.0,90,100800,0,0,375,0,0,0,0,0,0,0,230,2.5,10,10,10.0,122,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,15.0,96,100700,0,0,377,0,0,0,0,0,0,0,230,1.6,10,10,13.1,122,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,15.0,99,100700,0,0,374,0,0,0,0,0,0,0,270,2.8,10,10,8.5,122,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,14.3,92,100600,0,0,376,0,0,0,0,0,0,0,280,2.1,10,10,1.6,139,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,14.9,94,100700,0,0,378,0,0,0,0,0,0,0,300,0.8,10,10,15.3,1067,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,14.3,88,100700,0,0,379,0,0,0,0,0,0,0,280,3.0,10,10,3.4,430,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,14.4,89,100800,27,612,369,10,156,7,1133,0,792,29,210,2.2,9,9,16.1,654,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,14.8,86,100900,248,1398,374,119,312,64,13138,5347,7058,289,250,2.7,9,9,16.1,1161,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,14.9,83,100900,478,1398,370,285,515,110,32171,26045,12398,540,260,3.5,8,8,16.1,1676,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,14.4,78,100900,658,1398,358,459,733,114,53607,41473,13363,597,250,2.6,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.2,63,100900,776,1398,354,529,677,153,61749,44638,17911,827,270,6.3,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.3,68,100900,824,1398,353,577,723,151,67967,46826,17846,828,260,6.7,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.7,70,100800,797,1398,351,623,932,92,75898,51875,11214,500,270,6.7,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.8,66,100800,699,1398,355,525,862,94,62831,47872,11246,497,270,6.8,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.3,71,100800,536,1398,353,396,852,69,46999,38947,8256,349,260,7.4,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100800,319,1398,351,202,628,58,22937,15766,6624,270,250,5.1,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,13.1,78,100800,72,1013,350,37,314,21,4094,0,2327,90,250,5.4,5,5,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.3,81,100800,0,0,346,0,0,0,0,0,0,0,250,5.5,4,4,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.3,83,100900,0,0,341,0,0,0,0,0,0,0,240,3.7,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.2,80,100900,0,0,340,0,0,0,0,0,0,0,290,4.6,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100900,0,0,326,0,0,0,0,0,0,0,270,4.4,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.9,81,100900,0,0,326,0,0,0,0,0,0,0,250,3.2,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,83,101000,0,0,327,0,0,0,0,0,0,0,270,3.9,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,13.3,85,101000,0,0,326,0,0,0,0,0,0,0,290,2.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,13.2,84,101000,0,0,340,0,0,0,0,0,0,0,280,3.8,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.7,83,101000,0,0,343,0,0,0,0,0,0,0,70,1.5,5,5,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,11.7,88,101000,0,0,333,0,0,0,0,0,0,0,70,1.3,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.7,11.7,88,101000,0,0,333,0,0,0,0,0,0,0,70,0.0,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,11.7,90,101000,0,0,331,0,0,0,0,0,0,0,140,0.0,5,5,15.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,11.7,89,101100,0,0,352,0,0,0,0,0,0,0,140,0.2,9,9,13.3,935,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,101200,25,591,354,9,152,6,1028,0,716,26,140,1.7,9,9,16.1,1107,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,11.8,86,101200,244,1398,355,116,303,63,12773,5565,6967,284,110,2.7,9,9,16.1,1761,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,12.1,78,101200,473,1398,357,288,541,105,32566,27753,11890,515,110,0.2,8,8,16.1,6096,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.7,65,101300,653,1398,355,485,846,90,57755,45717,10691,468,260,1.7,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,11.8,64,101200,772,1398,358,581,862,105,69732,50135,12683,570,260,3.3,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.2,68,101100,819,1398,356,587,764,139,69477,48189,16537,762,260,4.6,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,12.3,69,101100,794,1398,355,579,802,124,68928,48776,14805,675,270,4.7,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,12.9,73,101000,696,1398,351,528,884,88,63400,47531,10640,468,260,5.8,4,4,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.4,76,101000,533,1398,349,420,969,50,50938,39201,6108,252,260,6.2,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.9,81,101000,317,1398,352,203,652,55,23140,14918,6313,256,260,6.2,5,5,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.9,83,101000,71,1002,345,41,326,24,4385,0,2620,103,270,5.4,3,3,16.0,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,13.8,85,101000,0,0,343,0,0,0,0,0,0,0,270,4.5,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,13.2,84,101000,0,0,340,0,0,0,0,0,0,0,260,4.2,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.9,85,101000,0,0,334,0,0,0,0,0,0,0,250,4.4,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,13.2,87,101000,0,0,323,0,0,0,0,0,0,0,250,2.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.2,80,101000,0,0,324,0,0,0,0,0,0,0,110,0.2,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.1,79,101000,0,0,324,0,0,0,0,0,0,0,110,1.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,11.7,80,101000,0,0,321,0,0,0,0,0,0,0,110,0.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,11.6,82,100900,0,0,332,0,0,0,0,0,0,0,110,0.0,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.7,11.2,85,100900,0,0,327,0,0,0,0,0,0,0,70,0.0,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,11.8,89,100900,0,0,328,0,0,0,0,0,0,0,70,0.0,3,3,15.7,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,12.2,91,100900,0,0,328,0,0,0,0,0,0,0,70,0.0,3,3,12.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,11.0,85,100800,0,0,326,0,0,0,0,0,0,0,70,1.3,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.6,84,100900,0,0,325,0,0,0,0,0,0,0,320,0.2,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.7,84,100900,23,570,325,8,473,0,1228,0,12,0,320,1.5,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,11.2,80,100900,240,1399,332,160,738,34,18530,2920,3916,152,340,1.3,3,3,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,11.7,74,100900,469,1399,340,360,931,48,43255,34373,5751,234,340,0.0,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.7,68,100900,649,1399,347,512,963,66,62415,47695,8021,343,270,0.0,3,3,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,11.7,65,100800,767,1399,350,600,935,87,73027,51786,10632,471,270,3.5,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,11.7,63,100700,815,1399,352,620,879,108,74870,51745,13061,590,260,3.2,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,11.7,65,100600,790,1399,350,623,951,86,76174,52744,10574,469,230,4.3,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.8,66,100600,693,1399,349,552,979,68,67645,49865,8325,359,270,6.3,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.1,70,100600,530,1399,350,400,892,62,47826,39163,7431,311,270,6.4,4,4,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.7,70,100600,314,1399,344,213,740,46,24613,15426,5375,215,260,4.1,3,3,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,12.3,74,100600,69,992,344,39,370,21,4256,0,2268,88,250,3.8,3,3,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.9,78,100600,0,0,343,0,0,0,0,0,0,0,250,3.6,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.4,81,100600,0,0,340,0,0,0,0,0,0,0,240,3.4,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.9,84,100600,0,0,330,0,0,0,0,0,0,0,220,2.1,0,0,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.8,87,100600,0,0,327,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100600,0,0,335,0,0,0,0,0,0,0,120,1.5,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.3,87,100600,0,0,324,0,0,0,0,0,0,0,100,1.6,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.2,93,100600,0,0,325,0,0,0,0,0,0,0,100,2.2,1,1,15.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,13.4,95,100600,0,0,337,0,0,0,0,0,0,0,110,2.5,5,5,6.4,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.6,96,100600,0,0,338,0,0,0,0,0,0,0,90,1.9,5,5,4.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,12.9,99,100600,0,0,338,0,0,0,0,0,0,0,120,2.3,7,7,0.5,30,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,13.3,100,100600,0,0,333,0,0,0,0,0,0,0,120,1.5,5,5,2.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,12.0,99,100600,0,0,338,0,0,0,0,0,0,0,130,2.0,8,8,0.5,30,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.5,11.1,97,100600,0,0,322,0,0,0,0,0,0,0,110,2.1,5,5,4.4,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,11.0,94,100700,22,549,343,7,441,0,1036,0,21,1,20,1.0,9,9,0.7,30,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,11.9,99,100800,235,1399,333,129,459,52,14402,5344,5816,234,100,2.8,7,7,0.7,30,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,12.9,96,100800,464,1399,346,287,570,98,32618,27780,11190,482,110,3.1,8,8,2.0,4877,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.0,77,100800,644,1399,344,482,861,85,57456,45453,10194,444,140,2.6,5,5,4.8,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.2,72,100700,763,1399,351,583,892,97,70338,50398,11702,522,260,0.4,5,5,6.6,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,12.3,69,100700,811,1399,355,622,895,103,75268,51674,12507,563,260,3.2,5,5,8.2,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.8,73,100600,786,1399,353,607,911,96,73579,51087,11608,519,250,3.5,5,5,9.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100500,689,1399,351,519,870,90,62084,47043,10861,478,270,3.2,5,5,11.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100500,527,1399,348,398,893,61,47547,38499,7357,308,270,3.4,4,4,13.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.8,75,100500,312,1399,346,215,770,43,24948,14257,5025,200,230,1.5,3,3,16.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,12.8,77,100500,68,983,344,40,385,21,4309,0,2293,89,210,1.8,3,3,15.2,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.9,79,100500,0,0,339,0,0,0,0,0,0,0,210,2.2,2,2,14.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,83,100500,0,0,327,0,0,0,0,0,0,0,260,2.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.4,84,100500,0,0,338,0,0,0,0,0,0,0,280,1.3,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.8,86,100600,0,0,327,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.3,84,100600,0,0,326,0,0,0,0,0,0,0,100,1.6,0,0,15.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.2,86,100600,0,0,324,0,0,0,0,0,0,0,100,2.1,0,0,13.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100600,0,0,321,0,0,0,0,0,0,0,110,2.0,0,0,9.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.4,90,100600,0,0,361,0,0,0,0,0,0,0,100,1.6,9,9,4.5,118,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,13.9,95,100600,0,0,353,0,0,0,0,0,0,0,80,2.1,8,8,2.3,94,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,13.8,99,100600,0,0,317,0,0,0,0,0,0,0,70,2.1,0,0,4.8,122,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,13.3,95,100600,0,0,318,0,0,0,0,0,0,0,80,2.1,0,0,4.8,240,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,12.8,95,100600,0,0,364,0,0,0,0,0,0,0,70,2.7,10,10,0.4,61,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.6,12.6,100,100600,0,0,358,0,0,0,0,0,0,0,50,3.5,10,10,0.4,61,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.6,12.5,99,100700,20,529,348,6,133,4,703,0,480,17,60,2.5,9,9,0.2,57,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,12.2,96,100700,231,1400,349,105,266,61,11487,4024,6699,273,110,2.0,9,9,0.3,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.4,14.7,96,100800,460,1400,352,308,694,80,35423,29364,9218,391,120,0.0,7,7,2.1,30,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,100800,640,1400,329,576,1210,23,75586,48954,2981,118,120,0.0,0,0,6.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.3,66,100700,759,1400,338,683,1206,29,89761,55176,3864,158,270,0.5,0,0,8.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.2,70,100700,807,1400,339,726,1203,32,95443,55983,4243,176,270,4.5,0,0,8.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,12.9,71,100600,783,1400,336,704,1204,31,92517,55478,4053,167,260,4.1,0,0,11.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,13.3,75,100600,686,1400,335,617,1206,26,80883,51105,3361,135,270,4.3,0,0,11.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.8,81,100600,525,1400,349,392,875,64,46612,37437,7632,321,270,4.6,4,4,12.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,83,100600,310,1400,341,206,717,48,23769,14031,5507,221,270,4.6,3,3,9.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,13.3,85,100600,66,974,342,36,712,2,4648,0,258,8,250,4.3,4,4,7.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.2,85,100600,0,0,347,0,0,0,0,0,0,0,250,3.9,6,6,6.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.4,87,100700,0,0,343,0,0,0,0,0,0,0,250,3.0,5,5,7.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,13.9,92,100700,0,0,350,0,0,0,0,0,0,0,260,2.0,7,7,6.4,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,13.9,93,100700,0,0,337,0,0,0,0,0,0,0,250,0.0,3,3,6.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,13.8,94,100800,0,0,335,0,0,0,0,0,0,0,250,0.0,3,3,6.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,13.3,95,100800,0,0,337,0,0,0,0,0,0,0,250,0.0,5,5,3.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.2,93,100800,0,0,338,0,0,0,0,0,0,0,270,0.0,5,5,2.3,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,13.3,96,100800,0,0,356,0,0,0,0,0,0,0,270,0.2,9,9,0.4,83,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,13.3,98,100800,0,0,364,0,0,0,0,0,0,0,270,2.0,10,10,0.2,30,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,13.3,100,100800,0,0,363,0,0,0,0,0,0,0,290,1.3,10,10,0.2,30,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,13.3,100,100800,0,0,363,0,0,0,0,0,0,0,290,0.0,10,10,0.1,15,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,13.3,100,100800,0,0,363,0,0,0,0,0,0,0,290,0.0,10,10,0.1,30,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,13.2,99,100800,0,0,363,0,0,0,0,0,0,0,290,0.0,10,10,0.0,30,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,12.8,97,100900,19,508,352,6,142,4,701,0,481,17,250,0.0,9,9,0.2,30,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,12.9,100,100900,227,1400,350,105,284,59,11513,3709,6491,264,250,0.0,9,9,0.3,44,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.7,13.2,97,100900,455,1400,347,266,489,107,29886,24587,12072,523,250,0.5,8,8,1.2,61,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,101000,636,1400,340,449,758,105,52556,42184,12303,544,250,2.6,5,5,1.2,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.7,73,100900,755,1400,348,612,1006,69,75508,52036,8579,373,240,2.4,3,3,11.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.0,12.2,73,100800,804,1400,349,599,841,116,71678,50192,13950,633,270,4.5,5,5,15.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.4,81,100800,779,1400,364,482,518,193,55167,36944,22274,1049,260,4.2,9,9,9.6,3572,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.3,84,100700,683,1400,359,385,401,189,43411,28733,21438,997,260,4.6,9,9,0.7,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,12.8,91,100700,522,1400,367,271,333,147,30164,20742,16428,735,270,4.5,10,10,0.2,37,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.8,93,100700,307,1400,365,137,235,85,15022,7992,9379,393,260,4.1,10,10,0.2,87,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,12.8,95,100600,65,966,364,23,118,17,2505,0,1906,73,270,4.1,10,10,0.2,56,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,12.9,99,100600,0,0,361,0,0,0,0,0,0,0,270,4.4,10,10,0.2,51,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,12.8,97,100600,0,0,362,0,0,0,0,0,0,0,270,3.5,10,10,0.2,61,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,12.9,97,100700,0,0,363,0,0,0,0,0,0,0,270,3.0,10,10,0.2,61,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,13.3,100,100700,0,0,363,0,0,0,0,0,0,0,260,2.0,10,10,0.2,61,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,13.2,99,100700,0,0,363,0,0,0,0,0,0,0,260,1.3,10,10,0.2,61,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,12.8,97,100700,0,0,362,0,0,0,0,0,0,0,170,0.2,10,10,0.4,61,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,12.8,97,100700,0,0,362,0,0,0,0,0,0,0,170,1.2,10,10,0.2,53,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,12.7,99,100700,0,0,359,0,0,0,0,0,0,0,170,0.0,10,10,0.2,30,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,12.2,97,100700,0,0,358,0,0,0,0,0,0,0,60,0.2,10,10,0.4,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,12.0,99,100600,0,0,356,0,0,0,0,0,0,0,60,1.5,10,10,0.4,30,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,11.1,100,100600,0,0,349,0,0,0,0,0,0,0,100,2.1,10,10,0.2,30,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,10.9,99,100600,0,0,318,0,0,0,0,0,0,0,290,0.2,4,4,13.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,12.0,100,100600,0,0,355,0,0,0,0,0,0,0,270,2.1,10,10,0.2,30,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,11.4,100,100600,17,488,341,5,408,0,825,0,3,0,270,0.0,9,9,0.3,30,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,11.8,100,100600,222,1401,322,146,716,32,16829,0,3749,145,270,0.0,4,4,4.8,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,10.5,67,100600,451,1401,341,367,1041,32,45349,33346,3909,154,250,0.3,3,3,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,21.0,9.0,46,100600,632,1401,359,568,1210,22,74628,51346,2948,116,250,2.6,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.5,11.5,64,100500,751,1401,347,652,1139,41,83497,54679,5323,223,250,2.8,2,2,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.9,10.2,54,100400,800,1401,341,720,1206,32,94841,58238,4154,172,260,4.6,0,0,16.1,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,11.7,63,100300,776,1401,338,698,1205,31,91748,56298,4015,165,260,4.7,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,11.8,64,100300,680,1401,337,612,1209,25,80330,52105,3294,132,260,5.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,12.9,74,100300,520,1401,345,403,943,53,48565,38297,6385,264,250,4.6,2,2,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100200,305,1401,332,266,1183,8,34893,4425,1073,38,270,4.6,0,0,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,13.3,79,100200,64,958,330,39,860,0,7781,0,0,0,270,4.6,0,0,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.4,81,100200,0,0,329,0,0,0,0,0,0,0,270,4.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,13.8,86,100200,0,0,328,0,0,0,0,0,0,0,260,3.4,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.2,79,100200,0,0,330,0,0,0,0,0,0,0,260,2.1,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,12.3,73,100200,0,0,331,0,0,0,0,0,0,0,230,1.9,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.6,75,100200,0,0,331,0,0,0,0,0,0,0,140,0.3,0,0,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,11.2,73,100200,0,0,324,0,0,0,0,0,0,0,140,2.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.7,78,100200,0,0,322,0,0,0,0,0,0,0,90,3.0,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,11.7,82,100200,0,0,319,0,0,0,0,0,0,0,60,2.0,0,0,15.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.8,94,100100,0,0,317,0,0,0,0,0,0,0,100,1.6,1,1,10.6,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,12.3,96,100100,0,0,359,0,0,0,0,0,0,0,100,0.2,10,10,0.4,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,13.3,100,100100,0,0,363,0,0,0,0,0,0,0,120,2.1,10,10,0.4,30,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.9,97,100100,0,0,369,0,0,0,0,0,0,0,130,3.0,10,10,0.2,30,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.9,97,100200,0,0,368,0,0,0,0,0,0,0,100,2.2,10,10,0.3,30,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,13.9,97,100200,16,467,368,4,126,3,482,0,312,11,100,2.7,10,10,1.2,61,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.6,13.9,96,100200,218,1401,370,97,251,58,10587,2601,6324,257,100,3.2,10,10,2.6,78,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.9,89,100300,447,1401,376,235,360,120,26053,19011,13357,583,110,2.6,10,10,5.0,190,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100300,627,1401,378,328,322,184,36602,22437,20612,951,70,2.6,10,10,6.0,259,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,13.4,77,100300,747,1401,353,542,797,117,64177,46821,13924,629,110,1.3,5,5,8.4,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,13.9,71,100200,796,1401,362,593,841,115,70842,48962,13797,626,260,0.4,5,5,11.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.8,76,100100,773,1401,357,610,954,84,74363,50898,10230,452,260,3.0,5,5,11.6,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.3,75,100100,677,1401,354,519,905,82,62416,46961,9836,429,250,2.7,5,5,14.7,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,100000,517,1401,351,369,796,76,43303,36142,8885,377,270,3.8,5,5,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100000,304,1401,346,190,625,55,21643,13475,6273,254,270,5.1,5,5,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.0,82,100100,63,951,358,27,480,6,3263,0,672,24,260,6.0,8,8,16.1,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100100,0,0,374,0,0,0,0,0,0,0,250,3.5,10,10,13.1,244,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,13.1,83,100100,0,0,376,0,0,0,0,0,0,0,250,2.3,10,10,14.5,291,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100100,0,0,374,0,0,0,0,0,0,0,150,2.0,10,10,8.0,312,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100200,0,0,364,0,0,0,0,0,0,0,170,1.6,9,9,8.0,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.7,83,100200,0,0,363,0,0,0,0,0,0,0,130,2.2,9,9,8.0,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100300,0,0,370,0,0,0,0,0,0,0,110,3.2,10,10,8.6,366,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100300,0,0,370,0,0,0,0,0,0,0,100,3.2,10,10,12.7,366,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100300,0,0,370,0,0,0,0,0,0,0,100,0.2,10,10,11.3,366,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100400,0,0,370,0,0,0,0,0,0,0,100,1.7,10,10,11.5,366,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.1,83,100400,0,0,370,0,0,0,0,0,0,0,80,3.0,10,10,13.1,373,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100400,0,0,369,0,0,0,0,0,0,0,90,2.6,10,10,14.0,427,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100400,0,0,369,0,0,0,0,0,0,0,90,2.7,10,10,14.5,427,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100500,0,0,369,0,0,0,0,0,0,0,80,3.5,10,10,14.3,427,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100500,14,447,369,4,116,3,479,0,336,12,150,2.5,10,10,12.6,440,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,10.7,76,100600,214,1402,368,92,232,57,10128,2699,6258,253,120,2.5,10,10,10.9,518,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,11.1,77,100700,442,1402,369,218,296,125,24158,16547,13870,606,130,2.2,10,10,8.0,518,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.1,75,100700,623,1402,372,307,263,190,34209,19193,21261,981,130,2.6,10,10,8.0,518,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,11.0,67,100600,743,1402,347,548,829,109,65343,48964,13039,585,120,2.7,4,4,8.2,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,10.7,62,100600,793,1402,348,617,926,93,74992,52925,11377,507,240,0.7,3,3,9.8,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,11.1,65,100500,769,1402,346,645,1071,57,81045,54701,7158,307,240,5.4,3,3,11.6,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.2,68,100500,675,1402,349,512,888,85,61491,47851,10193,445,260,3.3,5,5,14.7,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,11.6,70,100500,515,1402,349,380,855,66,45058,37836,7834,329,250,4.5,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,11.1,72,100500,302,1402,344,191,638,54,21765,14213,6122,247,230,4.1,5,5,16.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,11.4,75,100500,62,945,343,33,319,19,3596,0,2060,80,250,3.8,5,5,16.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.7,78,100500,0,0,342,0,0,0,0,0,0,0,250,3.5,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,11.7,78,100600,0,0,362,0,0,0,0,0,0,0,250,3.0,9,9,16.1,6096,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100600,0,0,352,0,0,0,0,0,0,0,250,1.9,8,8,16.1,6096,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100700,0,0,339,0,0,0,0,0,0,0,250,0.0,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100700,0,0,339,0,0,0,0,0,0,0,250,0.0,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100700,0,0,339,0,0,0,0,0,0,0,260,0.0,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.7,81,100700,0,0,339,0,0,0,0,0,0,0,260,0.3,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.7,11.6,87,100800,0,0,333,0,0,0,0,0,0,0,260,2.3,5,5,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,10.7,90,100700,0,0,326,0,0,0,0,0,0,0,260,0.0,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.0,89,100700,0,0,348,0,0,0,0,0,0,0,280,0.0,9,9,16.1,7620,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.6,87,100700,0,0,340,0,0,0,0,0,0,0,280,0.0,8,8,16.0,7620,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,11.0,88,100800,0,0,349,0,0,0,0,0,0,0,280,2.1,9,9,11.3,306,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.8,90,100900,0,0,368,0,0,0,0,0,0,0,270,4.6,10,10,11.3,347,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.2,86,100900,13,427,357,3,299,0,429,0,29,1,320,2.9,9,9,11.3,1368,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,11.7,80,100900,210,1402,360,111,421,48,12314,2284,5330,213,270,2.2,9,9,11.3,7514,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.7,78,101000,438,1402,362,247,448,107,27702,22693,12069,521,250,2.5,9,9,11.3,7620,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,11.7,78,101000,619,1402,355,366,477,156,41460,31459,17682,803,270,1.5,8,8,11.0,7620,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,12.1,72,100900,739,1402,371,419,402,207,47420,29856,23549,1110,250,0.4,9,9,11.3,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.8,66,100800,789,1402,376,465,447,214,52938,33360,24438,1160,250,3.7,9,9,11.3,7620,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.2,73,100700,767,1402,370,490,572,177,56357,39489,20467,955,260,4.2,9,9,11.5,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.1,74,100600,672,1402,368,414,527,161,47176,35212,18469,847,250,5.4,9,9,13.1,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,11.8,73,100600,513,1402,360,326,604,106,37271,32138,12100,527,260,7.4,8,8,14.7,7620,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.2,78,100600,300,1402,345,196,686,49,22471,13393,5624,226,280,5.1,5,5,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,12.2,79,100600,61,940,344,34,343,19,3670,0,2041,79,260,4.8,5,5,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.2,81,100600,0,0,342,0,0,0,0,0,0,0,260,4.4,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100600,0,0,340,0,0,0,0,0,0,0,270,3.1,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.3,83,100700,0,0,340,0,0,0,0,0,0,0,250,2.9,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.8,84,100800,0,0,343,0,0,0,0,0,0,0,240,1.5,5,5,15.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,12.8,86,100800,0,0,344,0,0,0,0,0,0,0,240,1.8,6,6,14.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.1,77,100900,0,0,365,0,0,0,0,0,0,0,220,2.2,9,9,16.1,449,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100900,0,0,373,0,0,0,0,0,0,0,260,1.5,10,10,16.1,488,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.2,81,100800,0,0,373,0,0,0,0,0,0,0,70,1.5,10,10,16.1,488,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.1,86,100800,0,0,367,0,0,0,0,0,0,0,100,1.3,10,10,16.1,498,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.6,80,100900,0,0,369,0,0,0,0,0,0,0,60,0.3,10,10,16.1,571,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100800,0,0,369,0,0,0,0,0,0,0,60,2.6,10,10,16.0,525,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.2,79,100800,0,0,358,0,0,0,0,0,0,0,40,2.7,9,9,14.5,579,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.7,83,100800,0,0,357,0,0,0,0,0,0,0,40,0.0,9,9,13.5,579,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,11.7,80,100900,12,408,370,3,135,2,369,0,228,8,40,0.0,10,10,6.4,600,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,11.6,77,101000,206,1403,373,93,270,53,10215,2136,5890,237,50,0.2,10,10,6.6,762,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,11.1,71,101100,434,1403,366,252,487,102,28357,23981,11467,493,50,2.3,9,9,8.0,826,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,11.1,65,101000,615,1403,365,385,559,139,43920,35327,15974,719,70,2.6,8,8,11.0,4877,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,10.1,60,101000,735,1403,372,414,394,208,46877,29803,23619,1111,150,0.3,9,9,11.3,4877,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,10.7,59,100900,786,1403,378,459,435,215,52257,32970,24619,1168,150,2.5,9,9,11.3,4663,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,11.0,59,100900,764,1403,380,481,548,182,55207,38751,21009,982,220,2.3,9,9,11.5,2959,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,10.5,60,100800,670,1403,375,422,561,154,48271,37322,17681,807,260,4.0,9,9,12.9,2303,9,999999999,189,0.0000,0,88,999.000,3.0,1.0 +2012,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,18.2,10.2,60,100800,511,1403,384,282,405,135,31592,24673,15133,670,260,3.2,10,10,13.3,2299,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.7,70,100900,299,1403,381,127,206,83,13971,6846,9181,384,260,0.0,10,10,16.0,1242,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,11.7,70,100900,60,936,381,21,103,16,2305,0,1820,70,270,1.1,10,10,16.0,1181,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,11.7,71,100900,0,0,380,0,0,0,0,0,0,0,270,1.9,10,10,16.1,1191,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,11.9,74,100900,0,0,378,0,0,0,0,0,0,0,140,0.2,10,10,15.5,1658,9,999999999,209,0.0000,0,88,999.000,2.0,1.0 +2012,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,15.7,13.2,85,101000,0,0,375,0,0,0,0,0,0,0,140,2.1,10,10,10.5,1356,9,999999999,229,0.0000,0,88,999.000,3.0,1.0 +2012,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,15.0,13.9,93,101000,0,0,372,0,0,0,0,0,0,0,130,1.1,10,10,5.6,876,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,13.9,93,101000,0,0,373,0,0,0,0,0,0,0,160,0.3,10,10,6.8,1288,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,101000,0,0,375,0,0,0,0,0,0,0,130,2.3,10,10,11.3,1335,9,999999999,250,0.0000,0,88,999.000,2.0,1.0 +2012,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,15.7,13.9,89,101000,0,0,376,0,0,0,0,0,0,0,100,3.5,10,10,10.3,599,9,999999999,250,0.0000,0,88,999.000,20.0,1.0 +2012,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,15.5,14.3,93,101000,0,0,375,0,0,0,0,0,0,0,90,4.2,10,10,4.5,344,9,999999999,250,0.0000,0,88,999.000,8.0,1.0 +2012,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,14.4,13.9,97,101000,0,0,369,0,0,0,0,0,0,0,100,4.5,10,10,2.4,179,9,999999999,250,0.0000,0,88,999.000,10.0,1.0 +2012,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,14.4,13.9,97,101000,0,0,369,0,0,0,0,0,0,0,100,4.1,10,10,2.4,152,9,999999999,250,0.0000,0,88,999.000,3.0,1.0 +2012,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,14.4,13.9,97,101000,0,0,369,0,0,0,0,0,0,0,90,4.1,10,10,2.4,155,9,999999999,250,0.0000,0,88,999.000,10.0,1.0 +2012,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,14.0,14.0,100,101000,0,0,367,0,0,0,0,0,0,0,100,4.1,10,10,2.4,152,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,13.9,96,101000,0,0,370,0,0,0,0,0,0,0,90,4.2,10,10,2.5,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.9,93,101100,11,389,372,2,222,0,279,0,39,1,100,5.0,10,10,2.7,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,14.0,93,101100,202,1403,373,97,325,50,10671,1221,5551,223,100,4.7,10,10,2.0,190,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,14.3,91,101100,430,1403,376,231,391,112,25717,19334,12449,540,110,4.8,10,10,2.1,232,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,101200,611,1403,378,317,316,179,35312,21627,20066,923,120,3.6,10,10,4.0,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,15.0,93,101100,732,1403,380,379,296,224,42408,22183,25227,1197,100,3.7,10,10,4.8,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.1,90,101000,783,1403,382,409,299,242,45921,22930,27321,1312,110,4.0,10,10,4.8,183,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.6,93,101000,761,1403,383,444,436,207,50248,31038,23579,1116,110,3.2,10,10,4.8,183,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.6,93,100900,668,1403,383,401,492,167,45455,32061,19006,876,130,3.5,10,10,4.8,183,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,15.7,93,100900,510,1403,384,299,486,123,33610,26271,13838,611,140,2.6,10,10,4.8,166,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,16.1,96,100900,298,1403,384,146,323,78,16091,8853,8576,358,160,2.6,10,10,6.0,122,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,16.0,94,100900,60,932,385,23,162,16,2561,0,1808,69,130,2.2,10,10,4.5,122,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,16.1,96,100900,0,0,384,0,0,0,0,0,0,0,140,1.6,10,10,5.1,203,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,16.1,94,100900,0,0,386,0,0,0,0,0,0,0,100,2.2,10,10,6.4,528,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100900,0,0,386,0,0,0,0,0,0,0,140,1.5,10,10,6.4,183,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100900,0,0,386,0,0,0,0,0,0,0,130,1.7,10,10,6.8,305,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,16.1,94,100900,0,0,386,0,0,0,0,0,0,0,100,2.7,10,10,6.9,561,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,101000,0,0,386,0,0,0,0,0,0,0,110,2.6,10,10,9.3,183,9,999999999,290,0.0000,0,88,999.000,18.0,1.0 +2012,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,17.1,16.1,94,100900,0,0,386,0,0,0,0,0,0,0,100,2.5,10,10,6.2,183,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,16.1,96,100900,0,0,384,0,0,0,0,0,0,0,100,2.1,10,10,4.5,177,9,999999999,290,0.0000,0,88,999.000,8.0,1.0 +2012,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,16.7,16.1,96,100800,0,0,384,0,0,0,0,0,0,0,90,2.1,10,10,3.2,152,9,999999999,290,0.0000,0,88,999.000,8.0,1.0 +2012,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,16.7,16.1,96,100800,0,0,384,0,0,0,0,0,0,0,120,2.3,10,10,3.2,155,9,999999999,290,0.0000,0,88,999.000,13.0,1.0 +2012,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,16.7,16.1,96,100800,0,0,384,0,0,0,0,0,0,0,120,3.6,10,10,3.2,179,9,999999999,290,0.0000,0,88,999.000,5.0,1.0 +2012,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,16.7,16.1,96,100700,0,0,384,0,0,0,0,0,0,0,110,3.2,10,10,3.2,148,9,999999999,290,0.0000,0,88,999.000,23.0,1.0 +2012,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,16.7,16.1,96,100800,0,0,384,0,0,0,0,0,0,0,120,3.6,10,10,3.2,122,9,999999999,290,0.0000,0,88,999.000,8.0,1.0 +2012,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,16.8,16.2,96,100800,10,369,384,2,274,0,299,0,14,0,130,3.4,10,10,2.8,114,9,999999999,290,0.0000,0,88,999.000,10.0,1.0 +2012,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,17.3,16.7,96,100800,198,1404,388,93,303,50,10171,199,5511,222,150,2.1,10,10,2.7,68,9,999999999,300,0.0000,0,88,999.000,59.0,1.0 +2012,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,17.9,17.1,95,100900,426,1404,391,228,387,111,25323,18049,12333,536,140,2.2,10,10,4.6,122,9,999999999,309,0.0000,0,88,999.000,11.0,1.0 +2012,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,17.8,17.2,96,100900,608,1404,391,311,304,179,34586,20109,20034,923,170,0.0,10,10,2.4,130,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,17.2,96,100900,728,1404,391,370,278,226,41316,20353,25333,1205,150,4.0,10,10,1.3,171,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,17.9,99,100800,780,1404,393,394,266,246,44062,19887,27685,1334,200,2.1,10,10,2.6,122,9,999999999,320,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,17.6,93,100800,758,1404,396,449,457,202,50843,31323,22963,1086,240,3.6,10,10,5.5,232,9,999999999,320,0.0000,0,88,999.000,3.0,1.0 +2012,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,18.2,17.2,94,100800,666,1404,393,400,494,166,45312,31379,18884,870,230,4.1,10,10,1.0,134,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,17.2,94,100800,508,1404,393,300,494,121,33667,25799,13654,603,270,3.3,10,10,3.3,138,9,999999999,309,0.0000,0,88,999.000,27.0,1.0 +2012,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,17.8,17.2,96,100800,297,1404,391,141,290,79,15415,7789,8732,365,280,3.1,10,10,11.0,297,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,17.1,95,100700,59,929,381,25,145,19,2721,0,2063,80,140,1.1,9,9,14.3,1022,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,17.1,95,100600,0,0,381,0,0,0,0,0,0,0,140,1.9,9,9,16.1,1438,9,999999999,309,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.8,92,100700,0,0,382,0,0,0,0,0,0,0,310,0.5,9,9,15.3,996,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.6,93,100800,0,0,379,0,0,0,0,0,0,0,300,2.7,9,9,2.7,260,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,16.1,96,100800,0,0,365,0,0,0,0,0,0,0,260,2.7,8,8,13.3,975,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,15.5,93,100800,0,0,351,0,0,0,0,0,0,0,250,3.4,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,15.0,93,100800,0,0,348,0,0,0,0,0,0,0,230,1.6,5,5,16.1,77777,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,15.0,90,100900,0,0,371,0,0,0,0,0,0,0,280,3.0,9,9,16.1,482,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,15.0,94,100900,0,0,379,0,0,0,0,0,0,0,260,3.1,10,10,16.1,1829,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,15.4,96,100900,0,0,369,0,0,0,0,0,0,0,260,1.7,9,9,16.1,725,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,15.0,96,100900,0,0,367,0,0,0,0,0,0,0,280,1.3,9,9,16.1,1455,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,15.0,93,100900,0,0,379,0,0,0,0,0,0,0,280,0.0,10,10,16.0,1394,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,15.1,93,100800,0,0,380,0,0,0,0,0,0,0,310,0.0,10,10,16.1,1341,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,15.5,93,100900,0,0,383,0,0,0,0,0,0,0,310,0.4,10,10,15.9,1305,9,999999999,270,0.0000,0,88,999.000,3.0,1.0 +2012,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,16.4,14.3,87,100900,9,351,380,1,3,1,128,0,125,4,310,2.7,10,10,10.9,957,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,15.2,93,100900,194,1404,380,25,6,24,2766,456,3958,102,230,0.3,10,10,6.0,792,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.6,90,101000,422,1404,386,86,12,82,9345,1169,12552,329,230,0.2,10,10,10.4,600,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.6,87,101000,604,1404,389,139,13,133,14929,1287,19390,519,220,1.5,10,10,16.0,855,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,15.9,87,101000,725,1404,380,242,51,215,27138,3746,24285,1149,270,3.1,9,9,16.1,783,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,16.1,88,100900,777,1404,392,199,14,191,21221,1451,26542,741,250,4.1,10,10,11.2,476,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.5,92,100800,756,1404,391,205,20,195,21950,1986,27168,756,250,4.2,10,10,4.8,443,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.0,89,100800,664,1404,379,201,37,184,22592,2515,20726,962,250,4.3,9,9,16.1,656,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,15.7,87,100700,507,1404,379,146,39,132,16337,2204,14823,658,260,2.8,9,9,16.1,452,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,15.6,87,100700,296,1404,389,50,9,48,5509,821,7633,198,260,3.6,10,10,14.0,304,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,15.9,91,100700,59,926,387,5,6,5,617,0,586,20,250,3.6,10,10,15.4,562,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.7,91,100700,0,0,386,0,0,0,0,0,0,0,250,3.1,10,10,14.7,690,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100700,0,0,386,0,0,0,0,0,0,0,260,3.2,10,10,15.0,575,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,16.5,98,100700,0,0,385,0,0,0,0,0,0,0,240,2.2,10,10,5.8,301,9,999999999,290,0.0000,0,88,999.000,3.0,1.0 +2012,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,17.2,16.1,93,100700,0,0,386,0,0,0,0,0,0,0,240,3.8,10,10,11.9,152,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100800,0,0,386,0,0,0,0,0,0,0,250,5.0,10,10,6.8,207,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.7,91,100800,0,0,386,0,0,0,0,0,0,0,260,3.2,10,10,15.9,395,9,999999999,279,0.0000,0,88,999.000,2.0,1.0 +2012,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,16.8,15.7,93,100800,0,0,384,0,0,0,0,0,0,0,290,4.5,10,10,15.0,240,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.0,87,100800,0,0,374,0,0,0,0,0,0,0,260,2.5,9,9,16.1,582,9,999999999,270,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.9,89,100700,0,0,382,0,0,0,0,0,0,0,260,2.2,10,10,16.1,595,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.3,85,100800,0,0,382,0,0,0,0,0,0,0,270,2.5,10,10,16.1,473,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,14.4,86,100800,0,0,382,0,0,0,0,0,0,0,310,2.6,10,10,12.0,427,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.9,93,100700,0,0,369,0,0,0,0,0,0,0,270,0.2,9,9,16.1,237,9,999999999,259,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.3,89,100800,0,0,368,0,0,0,0,0,0,0,270,1.6,9,9,16.1,402,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,14.3,88,100800,8,332,379,1,8,1,128,0,122,4,290,2.5,10,10,16.1,290,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,14.4,86,100800,190,1404,372,35,16,33,3996,0,3756,146,320,1.6,9,9,16.1,1472,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,14.4,83,100900,418,1404,374,111,33,101,12411,1519,11353,488,240,2.5,9,9,16.1,1389,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,14.4,81,100900,600,1404,369,191,50,170,21372,3345,19065,872,260,2.1,8,8,16.0,1701,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,13.9,76,100900,722,1404,378,230,42,208,25887,3100,23562,1110,270,2.4,9,9,16.1,858,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.0,14.2,78,100800,774,1404,388,190,12,184,20251,1232,25624,714,240,3.6,10,10,13.1,1188,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,15.7,93,100700,754,1404,384,186,13,179,19890,1305,25115,695,240,3.6,10,10,3.4,371,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,16.1,92,100700,662,1404,388,164,16,157,17624,1581,22442,608,210,3.7,10,10,15.1,281,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100700,505,1404,375,144,37,131,16071,2073,14644,649,240,4.9,9,9,16.1,377,9,999999999,279,0.0000,0,88,999.000,3.0,1.0 +2012,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,17.2,16.1,93,100700,295,1404,368,81,46,71,8921,1114,7887,327,250,4.1,8,8,16.0,244,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.8,91,100700,59,925,367,10,44,9,1214,0,1001,37,240,4.1,8,8,16.0,244,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,15.6,90,100700,0,0,375,0,0,0,0,0,0,0,240,4.0,9,9,15.9,273,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100700,0,0,386,0,0,0,0,0,0,0,260,2.6,10,10,14.5,505,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.3,16.1,93,100700,0,0,387,0,0,0,0,0,0,0,250,2.8,10,10,14.5,629,9,999999999,290,0.0000,0,88,999.000,3.0,1.0 +2012,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,17.7,16.0,90,100700,0,0,389,0,0,0,0,0,0,0,230,4.0,10,10,13.5,573,9,999999999,279,0.0000,0,88,999.000,5.0,1.0 +2012,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,17.3,15.6,90,100700,0,0,386,0,0,0,0,0,0,0,240,3.2,10,10,7.2,703,9,999999999,279,0.0000,0,88,999.000,3.0,1.0 +2012,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,17.2,16.1,93,100800,0,0,386,0,0,0,0,0,0,0,230,3.3,10,10,12.1,274,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,100700,0,0,386,0,0,0,0,0,0,0,230,5.0,10,10,6.6,263,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.2,94,100700,0,0,368,0,0,0,0,0,0,0,240,3.9,8,8,7.4,175,9,999999999,290,0.0000,0,88,999.000,6.0,1.0 +2012,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,17.0,17.0,100,100800,0,0,376,0,0,0,0,0,0,0,230,2.7,9,9,3.2,122,9,999999999,300,0.0000,0,88,999.000,3.0,1.0 +2012,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,17.2,16.7,97,100700,0,0,387,0,0,0,0,0,0,0,240,4.0,10,10,0.4,91,9,999999999,300,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.7,97,100700,0,0,387,0,0,0,0,0,0,0,260,3.6,10,10,0.4,91,9,999999999,300,0.0000,0,88,999.000,5.0,1.0 +2012,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,17.1,16.6,97,100800,0,0,386,0,0,0,0,0,0,0,270,3.5,10,10,2.0,91,9,999999999,300,0.0000,0,88,999.000,3.0,1.0 +2012,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,16.7,16.1,96,100800,0,0,384,0,0,0,0,0,0,0,60,2.7,10,10,2.0,91,9,999999999,290,0.0000,0,88,999.000,3.0,1.0 +2012,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,16.6,16.0,96,100900,7,314,383,1,2,1,127,0,126,4,100,3.1,10,10,1.6,91,9,999999999,279,0.0000,0,88,999.000,3.0,1.0 +2012,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,16.2,15.7,97,100900,187,1405,381,21,4,20,2293,322,3310,84,100,3.1,10,10,1.7,94,9,999999999,279,0.0000,0,88,999.000,3.0,1.0 +2012,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,16.7,16.1,96,101000,415,1405,384,83,12,79,9020,1111,12136,318,90,3.0,10,10,2.7,122,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,16.1,93,101000,597,1405,386,130,11,125,14018,1050,18336,488,100,2.6,10,10,8.0,297,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.8,16.1,90,101000,719,1405,379,237,50,212,26630,3590,23899,1129,230,2.7,9,9,14.7,304,9,999999999,290,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,16.0,89,101000,771,1405,379,238,34,219,26838,2459,24869,1184,240,3.5,9,9,16.1,1572,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,15.6,84,100900,751,1405,381,251,50,224,28173,3686,25317,1205,260,2.7,9,9,16.1,6096,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,15.7,86,100800,660,1405,380,207,43,187,23222,2973,21046,977,260,3.5,9,9,16.1,5040,9,999999999,279,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,15.5,90,100800,504,1405,374,142,36,129,15900,1998,14523,643,260,3.7,9,9,16.1,220,9,999999999,270,0.0000,0,88,999.000,3.0,1.0 +2012,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,16.7,14.4,86,100800,294,1405,363,66,24,61,7456,524,6917,283,260,4.1,8,8,16.0,893,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,14.1,84,100800,58,924,364,9,12,9,1054,0,998,36,250,4.1,8,8,16.1,6203,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,14.3,89,100800,0,0,345,0,0,0,0,0,0,0,240,3.1,4,4,16.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.8,83,100900,0,0,341,0,0,0,0,0,0,0,240,3.0,2,2,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100900,0,0,329,0,0,0,0,0,0,0,210,2.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.3,81,100900,0,0,329,0,0,0,0,0,0,0,230,2.5,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.2,83,101000,0,0,326,0,0,0,0,0,0,0,250,1.6,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.9,84,101000,0,0,324,0,0,0,0,0,0,0,120,2.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,17.0,1.0 +2012,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,15.7,13.2,85,101000,0,0,347,0,0,0,0,0,0,0,170,1.0,6,6,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,13.2,90,101000,0,0,353,0,0,0,0,0,0,0,170,0.0,8,8,16.1,7620,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.8,90,101100,0,0,338,0,0,0,0,0,0,0,170,0.0,5,5,15.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,12.8,91,101100,0,0,357,0,0,0,0,0,0,0,350,0.0,9,9,13.3,7620,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.8,93,101100,0,0,348,0,0,0,0,0,0,0,350,0.0,8,8,16.0,7620,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,12.3,90,101100,0,0,335,0,0,0,0,0,0,0,350,0.3,5,5,12.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.8,90,101100,0,0,338,0,0,0,0,0,0,0,350,2.5,5,5,10.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.9,87,101100,6,297,341,1,56,1,130,0,97,3,10,2.6,5,5,4.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,13.3,88,101200,183,1405,342,62,112,47,6796,0,5215,208,30,2.5,5,5,5.2,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,101200,411,1405,370,116,43,104,12969,2012,11624,500,360,1.3,9,9,8.0,4927,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,101200,594,1405,362,189,51,168,21122,3392,18823,858,270,0.0,8,8,8.0,7620,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,13.7,82,101200,716,1405,371,235,49,210,26444,3627,23759,1119,270,3.4,9,9,8.0,6169,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,83,101100,769,1405,367,205,18,195,21693,1779,27152,759,270,3.7,9,9,8.2,4877,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.5,85,101000,749,1405,367,226,32,209,25530,2324,23741,1121,270,4.6,9,9,10.1,4877,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.4,84,101000,659,1405,367,196,34,180,22035,2381,20318,939,280,6.0,9,9,9.8,244,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100900,503,1405,367,151,46,135,16834,2665,15072,669,260,4.3,9,9,12.2,1882,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100900,294,1405,360,76,38,68,8484,962,7615,314,280,3.1,8,8,14.0,6096,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,14.0,88,100900,58,924,359,11,19,10,1215,0,1125,41,280,3.8,8,8,14.3,6096,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100900,0,0,368,0,0,0,0,0,0,0,250,3.5,9,9,14.7,6096,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100900,0,0,355,0,0,0,0,0,0,0,240,2.3,7,7,16.1,6096,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,14.4,90,100900,0,0,328,0,0,0,0,0,0,0,240,0.0,0,0,15.9,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,14.3,90,100900,0,0,338,0,0,0,0,0,0,0,80,0.2,2,2,14.5,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.9,93,100900,0,0,322,0,0,0,0,0,0,0,80,1.3,0,0,14.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,13.8,93,100900,0,0,336,0,0,0,0,0,0,0,100,0.3,3,3,12.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.9,94,100900,0,0,333,0,0,0,0,0,0,0,90,2.0,4,4,13.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,12.7,93,100900,0,0,335,0,0,0,0,0,0,0,90,0.0,5,5,12.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,12.2,96,100800,0,0,329,0,0,0,0,0,0,0,80,0.3,5,5,9.2,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,12.2,100,100800,0,0,356,0,0,0,0,0,0,0,110,1.6,10,10,0.2,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,12.2,100,100700,0,0,356,0,0,0,0,0,0,0,100,2.6,10,10,0.2,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,12.2,100,100700,0,0,356,0,0,0,0,0,0,0,100,2.0,10,10,0.0,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,12.0,100,100800,0,0,345,0,0,0,0,0,0,0,80,1.5,9,9,0.0,30,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,11.8,100,100800,6,280,344,1,6,1,128,0,124,4,100,1.1,9,9,0.4,30,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,12.3,100,100800,179,1406,347,30,12,29,3447,0,3271,126,110,0.0,9,9,0.4,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,12.9,100,100900,408,1406,360,88,16,83,9464,1462,12707,334,140,0.8,10,10,0.4,46,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,13.3,100,100800,590,1406,363,141,16,135,15091,1557,19616,525,130,2.1,10,10,0.8,61,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,13.8,98,100800,713,1406,357,238,52,211,26688,3870,23836,1123,100,0.2,9,9,1.7,79,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,13.9,88,100700,766,1406,366,260,53,232,29299,4047,26191,1250,130,0.7,9,9,2.9,183,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.8,83,100600,747,1406,370,289,95,239,32360,7406,26859,1282,270,3.5,9,9,4.0,5486,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,13.1,78,100600,657,1406,371,240,82,202,26765,6012,22615,1054,250,2.8,9,9,4.6,5486,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.3,81,100500,502,1406,369,157,53,138,17441,3163,15389,683,270,2.7,9,9,6.8,5557,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,83,100500,293,1406,359,72,32,65,8036,768,7321,301,270,3.1,8,8,9.0,5741,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.1,83,100500,58,924,366,7,13,6,807,0,744,26,240,2.8,9,9,7.6,2704,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,100500,0,0,375,0,0,0,0,0,0,0,240,2.5,10,10,6.8,266,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.9,89,100500,0,0,376,0,0,0,0,0,0,0,260,1.6,10,10,9.8,220,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.9,87,100500,0,0,378,0,0,0,0,0,0,0,250,2.6,10,10,12.0,300,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.8,86,100500,0,0,378,0,0,0,0,0,0,0,270,1.5,10,10,12.9,396,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100500,0,0,377,0,0,0,0,0,0,0,220,1.5,10,10,12.9,396,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100500,0,0,377,0,0,0,0,0,0,0,90,1.6,10,10,12.5,396,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,83,100500,0,0,377,0,0,0,0,0,0,0,90,2.1,10,10,9.5,392,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.3,84,100500,0,0,377,0,0,0,0,0,0,0,60,2.2,10,10,7.7,366,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.2,86,100400,0,0,374,0,0,0,0,0,0,0,50,2.5,10,10,4.8,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100400,0,0,374,0,0,0,0,0,0,0,80,2.2,10,10,4.8,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.8,83,100300,0,0,374,0,0,0,0,0,0,0,40,3.1,10,10,4.8,366,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.1,83,100300,0,0,337,0,0,0,0,0,0,0,20,2.0,4,4,6.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.7,83,100300,0,0,332,0,0,0,0,0,0,0,40,1.6,3,3,6.2,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.9,84,100300,5,263,337,0,0,0,0,0,0,0,40,0.0,5,5,4.4,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.2,80,100300,176,1406,363,31,14,29,3505,0,3310,127,70,2.2,9,9,4.0,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,12.2,80,100400,404,1406,363,106,33,97,11910,1504,10887,465,110,2.5,9,9,4.1,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.2,75,100400,587,1406,361,194,60,169,21671,4068,18979,865,110,1.5,8,8,4.8,4927,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,12.2,72,100300,710,1406,364,261,80,221,29255,6164,24856,1173,110,2.0,8,8,6.6,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.9,12.3,66,100200,764,1406,359,369,227,245,41325,18141,27627,1322,270,1.7,5,5,8.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,12.9,69,100100,746,1406,356,389,305,228,43736,23453,25702,1221,270,3.8,4,4,8.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.7,13.3,75,100000,656,1406,334,464,762,108,54389,42914,12742,566,270,5.6,0,0,8.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,13.3,78,100000,502,1406,331,319,608,102,36401,30960,11705,508,260,4.9,0,0,7.9,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100000,293,1406,329,160,437,69,17754,11143,7646,315,250,3.6,0,0,6.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.4,13.3,82,100000,58,926,334,19,272,8,2259,0,944,34,270,3.9,1,1,7.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.3,84,100000,0,0,340,0,0,0,0,0,0,0,270,4.0,3,3,8.2,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100100,0,0,341,0,0,0,0,0,0,0,270,2.9,4,4,9.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.4,86,100100,0,0,339,0,0,0,0,0,0,0,250,1.5,3,3,11.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,13.9,88,100100,0,0,345,0,0,0,0,0,0,0,280,0.6,5,5,9.7,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,14.0,88,100200,0,0,344,0,0,0,0,0,0,0,240,0.1,4,4,11.1,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.2,13.1,87,100200,0,0,345,0,0,0,0,0,0,0,60,1.7,6,6,7.0,274,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,13.2,91,100200,0,0,360,0,0,0,0,0,0,0,60,1.1,9,9,6.0,2106,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.7,12.9,95,100100,0,0,341,0,0,0,0,0,0,0,90,0.4,7,7,4.4,6706,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,12.8,97,100100,0,0,327,0,0,0,0,0,0,0,110,1.3,3,3,2.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,12.8,97,100100,0,0,332,0,0,0,0,0,0,0,130,0.3,5,5,2.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,12.8,100,100100,0,0,360,0,0,0,0,0,0,0,130,0.0,10,10,0.1,15,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,12.8,99,100100,0,0,360,0,0,0,0,0,0,0,80,1.5,10,10,0.0,30,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,12.8,97,100200,0,0,362,0,0,0,0,0,0,0,130,1.3,10,10,0.0,30,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,13.3,100,100200,4,246,363,0,0,0,0,0,0,0,130,1.3,10,10,0.0,30,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,12.2,100,100300,173,1406,356,17,3,17,1891,252,2774,70,130,0.0,10,10,0.0,33,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,12.1,100,100300,401,1406,355,67,7,65,7219,615,10021,260,270,0.0,10,10,0.4,61,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,12.8,100,100400,584,1406,360,111,6,108,11915,637,15982,423,270,0.0,10,10,1.2,137,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,13.2,85,100300,707,1406,352,317,178,228,35349,13765,25501,1207,270,0.0,7,7,2.1,244,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,13.2,85,100300,762,1406,348,366,224,245,40986,17713,27556,1319,270,4.7,6,6,3.0,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.8,81,100200,744,1406,343,412,374,215,46519,27984,24334,1151,290,3.3,4,4,4.2,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,13.3,80,100200,655,1406,344,340,311,195,37967,22427,21885,1017,270,3.9,3,3,6.2,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,13.3,81,100100,501,1406,343,253,309,143,28033,18682,15906,708,290,2.8,3,3,4.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100100,293,1406,341,120,185,82,13190,5710,8989,376,270,4.1,3,3,4.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.1,83,100100,58,928,343,17,93,13,1924,0,1496,56,270,3.5,4,4,3.9,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.3,86,100100,0,0,342,0,0,0,0,0,0,0,270,2.3,4,4,4.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.3,86,100100,0,0,339,0,0,0,0,0,0,0,290,3.4,3,3,9.3,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.4,87,100200,0,0,341,0,0,0,0,0,0,0,260,1.6,4,4,6.8,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.9,90,100200,0,0,339,0,0,0,0,0,0,0,240,2.0,3,3,9.3,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,13.9,90,100200,0,0,339,0,0,0,0,0,0,0,140,1.5,3,3,6.4,77777,9,999999999,250,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,13.8,93,100200,0,0,333,0,0,0,0,0,0,0,170,1.3,2,2,6.4,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.2,93,100200,0,0,319,0,0,0,0,0,0,0,170,0.0,0,0,6.2,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,12.2,92,100200,0,0,330,0,0,0,0,0,0,0,100,0.0,4,4,4.3,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.5,11.4,93,100100,0,0,356,0,0,0,0,0,0,0,100,0.0,10,10,0.3,51,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,12.8,100,100200,0,0,360,0,0,0,0,0,0,0,20,0.0,10,10,0.2,30,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,12.8,100,100200,0,0,360,0,0,0,0,0,0,0,70,0.0,10,10,0.4,30,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,12.2,100,100200,0,0,356,0,0,0,0,0,0,0,70,1.3,10,10,0.4,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,12.1,100,100200,0,0,355,0,0,0,0,0,0,0,60,0.5,10,10,0.2,30,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,12.9,100,100200,4,230,360,0,0,0,0,0,0,0,10,1.9,10,10,0.6,48,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,12.9,99,100300,169,1407,361,23,7,22,2665,0,2568,97,120,1.9,10,10,0.8,68,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,13.3,96,100300,398,1407,366,93,22,87,10478,899,9819,416,40,0.2,10,10,1.7,193,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.3,90,100400,581,1407,371,144,19,137,15392,1826,19896,533,40,2.1,10,10,2.0,274,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,13.2,85,100300,705,1407,375,212,34,195,23909,2419,22114,1034,120,0.4,10,10,2.5,279,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.0,82,100300,760,1407,376,205,19,195,21706,1916,27146,757,120,0.0,10,10,3.1,352,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.6,12.9,74,100200,743,1407,356,352,216,238,39397,16984,26801,1278,90,0.7,6,6,4.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.3,12.8,70,100100,654,1407,347,367,403,180,41315,28092,20335,939,260,0.3,2,2,4.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.1,12.8,71,100100,501,1407,335,370,862,63,43799,36056,7488,313,260,2.8,0,0,4.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,12.8,78,100100,293,1407,343,114,155,82,12493,4818,8996,376,250,4.1,3,3,4.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,12.9,80,100100,59,931,344,16,147,10,1805,0,1099,40,280,4.1,4,4,4.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.8,84,100100,0,0,343,0,0,0,0,0,0,0,280,4.5,5,5,5.2,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.8,87,100100,0,0,338,0,0,0,0,0,0,0,270,3.6,4,4,8.4,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.8,87,100200,0,0,335,0,0,0,0,0,0,0,280,3.5,3,3,10.8,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.8,87,100200,0,0,360,0,0,0,0,0,0,0,240,2.0,9,9,7.9,358,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.8,90,100200,0,0,368,0,0,0,0,0,0,0,270,1.3,10,10,6.6,305,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.8,86,100300,0,0,371,0,0,0,0,0,0,0,270,0.2,10,10,7.9,305,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.9,85,100300,0,0,373,0,0,0,0,0,0,0,100,1.9,10,10,6.2,305,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.2,89,100300,0,0,371,0,0,0,0,0,0,0,100,0.2,10,10,5.0,312,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100300,0,0,370,0,0,0,0,0,0,0,100,1.7,10,10,6.2,366,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.1,83,100300,0,0,370,0,0,0,0,0,0,0,130,3.0,10,10,5.0,373,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100300,0,0,369,0,0,0,0,0,0,0,50,2.6,10,10,6.0,444,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.7,84,100400,0,0,366,0,0,0,0,0,0,0,70,2.1,10,10,6.2,488,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,11.7,86,100400,0,0,364,0,0,0,0,0,0,0,80,2.2,10,10,4.8,488,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,11.9,87,100500,3,215,365,0,0,0,0,0,0,0,40,3.1,10,10,3.7,488,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,11.0,81,100500,166,1407,365,17,4,17,1873,278,2751,70,160,1.5,10,10,4.0,455,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.6,80,100600,394,1407,359,102,31,93,11386,1373,10445,444,20,2.1,9,9,3.4,427,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100600,578,1407,339,235,137,179,26123,9714,19975,913,150,2.1,5,5,4.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.8,11.8,72,100600,702,1407,343,375,334,208,42070,25075,23435,1099,260,0.3,3,3,4.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.1,12.1,72,100500,758,1407,344,389,285,235,43656,22353,26559,1266,260,2.7,3,3,4.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,11.7,72,100400,741,1407,342,399,340,220,44945,26034,24900,1178,260,3.7,3,3,5.0,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,11.8,73,100400,653,1407,342,323,264,200,36050,19614,22469,1045,270,4.1,3,3,6.2,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.2,75,100400,500,1407,342,239,257,147,26425,16032,16383,731,270,4.1,3,3,4.8,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,12.2,78,100500,293,1407,340,116,164,82,12738,5207,9012,376,250,4.1,3,3,4.8,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,12.1,78,100500,59,934,347,14,106,10,1632,0,1120,41,270,3.8,6,6,4.4,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,12.3,81,100600,0,0,363,0,0,0,0,0,0,0,270,3.5,9,9,4.5,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.7,83,100600,0,0,363,0,0,0,0,0,0,0,270,2.6,9,9,8.0,7620,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,12.3,83,100600,0,0,360,0,0,0,0,0,0,0,270,2.3,9,9,7.9,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.7,83,100700,0,0,355,0,0,0,0,0,0,0,270,0.0,8,8,6.2,7620,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,12.2,84,100700,0,0,337,0,0,0,0,0,0,0,360,0.2,4,4,4.8,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.3,87,100800,0,0,332,0,0,0,0,0,0,0,360,1.3,3,3,4.8,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,12.6,87,100800,0,0,334,0,0,0,0,0,0,0,360,0.0,3,3,4.4,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.6,90,100800,0,0,326,0,0,0,0,0,0,0,360,0.0,3,3,3.2,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,11.1,93,100800,0,0,321,0,0,0,0,0,0,0,360,0.0,3,3,3.0,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,10.5,90,100800,0,0,319,0,0,0,0,0,0,0,50,0.0,3,3,2.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,10.0,93,100800,0,0,315,0,0,0,0,0,0,0,50,0.0,3,3,2.4,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,9.3,92,100700,0,0,311,0,0,0,0,0,0,0,50,0.0,3,3,5.1,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,8.6,78,100700,0,0,318,0,0,0,0,0,0,0,50,1.3,3,3,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,6.6,66,100800,3,200,324,0,0,0,0,0,0,0,50,0.0,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,5.7,58,100800,163,1407,324,62,164,43,6792,0,4715,186,300,0.0,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.9,3.0,37,100900,391,1407,338,207,380,101,23065,19235,11319,482,300,0.2,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,4.0,37,100900,576,1407,344,318,397,156,35793,27642,17591,792,300,2.1,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,10.7,61,100800,700,1407,334,562,997,66,69039,51270,8145,350,260,3.1,0,0,13.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,11.7,63,100800,756,1407,338,520,703,143,60816,45005,16762,768,260,3.2,0,0,9.5,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,11.5,60,100700,740,1407,340,518,735,132,60764,45811,15494,705,280,3.5,0,0,8.6,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.4,10.1,55,100600,653,1407,345,352,356,187,39549,25918,21129,977,280,3.0,1,1,13.3,77777,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.7,11.9,65,100600,500,1407,352,238,254,147,26337,15931,16402,732,260,3.3,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.2,13.3,78,100600,294,1407,346,106,122,81,11668,3719,8911,372,270,4.6,3,3,16.0,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.9,13.0,78,100600,60,938,344,17,61,14,1852,0,1568,59,270,4.1,3,3,13.5,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.7,78,100600,0,0,339,0,0,0,0,0,0,0,270,3.4,2,2,11.6,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,12.3,78,100600,0,0,326,0,0,0,0,0,0,0,260,1.9,0,0,14.7,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.9,79,100600,0,0,329,0,0,0,0,0,0,0,260,0.0,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,13.3,84,100600,0,0,327,0,0,0,0,0,0,0,170,0.2,0,0,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.9,13.1,83,100600,0,0,326,0,0,0,0,0,0,0,170,1.3,0,0,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.6,83,100600,0,0,318,0,0,0,0,0,0,0,100,0.2,0,0,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,11.1,79,100600,0,0,319,0,0,0,0,0,0,0,100,1.3,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,10.9,87,100500,0,0,311,0,0,0,0,0,0,0,100,0.3,0,0,15.5,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,9.4,89,100500,0,0,317,0,0,0,0,0,0,0,100,2.5,4,4,11.8,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,9.1,85,100500,0,0,316,0,0,0,0,0,0,0,110,2.0,3,3,15.7,77777,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,7.2,80,100500,0,0,309,0,0,0,0,0,0,0,130,1.5,3,3,12.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,6.0,71,100500,0,0,310,0,0,0,0,0,0,0,60,2.2,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,4.9,65,100500,0,0,310,0,0,0,0,0,0,0,90,2.3,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,4.0,59,100500,2,186,316,0,0,0,0,0,0,0,50,0.2,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,5.0,58,100600,160,1408,323,52,103,41,5765,0,4488,177,50,2.0,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,5.4,52,100600,388,1408,333,176,235,111,19455,12374,12326,530,120,1.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,8.3,60,100600,573,1408,341,272,240,174,30244,17184,19447,885,120,1.5,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.5,11.0,66,100500,698,1408,348,386,379,198,43526,28024,22468,1049,130,1.6,4,4,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.3,10.9,58,100400,755,1408,353,418,372,219,47228,28509,24835,1176,190,2.4,3,3,15.9,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.4,13.3,72,100300,739,1408,352,410,377,212,46268,27982,24076,1137,250,4.5,3,3,14.5,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.8,13.0,69,100300,652,1408,350,353,360,187,39621,25505,21014,973,260,3.6,2,2,14.7,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,18.2,11.2,64,100300,500,1408,334,322,628,99,36891,32378,11382,492,260,3.7,0,0,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,11.9,70,100200,294,1408,345,113,150,82,12435,4794,9035,377,260,4.1,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,12.8,78,100200,60,943,343,17,75,14,1930,0,1577,60,260,4.1,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.3,84,100300,0,0,340,0,0,0,0,0,0,0,260,4.1,3,3,16.1,77777,9,999999999,240,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,13.2,86,100300,0,0,341,0,0,0,0,0,0,0,250,4.0,4,4,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.7,83,100300,0,0,337,0,0,0,0,0,0,0,250,3.0,3,3,16.1,77777,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.2,83,100300,0,0,335,0,0,0,0,0,0,0,260,2.0,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.1,83,100300,0,0,334,0,0,0,0,0,0,0,180,1.3,3,3,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.7,81,100300,0,0,334,0,0,0,0,0,0,0,180,0.0,3,3,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.8,85,100300,0,0,333,0,0,0,0,0,0,0,110,0.5,4,4,16.1,77777,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.2,90,100300,0,0,347,0,0,0,0,0,0,0,110,0.3,8,8,14.5,427,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.2,90,100200,0,0,335,0,0,0,0,0,0,0,120,1.5,5,5,14.3,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,12.1,88,100200,0,0,355,0,0,0,0,0,0,0,90,1.5,9,9,12.9,671,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.7,84,100200,0,0,366,0,0,0,0,0,0,0,80,1.5,10,10,12.0,671,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.6,86,100200,0,0,364,0,0,0,0,0,0,0,100,2.8,10,10,12.9,678,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.1,83,100200,0,0,363,0,0,0,0,0,0,0,100,4.0,10,10,12.5,724,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.1,83,100200,2,171,353,0,0,0,0,0,0,0,130,3.3,9,9,9.7,761,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,11.1,83,100200,157,1408,354,24,10,23,2738,0,2614,99,110,3.5,9,9,9.8,1372,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,11.1,80,100300,386,1408,356,96,28,89,10789,1190,9962,421,120,2.5,9,9,11.5,1364,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100300,570,1408,351,176,46,157,19720,3077,17697,800,100,1.5,8,8,12.0,1268,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.8,68,100200,696,1408,360,224,46,201,25216,3459,22772,1064,130,1.7,9,9,12.9,952,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,8.3,62,100100,753,1408,369,190,14,182,19878,1411,25453,707,190,3.4,10,10,13.3,1062,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,8.3,60,100100,738,1408,371,206,23,194,21541,2287,27064,752,150,1.6,10,10,16.1,1515,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,8.2,58,100000,652,1408,373,177,24,166,18583,2338,23676,645,150,2.8,10,10,16.1,1629,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,7.9,58,100000,501,1408,370,126,23,118,14230,1342,13350,584,190,3.9,10,10,16.1,1344,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,8.3,60,99900,295,1408,371,47,8,45,5039,660,7145,185,160,2.6,10,10,16.0,1829,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,8.6,61,99900,61,949,371,5,4,5,575,0,551,19,170,2.3,10,10,16.0,1829,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,8.8,62,99900,0,0,371,0,0,0,0,0,0,0,170,2.2,10,10,16.1,1829,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,8.4,62,99900,0,0,368,0,0,0,0,0,0,0,140,2.9,10,10,16.1,1846,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,9.0,65,99900,0,0,369,0,0,0,0,0,0,0,170,1.6,10,10,16.1,1998,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,9.7,68,99900,0,0,370,0,0,0,0,0,0,0,260,2.7,10,10,16.1,2116,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.7,84,99900,0,0,366,0,0,0,0,0,0,0,260,3.0,10,10,16.1,1881,9,999999999,209,0.0000,0,88,999.000,3.0,1.0 +2012,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,14.3,11.8,85,99900,0,0,366,0,0,0,0,0,0,0,260,2.6,10,10,13.9,930,9,999999999,209,0.0000,0,88,999.000,14.0,1.0 +2012,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,13.1,12.0,93,99900,0,0,360,0,0,0,0,0,0,0,200,3.8,10,10,7.6,255,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.1,89,99900,0,0,354,0,0,0,0,0,0,0,240,2.3,9,9,16.1,1094,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.7,87,99800,0,0,354,0,0,0,0,0,0,0,300,3.4,9,9,16.1,610,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.6,86,99700,0,0,364,0,0,0,0,0,0,0,290,2.2,10,10,16.1,613,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,10.6,81,99700,0,0,363,0,0,0,0,0,0,0,320,3.1,10,10,16.0,643,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.1,87,99700,0,0,350,0,0,0,0,0,0,0,320,1.5,9,9,16.1,900,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,10.5,83,99700,0,0,350,0,0,0,0,0,0,0,280,2.7,9,9,16.1,1506,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,10.1,78,99700,2,157,351,0,0,0,0,0,0,0,280,3.2,9,9,16.1,1460,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.5,11.1,85,99700,154,1408,351,23,9,22,2606,0,2494,94,260,0.0,9,9,16.1,1690,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,9.3,75,99800,383,1408,350,92,25,85,10341,1039,9622,405,260,3.2,9,9,16.1,746,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,7.8,67,99800,568,1408,342,163,34,149,18336,2291,16843,756,280,3.6,8,8,16.0,1236,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.2,66,99800,694,1408,352,214,38,195,24162,2874,22140,1031,250,2.8,9,9,16.1,1709,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,7.1,61,99700,752,1408,351,222,29,207,25239,2237,23592,1110,240,4.7,9,9,16.1,4267,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.6,57,99600,737,1408,346,276,84,232,31005,6821,26222,1242,270,5.2,8,8,16.1,4267,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,6.1,56,99600,652,1408,332,299,202,205,33388,15848,23051,1071,240,5.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,6.0,58,99600,501,1408,330,216,183,151,23991,12227,16860,751,250,4.7,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,5.6,57,99500,296,1408,327,99,92,79,10893,3170,8797,365,270,5.1,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.6,5.9,60,99500,61,956,326,16,46,14,1785,0,1563,59,270,4.3,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,6.0,61,99500,0,0,325,0,0,0,0,0,0,0,270,3.7,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,5.0,57,99600,0,0,324,0,0,0,0,0,0,0,270,4.4,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,4.9,57,99600,0,0,321,0,0,0,0,0,0,0,300,2.6,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,4.4,55,99600,0,0,318,0,0,0,0,0,0,0,320,2.6,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,4.4,57,99600,0,0,321,0,0,0,0,0,0,0,10,2.7,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,4.5,62,99600,0,0,316,0,0,0,0,0,0,0,10,3.4,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,4.9,66,99600,0,0,314,0,0,0,0,0,0,0,10,2.1,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,4.3,68,99600,0,0,308,0,0,0,0,0,0,0,20,2.2,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,3.2,63,99600,0,0,307,0,0,0,0,0,0,0,20,2.7,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,2.9,62,99600,0,0,307,0,0,0,0,0,0,0,20,3.0,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,3.3,68,99700,0,0,303,0,0,0,0,0,0,0,30,2.1,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.8,2.9,67,99700,0,0,302,0,0,0,0,0,0,0,20,2.3,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.0,3.4,73,99800,0,0,299,0,0,0,0,0,0,0,30,0.3,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,3.9,69,99900,2,145,305,0,0,0,0,0,0,0,30,2.3,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.7,4.0,68,99900,152,1408,318,29,20,27,3324,0,3086,118,90,0.4,8,8,16.1,6096,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,5.1,63,100000,380,1408,318,176,256,107,19500,13062,11908,510,90,3.5,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,6.1,62,100100,566,1408,325,266,235,172,29633,16934,19217,872,130,2.6,5,5,16.0,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,4.8,54,100100,692,1408,346,262,92,217,29372,7400,24430,1145,160,3.3,9,9,16.1,4984,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,3.4,49,100100,751,1408,344,237,39,216,26823,3110,24599,1159,240,4.8,9,9,16.1,1189,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,3.8,51,100000,737,1408,344,234,41,213,26503,3266,24192,1137,240,6.0,9,9,16.1,1228,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,3.2,51,100100,652,1408,341,185,29,172,21030,2135,19594,897,260,4.7,9,9,16.1,1701,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,2.9,50,100100,502,1408,350,114,16,109,12012,1499,16154,429,250,5.9,10,10,16.1,2994,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,3.3,55,100200,297,1408,345,40,5,39,4279,404,6191,159,250,7.2,10,10,16.0,2521,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,3.0,55,100200,62,963,334,7,2,7,821,0,809,29,220,4.2,9,9,16.0,1927,9,999999999,110,0.0000,0,88,999.000,3.0,1.0 +2012,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,11.6,3.0,56,100200,0,0,333,0,0,0,0,0,0,0,220,1.6,9,9,16.1,1384,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,4.4,64,100200,0,0,341,0,0,0,0,0,0,0,110,2.2,10,10,16.1,1317,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,4.4,64,100300,0,0,341,0,0,0,0,0,0,0,110,3.2,10,10,16.1,1782,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,4.5,64,100300,0,0,341,0,0,0,0,0,0,0,110,3.5,10,10,16.1,1383,9,999999999,129,0.0000,0,88,999.000,5.0,1.0 +2012,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,10.5,5.6,72,100400,0,0,340,0,0,0,0,0,0,0,40,3.1,10,10,16.1,1020,9,999999999,139,0.0000,0,88,999.000,5.0,1.0 +2012,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,10.0,5.7,75,100400,0,0,338,0,0,0,0,0,0,0,50,3.0,10,10,16.1,1120,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,6.2,78,100400,0,0,338,0,0,0,0,0,0,0,40,2.7,10,10,16.1,1333,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.0,6.6,85,100300,0,0,334,0,0,0,0,0,0,0,90,3.0,10,10,16.1,3136,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,6.1,80,100300,0,0,335,0,0,0,0,0,0,0,70,2.0,10,10,16.1,1486,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.0,79,100300,0,0,336,0,0,0,0,0,0,0,90,1.6,10,10,16.1,1372,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,5.6,74,100400,0,0,338,0,0,0,0,0,0,0,330,2.8,10,10,16.0,891,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,6.1,77,100400,0,0,328,0,0,0,0,0,0,0,360,0.2,9,9,16.1,853,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,5.9,78,100500,0,0,319,0,0,0,0,0,0,0,360,2.2,8,8,16.1,1250,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,4.4,68,100500,1,133,309,0,0,0,0,0,0,0,310,3.2,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,4.2,62,100500,149,1409,314,46,86,37,5073,0,4075,159,320,3.7,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,2.7,52,100600,378,1409,317,164,208,109,18157,10857,12051,516,320,4.0,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,2.2,49,100600,564,1409,319,248,186,174,27629,13756,19447,881,300,3.6,5,5,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,3.2,50,100600,691,1409,322,331,231,218,37058,18729,24513,1148,260,3.7,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,2.9,48,100500,750,1409,324,337,176,244,37885,14907,27514,1309,260,4.2,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,3.3,49,100400,736,1409,325,350,219,236,39318,18271,26612,1261,250,4.7,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,3.3,47,100400,652,1409,327,306,221,204,34255,17501,22946,1065,250,5.7,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,3.3,46,100400,502,1409,349,157,53,138,17513,3454,15450,683,250,5.8,9,9,16.1,7514,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,3.3,47,100400,298,1409,339,79,41,70,8831,1326,7880,324,270,6.7,8,8,16.0,7620,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,4.5,53,100400,63,971,339,12,21,11,1333,0,1228,45,280,6.7,8,8,16.0,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,5.4,57,100400,0,0,346,0,0,0,0,0,0,0,280,6.2,9,9,16.1,7442,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,3.9,51,100400,0,0,345,0,0,0,0,0,0,0,280,2.8,9,9,16.1,6096,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,4.0,51,100500,0,0,345,0,0,0,0,0,0,0,270,4.6,9,9,16.1,5811,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,4.6,54,100500,0,0,345,0,0,0,0,0,0,0,290,4.8,9,9,16.1,3622,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,6.1,59,100600,0,0,357,0,0,0,0,0,0,0,270,6.7,10,10,16.1,3264,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,6.0,59,100700,0,0,357,0,0,0,0,0,0,0,280,6.8,10,10,16.1,2519,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,5.6,58,100700,0,0,356,0,0,0,0,0,0,0,280,7.3,10,10,16.1,1963,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,5.5,59,100700,0,0,353,0,0,0,0,0,0,0,270,4.3,10,10,16.1,1793,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,5.1,58,100700,0,0,353,0,0,0,0,0,0,0,270,2.1,10,10,16.1,1481,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,6.0,61,100700,0,0,354,0,0,0,0,0,0,0,70,1.9,10,10,16.1,1158,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,5.6,60,100800,0,0,354,0,0,0,0,0,0,0,70,0.0,10,10,16.0,1129,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.1,64,100700,0,0,352,0,0,0,0,0,0,0,80,0.3,10,10,16.1,921,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,6.3,65,100800,0,0,352,0,0,0,0,0,0,0,80,2.6,10,10,16.1,949,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,6.8,70,100900,1,121,340,0,0,0,0,0,0,0,50,2.7,9,9,16.1,865,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,7.1,70,100900,147,1409,351,14,3,14,1535,244,2282,58,70,2.9,10,10,16.1,964,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.3,67,100900,375,1409,356,74,13,71,7904,1134,10894,285,60,4.2,10,10,16.1,956,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.8,69,101000,562,1409,356,126,13,121,13317,1260,17739,473,70,5.1,10,10,16.0,1210,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.5,75,101000,689,1409,355,181,19,171,18954,1881,24254,664,70,5.0,10,10,14.7,744,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.0,80,100900,749,1409,359,177,11,172,18681,1087,24086,666,80,4.3,10,10,16.1,641,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.0,80,100800,736,1409,359,201,21,190,21068,2076,26535,736,100,5.6,10,10,16.1,869,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.1,81,100800,652,1409,359,179,25,167,18835,2444,23858,649,90,4.5,10,10,14.6,728,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,10.7,88,100800,503,1409,357,123,21,116,13059,1965,17126,455,90,4.1,10,10,4.4,488,9,999999999,200,0.0000,0,88,999.000,5.0,1.0 +2012,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,12.2,10.6,90,100800,299,1409,354,47,7,45,5044,623,7131,185,90,4.1,10,10,6.0,814,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.9,92,100800,64,979,354,6,6,6,700,0,666,23,100,3.6,10,10,6.2,738,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,11.1,94,100800,0,0,354,0,0,0,0,0,0,0,100,3.3,10,10,4.9,457,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,11.3,94,100800,0,0,355,0,0,0,0,0,0,0,80,3.1,10,10,11.3,612,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,11.1,93,100900,0,0,355,0,0,0,0,0,0,0,80,3.2,10,10,14.2,644,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,10.7,87,100900,0,0,357,0,0,0,0,0,0,0,70,3.5,10,10,13.7,629,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100900,0,0,358,0,0,0,0,0,0,0,60,2.7,10,10,8.4,549,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100900,0,0,358,0,0,0,0,0,0,0,40,3.6,10,10,11.6,549,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100900,0,0,358,0,0,0,0,0,0,0,50,3.7,10,10,14.5,538,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100900,0,0,358,0,0,0,0,0,0,0,70,3.9,10,10,14.5,460,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,11.0,88,100900,0,0,358,0,0,0,0,0,0,0,50,2.1,10,10,11.3,1050,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,11.1,87,100900,0,0,360,0,0,0,0,0,0,0,90,2.1,10,10,11.5,488,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,100900,0,0,358,0,0,0,0,0,0,0,90,2.1,10,10,12.0,639,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.0,89,100900,0,0,357,0,0,0,0,0,0,0,80,2.0,10,10,14.5,959,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,10.6,86,100900,0,0,348,0,0,0,0,0,0,0,80,1.5,9,9,14.5,1067,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,10.6,83,100900,1,110,350,0,0,0,0,0,0,0,70,1.6,9,9,14.7,1067,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,10.6,80,100900,144,1409,353,23,12,22,2616,0,2484,93,70,2.0,9,9,16.1,1081,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,10.6,77,100900,373,1409,355,100,37,90,11140,1567,10081,426,70,1.5,9,9,16.1,1181,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.6,72,101000,560,1409,371,135,17,128,14329,1689,18767,501,160,1.3,10,10,16.0,1128,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,10.5,69,100900,688,1409,363,228,53,202,25594,3954,22821,1066,160,0.2,9,9,16.1,1128,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,10.0,67,100700,748,1409,363,231,36,212,26190,2747,24153,1139,160,1.7,9,9,16.1,1120,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.7,9.9,64,100600,736,1409,366,243,49,218,27434,3816,24662,1164,250,3.1,9,9,16.1,1074,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,8.9,60,100600,653,1409,364,203,42,183,22844,3089,20734,956,270,3.3,9,9,16.1,1128,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,9.0,63,100500,504,1409,362,147,41,132,16479,2515,14889,658,270,4.6,9,9,16.1,1135,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,9.4,65,100600,300,1409,354,74,32,67,8288,904,7550,310,280,4.6,8,8,16.0,1189,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.8,9.7,67,100500,65,988,361,9,18,8,1067,0,968,35,270,4.9,9,9,16.0,1189,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.1,70,100500,0,0,360,0,0,0,0,0,0,0,270,5.0,9,9,16.1,1192,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.6,72,100500,0,0,361,0,0,0,0,0,0,0,280,4.7,9,9,16.1,1236,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.7,73,100600,0,0,361,0,0,0,0,0,0,0,280,5.0,9,9,16.1,1386,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100600,0,0,369,0,0,0,0,0,0,0,260,4.5,10,10,16.1,1486,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,11.2,79,100600,0,0,368,0,0,0,0,0,0,0,250,4.2,10,10,16.1,1440,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,12.1,87,100500,0,0,366,0,0,0,0,0,0,0,260,4.4,10,10,16.1,1433,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,13.0,94,100500,0,0,366,0,0,0,0,0,0,0,270,4.2,10,10,14.5,807,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.6,88,100400,0,0,358,0,0,0,0,0,0,0,270,2.1,9,9,16.1,663,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.1,78,100300,0,0,369,0,0,0,0,0,0,0,220,2.2,10,10,16.1,610,9,999999999,200,0.0000,0,88,999.000,15.0,1.0 +2012,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,14.7,11.4,81,100200,0,0,368,0,0,0,0,0,0,0,180,2.6,10,10,12.4,517,9,999999999,209,0.0000,0,88,999.000,20.0,1.0 +2012,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,13.3,12.2,93,100100,0,0,361,0,0,0,0,0,0,0,170,2.1,10,10,3.2,358,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,12.5,96,100100,0,0,361,0,0,0,0,0,0,0,190,4.8,10,10,5.1,206,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.8,93,100000,0,0,365,0,0,0,0,0,0,0,190,4.9,10,10,12.5,1024,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,13.1,92,100000,1,98,358,0,0,0,0,0,0,0,200,4.3,9,9,14.7,341,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,12.2,86,100000,142,1409,357,24,14,23,2748,0,2591,98,270,5.8,9,9,16.1,1361,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,12.1,83,100100,371,1409,360,100,38,90,11146,1573,10060,426,280,6.3,9,9,16.1,2069,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,11.7,81,100000,558,1409,352,175,50,155,19505,3250,17381,783,270,7.2,8,8,16.0,2707,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.5,72,100000,687,1409,360,226,51,201,25376,3838,22683,1059,270,9.1,9,9,16.1,2544,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,9.2,68,99900,747,1409,349,252,53,224,28448,4186,25404,1203,270,11.4,8,8,16.1,3353,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,7.5,61,99800,736,1409,335,349,217,236,39125,17735,26556,1260,270,12.3,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,5.7,50,99800,653,1409,338,310,228,204,34603,17851,22901,1063,270,11.6,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,5.8,51,99800,505,1409,335,250,289,146,27767,18997,16323,726,290,9.3,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,-1.1,32,99900,302,1409,322,123,181,85,13594,7139,9355,390,350,5.1,3,3,16.0,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,-2.3,31,99900,67,998,317,21,90,16,2300,0,1826,69,350,6.5,3,3,16.0,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,-3.4,30,99900,0,0,312,0,0,0,0,0,0,0,350,7.5,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,-4.0,29,100000,0,0,308,0,0,0,0,0,0,0,330,5.8,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,-5.3,28,100100,0,0,299,0,0,0,0,0,0,0,350,6.8,2,2,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,-7.0,25,100200,0,0,286,0,0,0,0,0,0,0,350,7.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,-5.3,31,100400,0,0,298,0,0,0,0,0,0,0,330,5.0,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,-2.8,40,100500,0,0,296,0,0,0,0,0,0,0,340,4.7,3,3,16.1,77777,9,999999999,80,0.0000,0,88,999.000,18.0,1.0 +2012,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,10.0,-3.3,38,100500,0,0,296,0,0,0,0,0,0,0,310,5.7,3,3,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,12,19,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.9,-6.6,29,100600,0,0,292,0,0,0,0,0,0,0,320,9.7,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,-5.6,33,100600,0,0,291,0,0,0,0,0,0,0,320,5.2,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,-5.5,33,100700,0,0,291,0,0,0,0,0,0,0,360,5.9,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,-5.0,35,100700,0,0,291,0,0,0,0,0,0,0,330,7.2,3,3,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,-5.1,36,100800,0,0,286,0,0,0,0,0,0,0,320,4.5,2,2,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,-5.7,34,100800,0,0,277,0,0,0,0,0,0,0,330,6.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,-6.1,33,100800,1,90,277,0,0,0,0,0,0,0,350,2.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,-6.0,31,101000,140,1410,281,74,439,30,8279,0,3398,131,70,1.6,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.3,-5.1,32,101100,369,1410,283,241,674,64,27718,26625,7411,303,50,2.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,-5.6,28,101100,557,1410,290,398,799,83,47059,45098,9824,419,50,2.6,0,0,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,-8.3,21,101100,686,1410,290,512,861,93,61456,53708,11225,491,250,0.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,-8.2,20,101100,747,1410,294,567,886,97,68532,56613,11800,522,250,1.7,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,-7.5,20,101100,736,1410,297,557,882,97,67269,56032,11693,516,280,3.4,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,-9.1,17,101000,654,1410,297,484,847,91,57847,52061,10899,474,250,2.1,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,-7.4,20,101000,506,1410,300,355,770,78,41669,41242,9223,389,270,2.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,-8.9,17,101100,303,1410,300,189,615,56,21553,18574,6438,259,310,3.1,0,0,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,-6.8,21,101100,68,1009,300,36,308,21,3934,0,2314,89,310,2.8,0,0,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,-4.7,26,101100,0,0,300,0,0,0,0,0,0,0,310,2.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,-2.5,33,101100,0,0,297,0,0,0,0,0,0,0,320,3.2,0,0,16.1,77777,9,999999999,80,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.6,-4.5,29,101100,0,0,293,0,0,0,0,0,0,0,350,3.4,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,-5.3,31,101200,0,0,285,0,0,0,0,0,0,0,10,1.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,-6.9,27,101200,0,0,282,0,0,0,0,0,0,0,80,0.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,-4.4,34,101300,0,0,284,0,0,0,0,0,0,0,80,2.2,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,-4.7,34,101300,0,0,282,0,0,0,0,0,0,0,90,2.7,0,0,16.1,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,-7.2,28,101200,0,0,279,0,0,0,0,0,0,0,10,3.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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.0,-7.5,29,101100,0,0,275,0,0,0,0,0,0,0,50,4.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,24,101100,0,0,274,0,0,0,0,0,0,0,20,3.6,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,-9.4,25,101000,0,0,273,0,0,0,0,0,0,0,20,3.6,0,0,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.8,-9.3,25,101000,0,0,273,0,0,0,0,0,0,0,30,2.3,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.4,-8.4,28,101000,0,0,272,0,0,0,0,0,0,0,30,4.2,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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.5,-9.4,24,101100,0,80,291,0,0,0,0,0,0,0,40,4.7,5,5,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.3,-9.2,23,101100,138,1410,295,39,67,33,4351,0,3628,140,30,5.0,5,5,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.4,-7.8,23,101100,367,1410,305,164,229,104,18160,12110,11603,493,50,4.2,5,5,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,-7.8,21,101100,555,1410,312,259,230,168,28928,17349,18887,851,40,4.6,5,5,16.0,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.2,-9.0,16,101100,685,1410,316,408,478,175,46555,36775,20112,923,50,4.4,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,17.4,-10.1,14,100900,747,1410,320,413,373,216,46969,31078,24641,1157,40,2.3,3,3,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.0,-11.0,11,100800,736,1410,326,429,440,199,48942,35541,22829,1064,40,0.0,3,3,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,-10.6,11,100800,655,1410,325,363,389,183,41121,30549,20769,953,10,0.2,2,2,16.1,77777,9,999999999,40,0.0000,0,88,999.000,0.0,1.0 +2012,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,19.5,-9.2,13,100700,508,1410,316,354,760,80,41489,41304,9423,398,10,2.0,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,1.1,37,100700,305,1410,327,103,93,82,11352,3573,9152,381,290,5.7,3,3,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,3.2,44,100700,69,1020,327,18,47,16,2018,0,1764,67,300,5.4,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,4.9,51,100700,0,0,323,0,0,0,0,0,0,0,300,4.8,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,2.7,46,100700,0,0,308,0,0,0,0,0,0,0,310,2.6,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,-6.8,22,100700,0,0,295,0,0,0,0,0,0,0,10,2.7,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,-7.1,24,100700,0,0,290,0,0,0,0,0,0,0,10,3.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,-6.8,26,100700,0,0,287,0,0,0,0,0,0,0,50,2.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,-7.3,25,100800,0,0,286,0,0,0,0,0,0,0,20,3.2,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,-7.7,23,100800,0,0,287,0,0,0,0,0,0,0,20,3.9,0,0,16.1,77777,9,999999999,50,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.5,-7.1,25,100700,0,0,285,0,0,0,0,0,0,0,20,1.9,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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.7,-6.0,31,100600,0,0,279,0,0,0,0,0,0,0,60,0.0,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,-5.6,37,100600,0,0,273,0,0,0,0,0,0,0,60,0.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,-5.6,36,100500,0,0,274,0,0,0,0,0,0,0,60,3.1,0,0,16.0,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.3,-5.6,38,100500,0,0,270,0,0,0,0,0,0,0,70,2.3,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,-5.7,36,100600,0,0,273,0,0,0,0,0,0,0,50,3.4,0,0,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,12,21,7,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.0,-6.0,33,100600,0,71,289,0,0,0,0,0,0,0,60,1.3,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.3,-5.8,31,100700,136,1410,294,48,137,35,5323,0,3872,151,60,0.0,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,-6.7,24,100800,365,1410,305,187,351,96,20826,17493,10729,453,60,0.0,3,3,16.1,77777,9,999999999,60,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,-3.3,28,100900,554,1410,317,301,379,152,33802,26830,17114,765,350,0.0,3,3,16.0,77777,9,999999999,69,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,1.8,39,100800,684,1410,331,367,346,199,41437,27227,22603,1050,350,0.2,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.6,2.9,40,100700,747,1410,337,361,232,238,40561,19430,26912,1277,350,1.8,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,4.2,46,100600,737,1410,335,345,206,237,38682,17183,26735,1267,260,4.1,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,6.6,56,100600,656,1410,336,289,174,208,32249,13658,23350,1087,270,4.2,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,6.0,55,100600,509,1410,352,128,23,120,14537,1377,13647,598,280,4.5,9,9,16.1,7620,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,5.0,53,100600,307,1410,341,67,21,63,7581,610,7090,289,270,3.6,8,8,16.0,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,5.0,54,100600,71,1032,340,12,10,12,1391,0,1333,49,260,3.6,8,8,16.0,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,5.0,56,100600,0,0,338,0,0,0,0,0,0,0,260,3.5,8,8,16.1,7620,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,5.1,58,100600,0,0,324,0,0,0,0,0,0,0,260,3.2,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,5.9,66,100700,0,0,320,0,0,0,0,0,0,0,270,3.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,4.6,60,100700,0,0,317,0,0,0,0,0,0,0,260,3.0,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,6.0,62,100700,0,0,319,0,0,0,0,0,0,0,260,1.9,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,5.0,63,100700,0,0,312,0,0,0,0,0,0,0,260,0.2,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,4.9,62,100700,0,0,313,0,0,0,0,0,0,0,110,1.9,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.3,4.3,67,100700,0,0,305,0,0,0,0,0,0,0,110,0.2,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,3.2,72,100600,0,0,298,0,0,0,0,0,0,0,110,1.9,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,2.1,66,100600,0,0,298,0,0,0,0,0,0,0,110,0.0,5,5,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,1.7,66,100600,0,0,296,0,0,0,0,0,0,0,110,0.0,5,5,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,1.7,64,100700,0,0,309,0,0,0,0,0,0,0,100,0.0,8,8,16.1,7620,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,1.7,66,100700,0,0,296,0,0,0,0,0,0,0,100,0.0,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,1.7,66,100800,0,63,296,0,0,0,0,0,0,0,100,0.4,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.1,1.6,64,100800,134,1410,295,38,67,32,4220,0,3517,136,100,2.9,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.3,1.3,54,100900,364,1410,302,170,266,101,18824,13193,11262,478,110,1.3,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,2.8,51,101000,553,1410,314,293,354,154,32877,24646,17390,780,260,0.0,3,3,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.3,56,101000,684,1410,333,399,451,180,45259,33130,20546,948,260,2.2,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,7.8,62,100900,747,1410,335,392,313,227,44193,25000,25660,1215,230,3.0,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,7.9,61,100800,738,1410,357,269,75,230,30179,6009,25929,1228,190,2.8,9,9,16.1,3907,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.8,67,100800,657,1410,356,200,39,182,22591,2828,20648,952,240,4.4,9,9,16.1,1217,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.4,65,100800,511,1410,355,147,39,133,16481,2374,14977,662,250,3.2,9,9,16.1,1393,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.9,70,100900,309,1410,363,46,6,45,4986,540,7089,183,250,4.1,10,10,16.0,1091,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.9,70,100900,73,1045,363,8,3,8,948,0,930,33,240,3.6,10,10,16.0,1046,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,8.9,70,100900,0,0,362,0,0,0,0,0,0,0,240,2.6,10,10,16.1,957,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.9,70,100900,0,0,363,0,0,0,0,0,0,0,230,0.2,10,10,16.1,845,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,9.0,71,100900,0,0,363,0,0,0,0,0,0,0,150,2.0,10,10,15.0,781,9,999999999,170,0.0000,0,88,999.000,7.0,1.0 +2012,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,13.2,10.0,81,101000,0,0,358,0,0,0,0,0,0,0,150,0.8,10,10,6.4,581,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,11.0,93,101000,0,0,344,0,0,0,0,0,0,0,150,0.5,9,9,5.9,1027,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,11.1,92,101000,0,0,355,0,0,0,0,0,0,0,90,1.7,10,10,8.4,579,9,999999999,200,0.0000,0,88,999.000,3.0,1.0 +2012,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,12.8,11.1,89,101000,0,0,358,0,0,0,0,0,0,0,100,3.0,10,10,10.9,614,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,11.5,91,101000,0,0,359,0,0,0,0,0,0,0,110,2.6,10,10,7.3,977,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,11.3,94,101000,0,0,355,0,0,0,0,0,0,0,110,2.0,10,10,8.0,961,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,11.0,89,101000,0,0,347,0,0,0,0,0,0,0,80,1.5,9,9,9.5,1028,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.6,90,101000,0,0,337,0,0,0,0,0,0,0,80,1.5,8,8,8.0,792,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.7,91,101000,0,0,344,0,0,0,0,0,0,0,60,0.2,9,9,7.8,355,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,10.8,93,101000,0,0,331,0,0,0,0,0,0,0,80,1.5,7,7,7.4,305,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,10.7,91,101000,0,55,344,0,0,0,0,0,0,0,90,2.1,9,9,9.3,308,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,11.1,92,101000,133,1410,355,13,4,13,1545,0,1502,54,100,2.0,10,10,6.4,352,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,11.1,89,101100,362,1410,358,76,16,72,8599,561,8160,339,110,2.2,10,10,8.3,545,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,11.1,83,101200,552,1410,346,177,56,155,19748,3663,17392,783,110,0.0,8,8,11.0,920,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,10.5,77,101100,683,1410,355,231,58,203,25865,4330,22852,1067,160,0.5,9,9,16.1,840,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,9.4,69,101000,747,1410,357,240,43,217,27111,3324,24675,1166,160,1.6,9,9,16.1,5486,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.1,9.5,69,100900,738,1410,357,247,52,220,27820,4024,24908,1177,240,2.8,9,9,16.1,5201,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,10.5,72,100900,658,1410,361,218,55,193,24493,4077,21702,1006,250,4.2,9,9,16.1,3322,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,10.1,70,100900,513,1410,360,158,51,140,17677,3166,15681,697,230,4.5,9,9,16.1,5036,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.6,78,100900,311,1410,348,78,33,71,8735,1002,7940,328,250,3.6,8,8,16.0,2286,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.9,80,100800,74,1058,348,14,17,14,1636,0,1538,57,250,3.6,8,8,16.0,2286,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.1,81,100800,0,0,356,0,0,0,0,0,0,0,250,3.7,9,9,16.1,2286,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.1,81,100800,0,0,356,0,0,0,0,0,0,0,250,4.2,9,9,16.1,2268,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,11.0,80,100900,0,0,355,0,0,0,0,0,0,0,270,4.5,9,9,16.1,2134,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,10.7,79,100900,0,0,365,0,0,0,0,0,0,0,290,3.9,10,10,16.1,2134,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.2,11.1,82,100900,0,0,365,0,0,0,0,0,0,0,240,1.1,10,10,16.1,1295,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,11.1,81,100900,0,0,355,0,0,0,0,0,0,0,230,1.5,9,9,16.1,1683,9,999999999,200,0.0000,0,88,999.000,3.0,1.0 +2012,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,14.0,11.0,82,100900,0,0,353,0,0,0,0,0,0,0,180,1.6,9,9,16.1,579,9,999999999,200,0.0000,0,88,999.000,10.0,1.0 +2012,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,14.2,10.7,80,100800,0,0,364,0,0,0,0,0,0,0,180,2.7,10,10,14.5,582,9,999999999,200,0.0000,0,88,999.000,25.0,1.0 +2012,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,12.8,11.8,94,100700,0,0,358,0,0,0,0,0,0,0,110,3.8,10,10,3.1,595,9,999999999,209,0.0000,0,88,999.000,66.0,1.0 +2012,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,12.8,12.2,96,100700,0,0,359,0,0,0,0,0,0,0,150,5.0,10,10,4.5,429,9,999999999,220,0.0000,0,88,999.000,135.0,1.0 +2012,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,12.2,11.7,97,100600,0,0,355,0,0,0,0,0,0,0,80,4.1,10,10,2.0,152,9,999999999,209,0.0000,0,88,999.000,61.0,1.0 +2012,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,11.8,11.6,99,100600,0,0,353,0,0,0,0,0,0,0,70,5.2,10,10,2.2,152,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,11.2,94,100600,0,0,355,0,0,0,0,0,0,0,80,5.9,10,10,3.4,159,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,11.8,97,100600,0,47,355,0,0,0,0,0,0,0,80,4.0,10,10,4.8,260,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,12.1,99,100600,131,1410,356,13,4,13,1543,0,1500,54,70,2.3,10,10,9.5,538,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,12.0,94,100700,361,1410,360,76,16,72,8623,568,8172,339,90,3.1,10,10,3.2,213,9,999999999,209,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,12.2,93,100700,551,1410,361,122,13,117,13055,1248,17285,459,80,0.0,10,10,6.0,183,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,12.8,93,100700,683,1410,365,198,30,183,22346,2107,20807,965,90,2.7,10,10,4.8,183,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,12.9,93,100600,747,1410,356,231,36,212,26042,2659,24026,1135,30,2.9,9,9,5.6,193,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,13.2,89,100500,739,1410,361,260,64,226,29112,4877,25505,1210,100,1.2,9,9,11.6,308,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,13.1,83,100400,660,1410,366,233,72,200,26020,5247,22385,1042,240,1.5,9,9,15.6,3968,9,999999999,229,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,12.7,83,100400,515,1410,355,195,113,154,21606,7196,17144,769,250,4.2,8,8,16.1,5486,9,999999999,229,0.0000,0,88,999.000,3.0,1.0 +2012,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,15.0,12.2,83,100400,314,1410,340,118,135,88,12924,4820,9668,407,260,4.6,5,5,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.7,12.2,85,100400,76,1071,338,23,67,19,2550,0,2152,83,270,4.6,5,5,16.0,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.2,87,100400,0,0,337,0,0,0,0,0,0,0,270,4.5,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,12.2,87,100500,0,0,337,0,0,0,0,0,0,0,300,3.4,5,5,16.1,77777,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.3,12.1,87,100500,0,0,349,0,0,0,0,0,0,0,20,1.5,8,8,16.1,7620,9,999999999,220,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.4,10.8,84,100500,0,0,331,0,0,0,0,0,0,0,20,1.6,5,5,16.1,77777,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,4.3,53,100600,0,0,323,0,0,0,0,0,0,0,340,2.5,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,3.2,51,100700,0,0,303,0,0,0,0,0,0,0,340,1.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,61.0,1.0 +2012,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,12.7,2.4,50,100600,0,0,313,0,0,0,0,0,0,0,350,0.3,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.9,5.1,68,100700,0,0,313,0,0,0,0,0,0,0,360,1.5,5,5,13.9,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,9.0,88,100700,0,0,318,0,0,0,0,0,0,0,50,0.3,5,5,3.8,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,10.0,96,100700,0,0,345,0,0,0,0,0,0,0,100,2.1,10,10,3.6,94,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,10.0,96,100700,0,0,345,0,0,0,0,0,0,0,90,2.1,10,10,6.0,122,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,8.3,89,100700,0,0,313,0,0,0,0,0,0,0,60,2.9,5,5,12.9,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.1,7.9,86,100700,0,0,324,0,0,0,0,0,0,0,70,1.5,8,8,13.1,152,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.7,8.1,84,100700,0,41,316,0,0,0,0,0,0,0,60,1.6,5,5,14.7,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,6.9,72,100700,130,1410,338,19,10,18,2229,0,2122,79,60,2.2,9,9,15.9,4124,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,8.4,74,100700,360,1410,345,105,53,92,11690,2266,10239,433,40,2.6,9,9,14.7,3048,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,8.9,75,100700,550,1410,340,189,73,160,21026,4975,17934,808,50,2.6,8,8,16.0,3190,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,8.2,66,100700,683,1410,353,237,65,206,26625,5045,23188,1082,350,2.2,9,9,16.1,4409,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,6.8,56,100600,747,1410,367,212,25,199,22098,2430,27700,773,350,2.5,10,10,16.1,5486,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,4.2,45,100600,740,1410,366,230,37,210,26057,2936,23965,1126,350,2.0,10,10,16.1,5486,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,6.4,53,100500,661,1410,368,185,27,172,20968,1917,19645,901,310,1.8,10,10,16.1,5486,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,8.4,65,100500,517,1410,365,118,16,113,12531,1491,16688,443,290,4.0,10,10,16.1,5557,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,9.4,72,100500,316,1410,364,43,5,42,4667,406,6671,172,280,3.1,10,10,16.0,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,8.8,71,100400,90,1255,351,14,2,14,1502,151,2261,59,260,2.6,9,9,16.0,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.4,70,100400,0,0,350,0,0,0,0,0,0,0,260,2.2,9,9,16.1,6096,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,9.5,75,100400,0,0,351,0,0,0,0,0,0,0,300,2.3,9,9,16.1,6096,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,10.0,80,100400,0,0,349,0,0,0,0,0,0,0,340,0.2,9,9,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,10.0,81,100400,0,0,348,0,0,0,0,0,0,0,340,1.9,9,9,16.1,6096,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,9.7,84,100400,0,0,344,0,0,0,0,0,0,0,340,0.0,9,9,16.1,5722,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,7.4,70,100400,0,0,343,0,0,0,0,0,0,0,40,0.2,9,9,16.1,2896,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,8.9,78,100400,0,0,325,0,0,0,0,0,0,0,40,1.3,5,5,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,8.9,84,100400,0,0,339,0,0,0,0,0,0,0,40,2.6,9,9,15.9,574,9,999999999,170,0.0000,0,88,999.000,13.0,1.0 +2012,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,11.1,8.9,86,100300,0,0,337,0,0,0,0,0,0,0,130,2.5,9,9,12.8,957,9,999999999,170,0.0000,0,88,999.000,10.0,1.0 +2012,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,10.9,9.1,89,100200,0,0,346,0,0,0,0,0,0,0,120,0.0,10,10,2.6,280,9,999999999,179,0.0000,0,88,999.000,10.0,1.0 +2012,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,10.6,10.0,96,100200,0,0,345,0,0,0,0,0,0,0,120,0.0,10,10,2.4,263,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.3,10.7,96,100100,0,0,350,0,0,0,0,0,0,0,100,0.0,10,10,2.9,195,9,999999999,200,0.0000,0,88,999.000,48.0,1.0 +2012,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,11.1,10.7,97,100100,0,0,349,0,0,0,0,0,0,0,100,3.1,10,10,4.0,152,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,10.7,97,100200,0,35,340,0,0,0,0,0,0,0,10,1.7,9,9,6.4,1136,9,999999999,200,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,10.3,90,100200,128,1411,342,17,7,16,1934,0,1860,68,340,2.8,9,9,7.0,666,9,999999999,189,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,9.3,79,100300,358,1411,339,114,71,96,12591,3100,10645,451,340,3.7,8,8,10.4,1219,9,999999999,179,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.3,69,100400,550,1411,330,247,204,168,27461,14295,18732,847,300,4.6,5,5,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,7.3,63,100300,683,1411,331,337,261,211,37784,20468,23779,1112,270,5.2,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,7.8,64,100200,748,1411,333,345,194,242,38677,16003,27276,1299,290,5.8,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,7.8,60,100200,741,1411,338,369,258,233,41399,20900,26318,1248,290,7.1,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.6,7.9,60,100100,663,1411,338,324,254,205,36260,19611,23045,1073,270,10.3,5,5,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.5,8.3,62,100100,519,1411,335,260,302,150,28981,19782,16714,746,270,10.3,4,4,16.1,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,8.3,64,100200,319,1411,330,132,188,90,14554,7397,9915,417,280,10.3,3,3,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,8.3,67,100200,93,1268,330,33,187,21,3700,0,2338,89,270,10.0,4,4,16.0,77777,9,999999999,170,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,8.2,69,100200,0,0,328,0,0,0,0,0,0,0,270,9.4,4,4,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.5,66,100300,0,0,324,0,0,0,0,0,0,0,300,6.0,3,3,16.1,77777,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,5.6,60,100300,0,0,319,0,0,0,0,0,0,0,320,3.9,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.8,5.5,61,100300,0,0,317,0,0,0,0,0,0,0,320,2.8,3,3,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,4.9,58,100300,0,0,322,0,0,0,0,0,0,0,290,4.0,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,4.3,55,100300,0,0,335,0,0,0,0,0,0,0,300,3.5,8,8,16.1,6096,9,999999999,129,0.0000,0,88,999.000,31.0,1.0 +2012,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,12.7,3.8,55,100300,0,0,320,0,0,0,0,0,0,0,310,2.8,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,3.3,55,100300,0,0,314,0,0,0,0,0,0,0,300,4.0,4,4,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,3.2,57,100300,0,0,310,0,0,0,0,0,0,0,320,3.5,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,2.1,54,100300,0,0,306,0,0,0,0,0,0,0,320,3.1,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,1.1,50,100300,0,0,305,0,0,0,0,0,0,0,320,3.1,3,3,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,1.1,50,100300,0,0,305,0,0,0,0,0,0,0,330,3.6,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,1.1,50,100300,0,0,306,0,0,0,0,0,0,0,300,3.8,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,1.1,49,100400,0,29,331,0,0,0,0,0,0,0,290,4.4,9,9,16.1,6175,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,1.0,48,100400,127,1411,331,14,5,14,1668,0,1614,59,300,2.9,9,9,16.1,7158,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.0,0.7,43,100500,357,1411,329,109,61,93,12112,2845,10431,440,320,5.3,8,8,16.1,4572,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,1.7,42,100500,549,1411,325,244,194,168,27125,14162,18806,849,330,7.2,5,5,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,0.4,36,100500,683,1411,330,352,301,206,39542,24133,23293,1084,320,5.8,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.3,0.0,33,100400,749,1411,332,365,238,238,41035,20182,26960,1278,330,6.5,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,4.4,49,100300,743,1411,331,347,204,239,38921,17050,27010,1282,270,6.8,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,4.5,50,100300,665,1411,331,290,165,212,32343,13201,23782,1109,270,7.8,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,5.7,54,100300,521,1411,330,231,196,158,25601,13528,17633,790,270,8.8,4,4,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,6.7,58,100400,321,1411,328,136,199,90,14954,8081,9993,420,290,8.7,3,3,16.0,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.0,2.8,44,100400,95,1280,324,37,100,30,4005,0,3287,128,330,6.3,3,3,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.8,-0.5,35,100400,0,0,319,0,0,0,0,0,0,0,330,4.4,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,-0.1,40,100400,0,0,310,0,0,0,0,0,0,0,340,6.3,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,-0.7,40,100400,0,0,297,0,0,0,0,0,0,0,350,3.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,-1.1,40,100500,0,0,295,0,0,0,0,0,0,0,350,3.4,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,-1.0,40,100600,0,0,294,0,0,0,0,0,0,0,350,1.8,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,-0.5,43,100600,0,0,293,0,0,0,0,0,0,0,10,4.0,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,0.1,45,100700,0,0,306,0,0,0,0,0,0,0,10,3.6,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.8,1.0,51,100700,0,0,304,0,0,0,0,0,0,0,40,3.5,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.9,0.6,56,100800,0,0,295,0,0,0,0,0,0,0,50,2.7,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.8,0.6,57,100700,0,0,295,0,0,0,0,0,0,0,40,3.4,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,0.6,61,100700,0,0,291,0,0,0,0,0,0,0,70,1.5,3,3,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.2,0.5,59,100800,0,0,297,0,0,0,0,0,0,0,20,2.9,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,-0.1,57,100800,0,0,295,0,0,0,0,0,0,0,120,1.5,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.4,-0.5,54,100900,0,25,297,0,0,0,0,0,0,0,50,1.6,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,0.0,53,100900,126,1411,299,37,75,30,4085,0,3348,129,50,2.3,4,4,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.3,0.3,44,100900,357,1411,309,182,349,93,20217,16321,10435,440,50,3.5,3,3,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,2.2,47,101000,549,1411,321,266,264,163,29658,18913,18305,824,60,2.6,5,5,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.5,3.4,48,100900,683,1411,328,369,352,198,41550,27407,22446,1043,90,1.6,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,15.7,-0.1,34,100800,750,1411,329,359,224,240,40398,19057,27157,1289,110,2.0,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.1,-0.5,32,100700,744,1411,330,369,256,234,41591,21582,26538,1256,140,1.6,5,5,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,16.0,4.7,47,100700,667,1411,336,315,223,210,35200,17703,23550,1097,270,2.8,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.9,7.3,61,100700,524,1411,334,220,162,160,24380,11120,17787,799,260,4.1,5,5,16.1,77777,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.4,7.8,65,100700,324,1411,344,74,23,68,8291,737,7720,318,280,4.1,8,8,16.0,4572,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.1,7.5,65,100700,97,1294,343,20,11,19,2211,0,2126,80,280,3.6,8,8,16.0,4572,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.8,7.3,65,100700,0,0,348,0,0,0,0,0,0,0,280,3.0,9,9,16.1,4927,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.7,69,100700,0,0,346,0,0,0,0,0,0,0,320,2.0,9,9,16.1,7620,9,999999999,160,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,7.1,66,100700,0,0,346,0,0,0,0,0,0,0,310,1.3,9,9,16.1,7228,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.2,6.4,64,100700,0,0,344,0,0,0,0,0,0,0,310,0.0,9,9,16.1,4267,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,4.5,58,100700,0,0,340,0,0,0,0,0,0,0,250,0.2,9,9,16.1,4302,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,5.1,62,100700,0,0,330,0,0,0,0,0,0,0,250,1.9,8,8,16.1,4572,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,5.3,65,100700,0,0,317,0,0,0,0,0,0,0,250,0.0,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.9,3.2,55,100600,0,0,316,0,0,0,0,0,0,0,100,0.2,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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.3,2.3,62,100600,0,0,301,0,0,0,0,0,0,0,100,1.3,4,4,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.8,2.7,66,100600,0,0,285,0,0,0,0,0,0,0,70,0.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.8,2.2,68,100600,0,0,292,0,0,0,0,0,0,0,70,1.5,3,3,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.7,2.1,68,100600,0,0,292,0,0,0,0,0,0,0,80,0.2,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.4,1.0,64,100600,0,0,311,0,0,0,0,0,0,0,80,1.6,9,9,16.1,3317,9,999999999,100,0.0000,0,88,999.000,3.0,1.0 +2012,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.1,0.5,55,100600,0,21,318,0,0,0,0,0,0,0,90,2.5,9,9,16.1,2642,9,999999999,100,0.0000,0,88,999.000,18.0,1.0 +2012,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.0,2.9,66,100600,125,1411,330,12,4,12,1434,0,1394,50,40,2.6,10,10,12.5,739,9,999999999,110,0.0000,0,88,999.000,15.0,1.0 +2012,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,8.6,5.7,82,100700,356,1411,331,76,18,72,8672,663,8191,339,100,3.5,10,10,5.4,922,9,999999999,139,0.0000,0,88,999.000,8.0,1.0 +2012,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,7.8,5.6,86,100600,549,1411,327,98,6,96,10345,536,14214,374,60,5.7,10,10,4.8,1088,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.5,6.2,86,100600,683,1411,322,199,30,184,22500,2247,20937,968,70,4.6,9,9,10.4,1299,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.2,6.8,80,100400,751,1411,330,241,42,219,27264,3348,24842,1173,80,5.0,9,9,16.1,1658,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,7.2,75,100400,746,1411,338,303,118,241,33990,9710,27164,1292,70,7.4,9,9,16.1,1499,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.2,7.2,76,100400,669,1411,336,249,88,207,27849,6847,23310,1086,80,5.0,9,9,16.1,1335,9,999999999,150,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,7.1,72,100400,526,1411,340,179,73,152,19933,4859,16990,760,80,4.0,9,9,16.1,1481,9,999999999,150,0.0000,0,88,999.000,20.0,1.0 +2012,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,11.7,6.1,69,100300,327,1411,330,88,41,78,9776,1493,8756,364,90,3.1,8,8,16.0,1154,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.4,6.1,70,100300,99,1306,328,25,20,24,2786,0,2634,101,70,2.8,8,8,16.0,1123,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,6.1,72,100400,0,0,333,0,0,0,0,0,0,0,70,2.6,9,9,16.1,1146,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,6.1,74,100400,0,0,325,0,0,0,0,0,0,0,70,2.3,8,8,16.1,1524,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.6,6.1,74,100400,0,0,313,0,0,0,0,0,0,0,10,0.2,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,6.0,74,100400,0,0,312,0,0,0,0,0,0,0,10,1.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,5.5,74,100400,0,0,310,0,0,0,0,0,0,0,350,1.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,4.9,71,100400,0,0,307,0,0,0,0,0,0,0,10,1.6,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,7.0,1.0 +2012,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,10.0,4.0,66,100400,0,0,303,0,0,0,0,0,0,0,10,2.0,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,12,30,1,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.8,4.3,69,100400,0,0,305,0,0,0,0,0,0,0,20,1.3,4,4,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,3.8,73,100400,0,0,284,0,0,0,0,0,0,0,20,0.3,0,0,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,3.2,70,100400,0,0,295,0,0,0,0,0,0,0,340,2.6,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,8.3,2.2,66,100300,0,0,294,0,0,0,0,0,0,0,340,2.6,3,3,16.0,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.6,1.8,72,100300,0,0,287,0,0,0,0,0,0,0,340,0.0,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,5.7,2.4,80,100300,0,0,284,0,0,0,0,0,0,0,340,0.0,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.8,3.8,81,100300,0,17,294,0,0,0,0,0,0,0,340,0.0,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.5,3.3,75,100400,125,1411,297,33,54,28,3645,0,3120,120,250,0.0,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,12,30,9,0,?9?9?9?9E0?9?9?9?9*9?9?9?9?9?9?9?9?9?9*_*9*9*9?9?9,9.7,3.4,65,100400,355,1411,306,161,244,100,17824,11643,11087,471,250,0.0,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,3.9,59,100500,549,1411,316,266,263,163,29596,18689,18289,824,250,0.0,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,3.8,58,100400,684,1411,316,356,313,205,40082,24694,23122,1077,250,0.2,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.9,3.0,51,100300,752,1411,332,285,87,239,32075,7321,26982,1281,250,1.9,8,8,16.1,4572,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,4.6,56,100200,748,1411,323,365,240,238,40974,19908,26854,1275,270,4.8,5,5,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,5.5,59,100200,672,1411,324,326,246,209,36503,19467,23503,1096,280,6.2,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.1,1.7,46,100100,529,1411,338,155,40,140,17422,2667,15795,701,330,5.2,9,9,16.1,2896,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,0.6,41,100100,330,1411,334,90,44,80,10107,1746,8994,374,350,6.2,8,8,16.0,2738,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,0.9,43,100200,102,1316,331,25,22,23,2746,0,2576,98,350,5.1,8,8,16.0,3064,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,1.0,45,100200,0,0,328,0,0,0,0,0,0,0,350,4.3,8,8,16.1,3353,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,0.7,46,100300,0,0,314,0,0,0,0,0,0,0,330,5.8,5,5,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.6,1.0,48,100400,0,0,310,0,0,0,0,0,0,0,330,6.0,4,4,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,0.5,48,100400,0,0,304,0,0,0,0,0,0,0,320,4.2,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,0.0,47,100500,0,0,301,0,0,0,0,0,0,0,320,4.6,2,2,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,0.0,47,100500,0,0,291,0,0,0,0,0,0,0,340,4.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.1,-0.1,46,100600,0,0,291,0,0,0,0,0,0,0,340,1.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.0,-0.6,45,100600,0,0,290,0,0,0,0,0,0,0,340,2.7,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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.8,-0.9,47,100700,0,0,285,0,0,0,0,0,0,0,150,0.2,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.9,0.2,59,100800,0,0,279,0,0,0,0,0,0,0,150,1.9,0,0,16.1,77777,9,999999999,89,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.2,1.7,68,100800,0,0,277,0,0,0,0,0,0,0,140,0.0,0,0,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.0,2.0,76,100800,0,0,273,0,0,0,0,0,0,0,140,1.9,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.0,2.0,76,100900,0,0,273,0,0,0,0,0,0,0,110,0.3,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,6.1,1.9,75,100900,0,14,285,0,0,0,0,0,0,0,110,2.5,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,7.2,1.1,65,101000,124,1411,289,39,98,31,4348,0,3403,132,160,2.1,3,3,16.1,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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.4,2.0,60,101100,355,1411,299,174,313,96,19347,14651,10657,450,80,2.3,3,3,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,1.7,51,101100,549,1411,313,277,302,160,30940,21442,17900,804,100,3.6,5,5,16.0,77777,9,999999999,100,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.2,3.9,57,101100,685,1411,318,373,362,197,42038,28036,22327,1037,130,3.5,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,3.1,48,101100,753,1411,325,388,291,233,43737,24086,26359,1249,110,3.0,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,4.2,52,101000,750,1411,326,371,254,237,41775,21082,26750,1270,250,2.2,5,5,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,14.0,6.0,59,101000,674,1411,328,326,243,210,36506,19205,23634,1103,250,2.8,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.9,5.8,58,101000,532,1411,328,232,184,162,25728,12884,18105,814,270,4.5,5,5,16.1,77777,9,999999999,139,0.0000,0,88,999.000,0.0,1.0 +2012,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,13.3,3.9,53,101000,333,1411,323,116,102,92,12808,4390,10199,429,260,3.6,5,5,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.7,4.2,56,101100,104,1329,315,38,51,35,4155,0,3763,148,260,3.9,3,3,16.0,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.1,4.5,60,101100,0,0,313,0,0,0,0,0,0,0,260,4.0,3,3,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.7,4.7,62,101100,0,0,308,0,0,0,0,0,0,0,270,3.4,2,2,16.1,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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,11.8,2.9,55,101100,0,0,297,0,0,0,0,0,0,0,230,2.2,0,0,16.1,77777,9,999999999,110,0.0000,0,88,999.000,0.0,1.0 +2012,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,12.0,3.9,58,101200,0,0,312,0,0,0,0,0,0,0,340,2.5,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.5,4.0,64,101200,0,0,306,0,0,0,0,0,0,0,100,1.5,3,3,16.1,77777,9,999999999,120,0.0000,0,88,999.000,0.0,1.0 +2012,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,10.0,4.5,69,101200,0,0,309,0,0,0,0,0,0,0,100,1.6,5,5,15.9,77777,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 +2012,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.9,4.9,71,101200,0,0,327,0,0,0,0,0,0,0,110,2.5,9,9,14.7,6096,9,999999999,129,0.0000,0,88,999.000,0.0,1.0 diff --git a/measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.stat b/measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.stat new file mode 100644 index 0000000..5845a29 --- /dev/null +++ b/measures/ChangeBuildingLocation/tests/CA_LOS-ANGELES-IAP_722950S_12.stat @@ -0,0 +1,553 @@ + -EnergyPlus Weather Converter V8.1.0.005 + Statistics for CA_LOS-ANGELES-IAP_722950S_12EPW + Location -- CA_LOS-ANGELES-IAP - USA + {N 33 56'} {W 118 24'} {GMT -8.0 Hours} + Elevation -- 99m above sea level + Standard Pressure at Elevation -- 100141Pa + Data Source -- Custom-722950 + + WMO Station 722950 + + - Displaying Design Conditions from "Climate Design Data 2013 ASHRAE Handbook" + - ASHRAE design conditions are carefully generated from a period of record + - (typically 30 years) to be representative of that location and to be suitable + - for use in heating/cooling load calculations. + + Design Stat ColdestMonth DB996 DB990 DP996 HR_DP996 DB_DP996 DP990 HR_DP990 DB_DP990 WS004c DB_WS004c WS010c DB_WS010c WS_DB996 WD_DB996 + Units {} {C} {C} {C} {} {C} {C} {} {C} {m/s} {C} {m/s} {C} {m/s} {deg} + Heating 12 7 8 -11.3 1.4 15.4 -8 1.9 15.3 11.2 12.8 9.3 13.5 2.2 80 + + Design Stat HottestMonth DBR DB004 WB_DB004 DB010 WB_DB010 DB020 WB_DB020 WB004 DB_WB004 WB010 DB_WB010 WB020 DB_WB020 WS_DB004 WD_DB004 DP004 HR_DP004 DB_DP004 DP010 HR_DP010 DB_DP010 DP020 HR_DP020 DB_DP020 EN004 DB_EN004 EN010 DB_EN010 EN020 DB_EN020 #Hrs_8-4_&_DB-12.8/20.6 + Units {} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {m/s} {deg} {C} {} {C} {C} {} {C} {C} {} {C} {kJ/kg} {C} {kJ/kg} {C} {kJ/kg} {C} {} + Cooling 8 5.9 28.7 17.4 26.9 17.5 25.3 17.9 21.1 25.1 20.4 24.2 19.8 23.4 4 250 19.6 14.5 23.2 18.9 13.9 22.5 18.3 13.3 21.8 61.4 25.3 58.9 24.1 56.8 23.5 1874 + + Design Stat WS010 WS025 WS050 WBmax DBmin_mean DBmax_mean DBmin_stddev DBmax_stddev DBmin05years DBmax05years DBmin10years DBmax10years DBmin20years DBmax20years DBmin50years DBmax50years + Units {m/s} {m/s} {m/s} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} + Extremes 8.9 7.8 7.1 24 4.3 34.5 1.5 2.7 3.2 36.4 2.4 38 1.5 39.5 0.5 41.4 + + - Displaying Monthly Design Conditions "Climate Design Data 2013 ASHRAE Handbook" + - Monthly Optical Sky Depth Beam (taub) and Diffuse (taud) + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + taub (beam) 0.334 0.344 0.338 0.326 0.338 0.337 0.349 0.359 0.346 0.344 0.333 0.330 + taud (diffuse) 2.634 2.570 2.541 2.512 2.448 2.413 2.428 2.444 2.535 2.542 2.620 2.621 + + taub = Clear Sky Optical Depth for Beam Irradiance + taud = Clear Sky Optical Depth for Diffuse Irradiance + + - Monthly Solar Irradiance Wh/m (noon on 21st of month) + ib (beam) 883 908 939 960 945 941 928 915 917 894 876 865 + id (diffuse) 76 88 98 105 114 117 115 111 97 89 76 73 + + ib = Clear Sky Noon Beam Normal Irradiance on 21st Day + id = Clear Sky Noon Diffuse Horizontal Irradiance on 21st Day + + - Monthly Drybulb and Mean Coincident Wetbulb Temperatures C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Drybulb 0.4% 27 27.2 27.2 29.4 26.5 27.1 27.7 29.1 30.6 31.8 29.7 25.4 + Coincident Wetbulb 0.4% 13 14.2 13.7 15.2 17.6 19.2 21.4 20.8 18.7 15.9 15.1 12 + Drybulb 2.0% 23.2 23 22.6 24.5 22.9 24 25.6 26.6 27.1 27.4 25.9 22.4 + Coincident Wetbulb 2.0% 12.3 12.8 12.9 14.9 17.6 18.3 20 20.3 19.5 15.6 13.7 11.8 + Drybulb 5.0% 20.9 20.3 20 21.8 21.5 22.7 24.2 25 25.1 24.3 23.1 20.2 + Coincident Wetbulb 5.0% 11.5 12.2 13.2 14.9 16.8 17.9 19.5 19.8 19.4 16.3 12.9 11.3 + Drybulb 10.% 18.4 17.9 18.1 19.6 20.3 21.7 23.2 23.8 23.6 22.3 21 18.2 + Coincident Wetbulb 10.% 11.2 12 13.3 14.7 16.3 17.4 19 19.3 18.8 16.4 13 11.1 + + Drybulb 0.4% = 0.4% Monthly Design Drybulb Temperature + Coincident Wetbulb 0.4% = 0.4% Monthly Mean Coincident Wetbulb Temperature + Drybulb 2.0% = 2.0% Monthly Design Drybulb Temperature + Coincident Wetbulb 2.0% = 2.0% Monthly Mean Coincident Wetbulb Temperature + Drybulb 5.0% = 5.0% Monthly Design Drybulb Temperature + Coincident Wetbulb 5.0% = 5.0% Monthly Mean Coincident Wetbulb Temperature + Drybulb 10.% = 10.% Monthly Design Drybulb Temperature + Coincident Wetbulb 10.% = 10.% Monthly Mean Coincident Wetbulb Temperature + + - Monthly Drybulb and Wetbulb Daily Ranges deltaC + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Drybulb 8.5 7.6 6.9 6.9 6 5.6 5.6 5.9 6.2 7.1 8.7 8.6 + Drybulb range - DB 5% 13 12.2 10.8 10.9 7.7 7 6.6 7.3 8.6 11.6 12.9 12.1 + Wetbulb range - DB 5% 6.6 6.2 5.6 5.2 3.7 3.2 2.9 3.1 3.5 5.2 6.7 6.8 + + Drybulb = Mean Daily Dry Bulb Temperature Range + Drybulb range - DB 5% = Mean Daily Dry Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature + Wetbulb range - DB 5% = Mean Daily Wet Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature + + - Displaying Heating/Cooling Degree Days/Hours from "Climate Design Data 2013 ASHRAE Handbook" + - Monthly Standard Heating/Cooling Degree Days/Hours + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + HDD base 10C 1 1 0 0 0 0 0 0 0 0 0 2 + HDD base 18.3C 134 119 113 81 42 11 1 1 2 17 64 134 + + CDD base 10C 129 119 151 179 226 264 325 337 313 279 199 127 + CDD base 18.3C 4 4 4 10 9 25 68 79 66 37 14 2 + + CDH base 23.3C 30 29 31 66 25 38 98 166 171 156 90 15 + CDH base 26.7C 4 6 7 22 5 6 8 22 36 48 24 1 + + - 2649 annual (standard) cooling degree-days (10C baseline) + - 4 annual (standard) heating degree-days (10C baseline) + + - 323 annual (standard) cooling degree-days (18.3C baseline) + - 719 annual (standard) heating degree-days (18.3C baseline) + + - Monthly Statistics for Dry Bulb temperatures C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 27.8 24.3 29.5 26.7 21.7 22.7 28.3 28.9 35.6 31.8 31.6 19.5 + Day:Hour 4:12 9:11 4:12 7:11 16:10 8:11 19:10 29:12 15:10 17:11 5:11 20:14 + + Minimum 7.3 5.7 6.4 7.5 12.4 14.4 14.3 16.7 16.8 12.9 8.9 5.7 + Day:Hour 18:03 16:05 8:06 14:05 27:05 6:04 7:24 2:03 25:06 30:06 11:05 30:06 + + Daily Avg 14.9 14.0 13.7 15.2 17.1 18.1 18.9 21.8 21.9 20.2 16.7 13.7 + + - Maximum Dry Bulb temperature of 35.6C on Sep 15 + - Minimum Dry Bulb temperature of 5.7C on Feb 16 + + - Monthly Statistics for Extreme Dry Bulb temperatures C + #Days Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Max >= 32 1 + Max <= 0 + Min <= 0 + Min <=-18 + + - Monthly Statistics for Dew Point temperatures C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 13.9 12.1 11.9 14.4 15.6 15.7 17.2 19.9 20.6 19.0 17.9 17.0 + Day:Hour 21:10 10:12 17:11 25:24 22:20 27:22 13:04 30:01 10:15 1:03 30:12 3:02 + + Minimum -21.7 -9.3 -18.9 -13.8 6.8 4.2 12.2 12.3 7.8 -11.0 -11.2 -11.0 + Day:Hour 13:15 3:14 7:11 7:11 25:24 5:08 16:08 27:14 15:09 26:23 12:12 20:13 + + Daily Avg 4.4 5.8 5.5 9.0 12.7 13.6 14.7 16.8 16.7 12.9 10.1 7.8 + + - Maximum Dew Point temperature of 20.6C on Sep 10 + - Minimum Dew Point temperature of -21.7C on Jan 13 + + - Average Hourly Statistics for Dry Bulb temperatures C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 13.6 12.7 12.1 13.6 15.7 16.6 17.4 20.1 20.2 18.8 15.6 12.8 + 1:01- 2:00 11.8 11.6 11.5 13.2 15.4 16.5 17.2 19.9 19.8 18.0 14.6 12.1 + 2:01- 3:00 11.2 11.3 11.2 12.9 15.2 16.4 17.2 19.8 19.6 17.5 14.3 12.0 + 3:01- 4:00 10.9 10.9 11.2 12.7 15.0 16.3 17.1 19.7 19.6 17.3 14.1 11.7 + 4:01- 5:00 10.8 10.5 11.2 12.5 15.0 16.3 17.1 19.8 19.4 17.2 13.9 11.4 + 5:01- 6:00 10.9 10.6 11.3 12.9 15.5 16.8 17.4 20.1 19.7 17.5 14.0 11.4 + 6:01- 7:00 11.6 11.5 12.0 13.9 16.3 17.6 18.2 21.2 20.8 18.2 14.5 11.8 + 7:01- 8:00 12.7 12.7 13.3 15.4 17.3 18.3 19.0 22.5 22.3 19.8 15.7 12.3 + 8:01- 9:00 14.9 14.4 14.6 16.7 18.2 19.0 19.8 23.6 23.8 21.5 17.4 13.4 + 9:01-10:00 16.9 15.9 15.6 17.4 18.8 19.5 20.5 24.0 24.2 22.7 18.6 14.3 + 10:01-11:00 18.4 17.1 16.4 17.8 19.0 19.9 20.9 24.2 24.9 23.3 19.6 15.1 + 11:01-12:00 19.4 17.5 16.9 17.7 19.2 20.2 21.0 24.5 24.7 23.0 20.1 15.7 + 12:01-13:00 19.2 17.2 16.7 17.4 19.2 20.2 21.0 24.5 24.8 22.8 19.6 15.9 + 13:01-14:00 18.5 17.1 16.3 17.4 19.0 20.1 20.9 24.1 24.4 22.7 19.0 16.0 + 14:01-15:00 18.0 16.5 15.8 17.2 18.8 19.9 20.7 23.8 23.8 22.3 18.6 15.8 + 15:01-16:00 17.2 15.9 15.2 16.7 18.4 19.5 20.3 23.2 23.3 21.8 18.0 15.2 + 16:01-17:00 16.7 15.5 14.9 16.4 18.2 19.2 20.0 22.9 22.8 21.3 17.5 14.9 + 17:01-18:00 16.1 15.1 14.5 16.0 17.8 18.9 19.5 22.5 22.2 20.8 17.1 14.6 + 18:01-19:00 15.4 14.1 13.7 15.3 17.1 18.2 18.9 21.6 21.4 20.2 16.7 14.3 + 19:01-20:00 15.3 13.8 13.2 14.8 16.6 17.6 18.1 20.6 21.1 20.0 16.6 14.1 + 20:01-21:00 15.1 13.7 12.9 14.5 16.4 17.2 17.9 20.4 20.8 19.8 16.6 13.9 + 21:01-22:00 14.8 13.5 12.8 14.3 16.2 17.2 17.7 20.3 20.6 19.6 16.3 13.6 + 22:01-23:00 14.4 13.4 12.8 14.1 16.2 17.0 17.5 20.3 20.6 19.4 16.1 13.3 + 23:01-24:00 13.9 13.1 12.6 14.0 16.0 17.0 17.4 20.3 20.5 19.1 16.0 13.1 + Max Hour 12 12 12 11 12 13 13 13 11 11 12 14 + Min Hour 5 5 4 5 4 4 5 4 5 5 5 5 + + - Average Hourly Statistics for Dew Point temperatures C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 5.1 6.1 6.4 9.2 12.7 13.7 14.9 16.9 16.9 13.0 9.8 7.8 + 1:01- 2:00 4.2 6.0 5.7 8.5 12.6 13.5 14.7 17.0 17.1 13.0 10.0 7.6 + 2:01- 3:00 4.1 5.8 5.6 8.4 12.6 13.5 14.7 17.1 17.0 13.0 9.9 7.6 + 3:01- 4:00 4.0 5.5 5.3 8.3 12.5 13.5 14.7 17.0 16.9 13.0 9.8 7.4 + 4:01- 5:00 3.5 5.0 5.0 8.5 12.5 13.5 14.7 17.1 17.0 12.9 9.6 7.3 + 5:01- 6:00 3.0 4.6 4.8 8.9 12.7 13.5 14.8 17.3 16.9 12.8 9.1 7.2 + 6:01- 7:00 2.2 4.3 4.8 9.1 12.7 13.3 14.8 17.3 17.1 12.7 8.8 7.0 + 7:01- 8:00 2.7 4.5 4.6 8.6 12.6 13.1 14.7 17.2 16.9 12.5 8.6 7.1 + 8:01- 9:00 2.7 4.7 4.3 8.4 12.7 13.4 14.7 17.1 16.7 11.9 8.6 7.2 + 9:01-10:00 1.9 4.5 4.0 8.6 13.0 13.5 14.9 17.1 16.9 11.5 8.4 7.5 + 10:01-11:00 1.7 4.2 4.0 8.8 12.8 13.4 14.8 17.0 16.7 11.8 7.9 8.0 + 11:01-12:00 1.7 4.4 4.2 8.6 12.8 13.4 14.8 16.8 16.5 12.9 8.6 7.7 + 12:01-13:00 3.0 5.2 4.6 8.8 12.7 13.4 14.7 16.5 16.4 13.0 9.6 8.0 + 13:01-14:00 4.2 5.4 4.7 8.6 12.6 13.4 14.7 16.5 16.2 13.2 9.9 8.2 + 14:01-15:00 5.0 5.5 5.3 8.9 12.7 13.4 14.6 16.6 16.2 13.0 10.7 8.4 + 15:01-16:00 5.9 6.1 5.7 9.2 12.7 13.6 14.6 16.6 16.6 13.4 11.0 8.4 + 16:01-17:00 6.3 6.2 5.9 9.2 12.7 13.6 14.6 16.6 16.5 13.6 11.6 8.5 + 17:01-18:00 6.8 6.4 6.1 9.2 12.6 13.6 14.7 16.6 16.5 13.7 12.1 8.5 + 18:01-19:00 7.4 7.2 6.6 9.3 12.6 13.7 14.7 16.5 16.6 13.6 12.3 8.6 + 19:01-20:00 6.6 7.8 7.3 9.5 12.6 13.8 14.8 16.6 16.6 13.3 12.0 8.0 + 20:01-21:00 6.3 7.8 7.7 9.6 12.7 13.9 14.8 16.6 16.7 13.2 11.6 7.9 + 21:01-22:00 5.7 7.4 7.2 9.7 12.8 14.0 14.8 16.6 16.7 13.0 11.4 7.8 + 22:01-23:00 6.1 7.1 6.8 9.8 12.8 13.7 14.9 16.7 16.8 12.8 10.7 7.7 + 23:01-24:00 5.9 6.6 6.5 9.7 12.7 13.9 14.8 16.8 16.8 12.8 10.2 7.7 + Max Hour 19 20 21 23 10 22 1 6 2 18 19 19 + Min Hour 12 11 11 4 4 8 15 13 15 10 11 7 + + - Monthly Statistics for Relative Humidity % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 100 93 100 100 97 96 97 94 97 100 100 100 + Day:Hour 1:06 2:02 22:07 23:02 1:01 28:04 7:24 1:02 13:02 1:03 15:05 3:02 + + Minimum 3 11 6 6 52 36 41 41 18 8 8 11 + Day:Hour 13:15 3:14 9:11 7:11 23:20 5:08 19:09 17:13 15:10 26:23 13:12 20:13 + + Daily Avg 57 62 64 70 76 75 78 74 74 67 70 71 + + - Average Hourly Relative Humidity % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 63 67 72 77 82 83 86 82 82 72 73 75 + 1:01- 2:00 65 71 72 76 84 83 86 84 85 75 78 77 + 2:01- 3:00 67 72 72 77 85 83 85 85 85 78 78 77 + 3:01- 4:00 68 72 71 78 85 84 86 85 85 79 78 78 + 4:01- 5:00 66 71 70 79 85 84 86 85 86 78 78 78 + 5:01- 6:00 64 69 68 79 83 81 85 84 85 77 76 77 + 6:01- 7:00 59 65 66 75 79 76 81 79 80 74 74 75 + 7:01- 8:00 58 61 62 68 74 72 77 72 73 67 70 74 + 8:01- 9:00 51 57 57 62 71 71 73 67 66 59 64 69 + 9:01-10:00 45 52 55 61 69 69 71 66 65 55 59 67 + 10:01-11:00 42 48 53 60 68 67 68 64 62 53 55 66 + 11:01-12:00 39 47 52 59 66 66 68 63 61 56 55 63 + 12:01-13:00 42 50 53 60 67 65 67 61 61 57 58 63 + 13:01-14:00 46 51 53 60 67 66 68 63 61 58 60 63 + 14:01-15:00 48 53 55 61 68 67 68 65 63 59 64 65 + 15:01-16:00 53 56 58 64 70 69 70 67 67 62 68 67 + 16:01-17:00 55 57 59 64 71 70 72 68 69 64 71 68 + 17:01-18:00 58 60 61 66 72 72 74 70 71 67 74 70 + 18:01-19:00 62 65 65 69 75 75 77 73 75 69 77 71 + 19:01-20:00 61 68 70 72 78 79 81 78 77 69 77 70 + 20:01-21:00 61 69 73 74 79 81 83 79 78 70 76 70 + 21:01-22:00 61 68 72 75 80 82 84 80 79 70 76 71 + 22:01-23:00 62 68 70 77 81 81 84 80 80 70 74 72 + 23:01-24:00 63 67 70 77 81 82 85 81 80 71 73 73 + Max Hour 4 3 21 5 4 4 5 5 5 4 3 5 + Min Hour 12 12 12 12 12 13 13 13 13 11 12 12 + + - Monthly Indicators for Precipitation/Moisture (kPa) + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0.9 0.9 0.9 1.2 1.5 1.5 1.7 1.9 1.8 1.5 1.3 1.2 + + - Monthly Statistics for Wind Chill/Heat Index temperatures C ** + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Minimum WC 7 1 1 4 8 0 + Day:Hour 19:07 27:24 17:23 14:02 12:05 19:01 + + Average WC 9 8 7 9 9 6 + Avg Del WC 0 1 2 0 0 3 + # Hours WC 21 33 37 8 3 50 + + Maximum HI 28 30 30 29 + Day:Hour 19:10 29:12 15:12 2:10 + + Average HI 28 28 28 28 + Avg Del HI 0 1 1 0 + # Hours HI 3 21 22 6 + + - **WindChill/HeatIndex Temps -- statistics...only those different from Air Temps + + - Monthly Wind Direction % {N=0 or 360,E=90,S=180,W=270} + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + North 5 5 3 4 3 1 1 3 1 5 4 12 + NorthEast 10 10 6 3 2 2 0 1 3 7 7 10 + East 22 15 11 8 6 6 3 3 4 13 16 17 + SouthEast 14 11 12 8 8 8 4 3 6 6 15 8 + South 4 4 6 6 6 6 5 3 5 6 5 5 + SouthWest 5 5 6 3 6 5 9 2 3 3 4 3 + West 37 46 51 61 64 71 75 78 72 55 45 34 + NorthWest 5 4 6 6 3 3 3 7 7 5 4 11 + + - Monthly Statistics for Wind Speed m/s + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 13.9 13.6 16.9 14.5 12.8 9.6 8.1 8.2 9.2 10.7 13.5 12.3 + Day:Hour 21:12 13:18 18:13 13:20 25:19 5:18 18:13 16:16 13:15 24:15 9:13 18:13 + + Minimum 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + Day:Hour 1:04 1:04 1:07 2:04 4:02 1:02 1:03 1:06 1:01 1:02 1:01 1:04 + + Daily Avg 2.3 3.0 3.6 3.7 3.5 3.6 3.5 3.3 3.1 3.1 2.9 2.8 + + - Maximum Wind Speed of 16.9 m/s on Mar 18 + - Minimum Wind Speed of 0.0 m/s on Jan 1 + + - Average Hourly Statistics for Wind Speed m/s + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 1.3 2.2 1.8 2.7 1.6 2.0 2.1 1.5 1.6 1.5 1.9 2.2 + 1:01- 2:00 1.1 1.5 1.8 1.9 1.5 1.7 1.7 1.1 1.1 1.5 1.8 1.9 + 2:01- 3:00 1.4 1.3 1.6 1.5 1.6 1.6 1.4 1.4 1.0 1.4 1.6 2.0 + 3:01- 4:00 1.1 1.4 1.7 1.7 1.6 1.4 1.6 1.4 0.9 1.6 1.6 1.9 + 4:01- 5:00 1.4 1.5 1.9 1.6 1.9 1.7 1.4 1.3 0.6 1.7 2.1 1.8 + 5:01- 6:00 1.4 1.8 2.0 1.8 1.9 1.5 1.7 1.5 0.9 1.6 2.1 2.2 + 6:01- 7:00 1.6 2.0 1.9 1.9 1.7 1.6 1.6 1.3 1.0 1.3 2.2 2.2 + 7:01- 8:00 1.6 2.1 2.2 2.2 1.9 2.0 2.0 1.7 1.5 1.5 2.4 2.0 + 8:01- 9:00 2.0 2.5 2.3 2.5 2.9 2.6 2.6 2.7 2.0 1.8 2.2 2.4 + 9:01-10:00 2.4 2.4 2.6 3.4 4.0 3.6 3.3 3.6 3.4 2.4 2.4 2.5 + 10:01-11:00 2.2 2.6 3.7 4.5 4.9 4.6 4.3 4.3 4.1 3.8 2.7 2.5 + 11:01-12:00 3.0 3.8 4.7 5.5 5.1 5.4 5.1 5.2 4.9 4.7 3.6 3.4 + 12:01-13:00 3.9 4.4 5.6 6.1 5.8 5.7 5.5 5.8 5.7 5.1 4.6 4.0 + 13:01-14:00 4.4 5.1 6.1 6.1 6.0 6.1 5.7 6.2 6.1 5.4 4.9 4.3 + 14:01-15:00 4.4 5.2 6.6 6.1 6.0 6.1 5.7 6.0 6.2 5.6 5.1 4.5 + 15:01-16:00 4.0 5.6 6.2 6.4 5.7 5.9 5.7 5.8 6.0 5.7 4.7 4.6 + 16:01-17:00 3.7 5.2 6.1 6.3 5.5 5.9 5.5 5.5 5.7 5.4 4.5 4.3 + 17:01-18:00 3.3 4.7 5.9 6.0 5.2 5.8 5.2 5.2 5.2 5.0 4.3 3.8 + 18:01-19:00 2.6 4.1 5.3 4.8 4.7 5.0 4.7 4.6 4.3 4.3 3.3 3.3 + 19:01-20:00 2.5 3.5 4.3 4.3 3.9 4.4 4.2 3.9 3.4 3.3 2.8 2.7 + 20:01-21:00 1.7 3.1 3.8 3.0 3.3 3.5 3.8 3.2 2.5 2.8 2.0 2.5 + 21:01-22:00 1.4 2.4 3.1 2.9 2.8 2.9 3.2 2.8 2.2 2.5 1.8 2.2 + 22:01-23:00 1.3 2.5 2.7 2.6 2.3 2.7 2.9 2.3 1.6 2.2 2.2 2.3 + 23:01-24:00 1.2 2.0 2.5 2.5 2.1 2.3 2.4 1.8 1.4 1.9 2.4 2.5 + Max Hour 15 16 15 16 14 14 16 14 15 16 15 16 + Min Hour 2 3 3 3 2 4 5 2 5 7 4 5 + + - Average Hourly Statistics for Wind Direction {N=0 or 360,E=90,S=180,W=270} + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 125 169 157 177 170 198 243 245 209 174 168 156 + 1:01- 2:00 114 147 141 179 155 198 236 231 220 167 130 144 + 2:01- 3:00 101 134 114 161 171 188 235 247 215 139 135 146 + 3:01- 4:00 115 124 147 184 180 180 212 235 202 129 129 151 + 4:01- 5:00 114 117 130 156 190 174 209 223 187 125 138 146 + 5:01- 6:00 115 138 128 160 184 183 210 215 190 138 146 143 + 6:01- 7:00 116 120 135 175 190 189 206 233 220 145 137 125 + 7:01- 8:00 106 136 158 201 198 213 221 220 227 165 148 143 + 8:01- 9:00 123 145 163 217 242 226 227 245 250 222 155 154 + 9:01-10:00 139 160 200 238 251 248 252 257 255 239 166 172 + 10:01-11:00 184 196 229 247 252 253 255 256 258 250 217 201 + 11:01-12:00 197 216 235 260 256 256 255 266 261 252 236 210 + 12:01-13:00 228 238 248 262 259 260 259 263 265 256 242 226 + 13:01-14:00 250 248 252 264 259 259 258 266 266 261 245 238 + 14:01-15:00 246 247 259 261 259 258 259 265 266 262 252 243 + 15:01-16:00 256 248 261 267 262 258 261 264 263 260 251 258 + 16:01-17:00 252 242 261 266 258 261 257 261 264 264 248 258 + 17:01-18:00 236 242 261 264 258 260 257 261 264 263 248 256 + 18:01-19:00 255 251 260 260 255 255 257 260 259 258 253 257 + 19:01-20:00 242 246 253 256 252 256 258 259 252 254 245 235 + 20:01-21:00 225 231 240 229 245 242 251 258 244 241 196 223 + 21:01-22:00 200 216 218 222 227 238 254 253 232 216 176 217 + 22:01-23:00 159 172 221 210 210 231 246 254 230 202 184 169 + 23:01-24:00 148 167 198 196 182 220 246 245 226 196 167 156 + Max Hour 16 19 17 16 16 17 16 12 14 17 19 16 + Min Hour 3 5 3 5 2 5 7 6 5 5 4 7 + + - Monthly Statistics for Liquid Precipitation mm + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Total 309 31 443 378 3 0 0 0 0 39 337 713 + Max Hourly 99 20 171 84 3 0 0 0 0 15 59 135 + + - Monthly Statistics for Albedo + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Average 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + - Monthly Statistics for Solar Radiation (Direct Normal, Diffuse, Global Horizontal) Wh/m + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Direct Avg 6672 7584 2327 9061 8928 3753 8330 8195 7809 7035 6745 1503 + + Direct Max 9644 11327 8801 14065 14746 10252 11778 13381 13230 12389 11536 7081 + Day 25 8 9 7 28 24 9 27 19 26 13 19 + + Diffuse Avg 911 1132 2181 1683 1915 2835 2059 1873 1617 1339 1000 1285 + + Global Avg 3621 4690 3539 7251 7912 5680 7844 7214 6196 4879 3798 1883 + - Maximum Direct Normal Solar of 14746 Wh/m on May 28 + + - Average Hourly Statistics for Direct Normal Solar Radiation Wh/m + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 23 20 0 0 0 0 0 0 + 5:01- 6:00 0 0 1 332 292 38 229 239 169 0 0 0 + 6:01- 7:00 0 154 51 496 510 64 440 411 397 362 296 2 + 7:01- 8:00 387 476 82 648 616 167 588 566 568 542 480 51 + 8:01- 9:00 615 665 99 721 676 213 683 646 646 633 645 132 + 9:01-10:00 725 764 149 770 741 214 750 719 699 689 688 152 + 10:01-11:00 776 789 163 802 789 319 745 767 747 719 734 216 + 11:01-12:00 783 829 247 807 804 447 764 781 774 767 746 171 + 12:01-13:00 795 823 311 830 795 523 755 784 780 763 782 203 + 13:01-14:00 787 812 352 831 790 440 747 756 764 755 745 202 + 14:01-15:00 733 768 323 797 765 417 722 721 729 700 696 209 + 15:01-16:00 625 686 252 725 706 357 659 656 658 607 560 104 + 16:01-17:00 409 531 182 630 622 266 589 556 529 405 372 61 + 17:01-18:00 37 287 115 445 463 177 439 382 331 93 0 0 + 18:01-19:00 0 0 0 226 335 91 220 211 18 0 0 0 + 19:01-20:00 0 0 0 0 0 0 0 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour* 13 12 14 14 12 13 12 13 13 12 13 11* + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Diffuse Horizontal Solar Radiation Wh/m + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 0 1 0 0 0 0 0 0 + 5:01- 6:00 0 0 0 11 38 28 36 16 3 0 0 0 + 6:01- 7:00 0 4 27 65 91 82 94 74 52 29 8 0 + 7:01- 8:00 30 49 70 112 138 137 138 123 105 83 54 26 + 8:01- 9:00 70 89 121 148 174 194 167 161 148 126 92 90 + 9:01-10:00 100 116 190 171 189 269 179 181 177 157 124 149 + 10:01-11:00 119 141 249 183 191 343 204 189 188 176 139 194 + 11:01-12:00 133 145 312 191 194 338 207 195 188 171 147 212 + 12:01-13:00 130 150 321 181 196 306 212 193 183 168 133 215 + 13:01-14:00 119 141 296 169 185 318 203 193 173 150 123 185 + 14:01-15:00 101 126 255 155 169 284 189 180 155 130 97 130 + 15:01-16:00 74 99 193 137 149 239 171 159 128 96 66 70 + 16:01-17:00 35 61 115 101 116 178 135 123 87 49 18 14 + 17:01-18:00 0 12 31 54 72 93 91 72 29 3 0 0 + 18:01-19:00 0 0 0 4 14 27 34 14 0 0 0 0 + 19:01-20:00 0 0 0 0 0 0 0 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour* 12 13 13 12 13 11* 13 12 12 11* 12 13 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Global Horizontal Solar Radiation Wh/m + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 0 1 0 0 0 0 0 0 + 5:01- 6:00 0 0 0 24 73 33 60 27 5 0 0 0 + 6:01- 7:00 0 6 31 174 254 103 227 174 122 61 16 0 + 7:01- 8:00 66 123 91 385 453 224 428 373 319 236 146 31 + 8:01- 9:00 232 316 165 584 636 342 622 563 508 416 321 125 + 9:01-10:00 393 494 282 748 796 446 785 734 665 566 457 209 + 10:01-11:00 513 619 364 866 911 638 880 856 781 666 557 300 + 11:01-12:00 573 698 505 918 964 772 941 914 838 721 597 303 + 12:01-13:00 580 703 564 924 951 812 936 913 830 700 588 321 + 13:01-14:00 525 647 554 862 887 719 881 844 756 622 503 280 + 14:01-15:00 408 529 459 732 766 621 771 724 625 479 371 205 + 15:01-16:00 249 363 314 550 596 477 610 556 446 299 199 92 + 16:01-17:00 81 170 169 343 398 309 424 358 241 108 41 17 + 17:01-18:00 1 21 42 133 191 147 222 155 59 5 0 0 + 18:01-19:00 0 0 0 8 36 37 57 22 0 0 0 0 + 19:01-20:00 0 0 0 0 0 0 0 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour 13 13 13 13 12 13 12 12 12 12 12 13 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Total Sky Cover % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 41 52 58 44 54 66 67 39 36 43 57 62 + 1:01- 2:00 41 53 61 51 58 69 75 40 39 41 60 61 + 2:01- 3:00 45 54 61 51 60 69 77 44 43 45 64 67 + 3:01- 4:00 43 51 55 52 69 68 82 42 41 44 63 70 + 4:01- 5:00 46 53 65 50 74 72 85 56 47 49 66 66 + 5:01- 6:00 50 50 67 58 77 74 85 58 57 57 72 65 + 6:01- 7:00 66 63 70 66 77 74 86 55 53 58 73 71 + 7:01- 8:00 64 63 67 67 68 66 80 50 49 55 69 75 + 8:01- 9:00 62 61 66 62 58 62 71 50 45 52 67 73 + 9:01-10:00 58 58 60 58 52 61 62 49 43 48 59 69 + 10:01-11:00 58 53 63 58 42 47 46 47 43 43 51 68 + 11:01-12:00 55 53 52 55 38 38 45 45 42 45 48 68 + 12:01-13:00 58 57 53 57 39 36 47 45 44 45 53 65 + 13:01-14:00 57 55 55 58 38 37 46 44 45 43 55 61 + 14:01-15:00 55 54 53 55 39 36 49 45 47 43 55 62 + 15:01-16:00 49 56 53 54 41 35 44 47 49 43 52 61 + 16:01-17:00 48 54 52 56 41 39 45 46 46 44 53 63 + 17:01-18:00 49 54 55 58 42 44 50 45 49 47 54 65 + 18:01-19:00 45 53 54 60 42 45 50 45 48 42 54 60 + 19:01-20:00 34 45 54 56 41 50 52 47 41 38 52 54 + 20:01-21:00 35 45 46 48 37 54 52 40 33 37 45 56 + 21:01-22:00 35 46 45 43 38 57 52 45 30 38 43 55 + 22:01-23:00 39 48 50 47 42 62 57 41 33 35 45 55 + 23:01-24:00 37 51 53 46 51 65 64 37 39 43 50 58 + Max Hour 7 7 7 8 6 6 7 6 6 7 7 8 + Min Hour 20 20 22 22 21 16 16 24 22 23 22 20 + + - Average Hourly Statistics for Opaque Sky Cover % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 41 52 58 44 54 66 67 39 36 43 57 62 + 1:01- 2:00 41 53 61 51 58 69 75 40 39 41 60 61 + 2:01- 3:00 45 54 61 51 60 69 77 44 43 45 64 67 + 3:01- 4:00 43 51 55 52 69 68 82 42 41 44 63 70 + 4:01- 5:00 46 53 65 50 74 72 85 56 47 49 66 66 + 5:01- 6:00 50 50 67 58 77 74 85 58 57 57 72 65 + 6:01- 7:00 66 63 70 66 77 74 86 55 53 58 73 71 + 7:01- 8:00 64 63 67 67 68 66 80 50 49 55 69 75 + 8:01- 9:00 62 61 66 62 58 62 71 50 45 52 67 73 + 9:01-10:00 58 58 60 58 52 61 62 49 43 48 59 69 + 10:01-11:00 58 53 63 58 42 47 46 47 43 43 51 68 + 11:01-12:00 55 53 52 55 38 38 45 45 42 45 48 68 + 12:01-13:00 58 57 53 57 39 36 47 45 44 45 53 65 + 13:01-14:00 57 55 55 58 38 37 46 44 45 43 55 61 + 14:01-15:00 55 54 53 55 39 36 49 45 47 43 55 62 + 15:01-16:00 49 56 53 54 41 35 44 47 49 43 52 61 + 16:01-17:00 48 54 52 56 41 39 45 46 46 44 53 63 + 17:01-18:00 49 54 55 58 42 44 50 45 49 47 54 65 + 18:01-19:00 45 53 54 60 42 45 50 45 48 42 54 60 + 19:01-20:00 34 45 54 56 41 50 52 47 41 38 52 54 + 20:01-21:00 35 45 46 48 37 54 52 40 33 37 45 56 + 21:01-22:00 35 46 45 43 38 57 52 45 30 38 43 55 + 22:01-23:00 39 48 50 47 42 62 57 41 33 35 45 55 + 23:01-24:00 37 51 53 46 51 65 64 37 39 43 50 58 + Max Hour 7 7 7 8 6 6 7 6 6 7 7 8 + Min Hour 20 20 22 22 21 16 16 24 22 23 22 20 + + - Monthly Calculated "undisturbed" Ground Temperatures** C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0.5 m 15.1 13.8 13.5 13.8 15.5 17.4 19.2 20.5 20.9 20.3 18.8 16.9 + 2.0 m 16.2 15.0 14.5 14.4 15.4 16.7 18.1 19.3 19.9 19.8 19.0 17.7 + 4.0 m 17.0 16.0 15.5 15.3 15.6 16.4 17.4 18.3 18.9 19.0 18.7 17.9 + + - **These ground temperatures should NOT BE USED in the GroundTemperatures object to compute building floor losses. + - The temperatures for 0.5 m depth can be used for GroundTemperatures:Surface. + - The temperatures for 4.0 m depth can be used for GroundTemperatures:Deep. + - Calculations use a standard soil diffusivity of 2.3225760E-03 {m**2/day} + + - Heating/Cooling Degree Days/Hours calculated from this weather file. + - Heating/Cooling Degree Days/Hours from design conditions shown earlier in this report. + - Monthly Weather File Heating/Cooling Degree Days/Hours + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + HDD base 10C 0 0 0 0 0 0 0 0 0 0 0 0 + HDD base 18C 99 117 136 84 31 4 3 0 0 5 51 133 + + CDD base 10C 152 115 115 156 221 244 275 367 356 316 200 115 + CDD base 18C 2 0 3 0 3 8 30 119 116 73 11 0 + + CDH base 20C 220 71 120 48 39 94 281 1581 1549 990 238 0 + CDH base 23C 48 2 41 11 0 0 33 428 436 332 99 0 + CDH base 27C 1 0 7 0 0 0 3 14 58 40 20 0 + + - 2631 annual (wthr file) cooling degree-days (10C baseline) + - 0 annual (wthr file) heating degree-days (10C baseline) + + - 365 annual (wthr file) cooling degree-days (18C baseline) + - 662 annual (wthr file) heating degree-days (18C baseline) + + - Climate type "Csb" (Kppen classification)** + - Mediterranean climate (dry warm summer, mild winter, lat. 30-45N) + - **Note that the Kppen classification shown here is derived algorithmically from the source weather data. + - It may not be indicative of the long term climate for this location. + + - Climate type "3A" (ASHRAE Standard 196-2006 Climate Zone)** + - Warm - Humid, Probable Kppen classification=Cfa, Humid Subtropical (Warm Summer) + - **Note that the ASHRAE classification shown here is derived algorithmically from the source weather data. + - It may not be indicative of the long term climate for this location. + + - Typical/Extreme Period Determination + + - Summer is Sep:Nov + Extreme Summer Week (nearest maximum temperature for summer) + Extreme Hot Week Period selected: Sep 15:Sep 21, Maximum Temp= 35.60C, Deviation=|12.873|C + Typical Summer Week (nearest average temperature for summer) + Typical Week Period selected: Oct 6:Oct 12, Average Temp= 19.64C, Deviation=| 0.133|C + + - Winter is Mar:May + Extreme Winter Week (nearest minimum temperature for winter) + Extreme Cold Week Period selected: Mar 15:Mar 21, Minimum Temp= 6.40C, Deviation=| 5.677|C + Typical Winter Week (nearest average temperature for winter) + Typical Week Period selected: Apr 19:Apr 25, Average Temp= 15.27C, Deviation=| 0.038|C + + - Autumn is Dec:Feb + Typical Autumn Week (nearest average temperature for autumn) + Typical Week Period selected: Feb 16:Feb 22, Average Temp= 14.26C, Deviation=| 0.270|C + + - Spring is Jun:Aug + Typical Spring Week (nearest average temperature for spring) + Typical Week Period selected: Jul 20:Jul 26, Average Temp= 19.58C, Deviation=| 0.022|C diff --git a/measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.ddy b/measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.ddy new file mode 100644 index 0000000..d7a3db9 --- /dev/null +++ b/measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.ddy @@ -0,0 +1,536 @@ + ! The following Location and Design Day data are produced as possible from the indicated data source. + ! Wind Speeds follow the indicated design conditions rather than traditional values (6.7 m/s heating, 3.35 m/s cooling) + ! No special attempts at re-creating or determining missing data parts (e.g. Wind speed or direction) + ! are done. Therefore, you should look at the data and fill in any incorrect values as you desire. + + Site:Location, + Boston Logan IntL Arpt_MA_USA Design_Conditions, !- Location Name + 42.37, !- Latitude {N+ S-} + -71.02, !- Longitude {W- E+} + -5.00, !- Time Zone Relative to GMT {GMT+/-} + 6.00; !- Elevation {m} + + ! WMO=725090 Time Zone=NAE: (GMT-05:00) Eastern Time (US & Canada) + ! Data Source=ASHRAE 2009 Annual Design Conditions + RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- StartDate + 2nd Sunday in November; !- EndDate + + ! Using Design Conditions from "Climate Design Data 2009 ASHRAE Handbook" + ! Boston Logan IntL Arpt_MA_USA Extreme Annual Wind Speeds, 1%=12m/s, 2.5%=10.8m/s, 5%=9.3m/s + ! Boston Logan IntL Arpt_MA_USA Extreme Annual Temperatures, Max Drybulb=-16.5C Min Drybulb=35.3C + + ! Boston Logan IntL Arpt_MA_USA Annual Heating Design Conditions Wind Speed=7.2m/s Wind Dir=320 + ! Coldest Month=JAN + ! Boston Logan IntL Arpt_MA_USA Annual Heating 99.6%, MaxDB=-13.6C + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -13.6, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + -13.6, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 7.2, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Boston Logan IntL Arpt_MA_USA Annual Heating 99%, MaxDB=-10.9C + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Htg 99% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -10.9, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + -10.9, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 7.2, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Boston Logan IntL Arpt_MA_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-24.4C + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Hum_n 99.6% Condns DP=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -12, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + -24.4, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 7.2, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Boston Logan IntL Arpt_MA_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-21.7C + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Hum_n 99% Condns DP=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -9.3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + -21.7, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 7.2, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Boston Logan IntL Arpt_MA_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=14.1m/s + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 2.1, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 2.1, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 14.1, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Boston Logan IntL Arpt_MA_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=12.6m/s + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Htg Wind 99% Condns WS=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -0.3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + -0.3, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 12.6, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Boston Logan IntL Arpt Annual Cooling Design Conditions Wind Speed=6.3m/s Wind Dir=270 + ! Hottest Month=JUL + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (DB=>MWB) .4%, MaxDB=32.7C MWB=22.9C + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg .4% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 32.7, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 22.9, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (DB=>MWB) 1%, MaxDB=30.9C MWB=22.2C + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg 1% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.9, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 22.2, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (DB=>MWB) 2%, MaxDB=29.1C MWB=21.4C + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg 2% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 29.1, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 21.4, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (WB=>MDB) .4%, MDB=30.2C WB=24.6C + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg .4% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.2, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 24.6, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (WB=>MDB) 1%, MDB=28.6C WB=23.7C + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg 1% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 28.6, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 23.7, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (WB=>MDB) 2%, MDB=27.1C WB=22.8C + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg 2% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 27.1, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 22.8, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (DP=>MDB) .4%, MDB=27.3C DP=22.8C HR=0.0176 + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg .4% Condns DP=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 27.3, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 22.8, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (DP=>MDB) 1%, MDB=26.2C DP=22C HR=0.0167 + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg 1% Condns DP=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 26.2, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 22, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (DP=>MDB) 2%, MDB=25.5C DP=21.2C HR=0.0159 + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg 2% Condns DP=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 25.5, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 21.2, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=30.6C Enthalpy=74100.0J/kg + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg .4% Condns Enth=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.6, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 74100.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=28.5C Enthalpy=70400.0J/kg + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg 1% Condns Enth=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 28.5, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 70400.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Boston Logan IntL Arpt_MA_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=27.2C Enthalpy=67000.0J/kg + SizingPeriod:DesignDay, + Boston Logan IntL Arpt Ann Clg 2% Condns Enth=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 27.2, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 67000.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101253., !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.950; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + diff --git a/measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.epw b/measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.epw new file mode 100644 index 0000000..7dec80f --- /dev/null +++ b/measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.epw @@ -0,0 +1,8768 @@ +LOCATION,Boston Logan IntL Arpt,MA,USA,TMY3,725090,42.37,-71.02,-5.0,6.0 +DESIGN CONDITIONS,1,Climate Design Data 2009 ASHRAE Handbook,,Heating,1,-13.6,-10.9,-24.4,0.4,-12,-21.7,0.5,-9.3,14.1,2.1,12.6,-0.3,7.2,320,Cooling,7,8.4,32.7,22.9,30.9,22.2,29.1,21.4,24.6,30.2,23.7,28.6,22.8,27.1,6.3,270,22.8,17.6,27.3,22,16.7,26.2,21.2,15.9,25.5,74.1,30.6,70.4,28.5,67,27.2,765,Extremes,12,10.8,9.3,27,-16.5,35.3,2.5,1.6,-18.3,36.5,-19.7,37.4,-21.1,38.4,-22.9,39.5 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,7/ 6,7/12,Summer - Week Nearest Average Temperature For Period,Typical,7/27,8/ 2,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,10/20,10/26,Spring - Week Nearest Average Temperature For Period,Typical,3/29,4/ 4 +GROUND TEMPERATURES,3,.5,,,,-0.29,-1.36,0.53,3.49,11.23,17.20,21.23,22.45,20.36,15.73,9.53,3.79,2,,,,3.63,1.73,2.12,3.69,8.87,13.55,17.29,19.30,18.87,16.24,11.98,7.45,4,,,,6.88,4.93,4.50,5.09,8.02,11.18,14.07,16.08,16.55,15.41,12.90,9.84 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#725090; NREL TMY Data Set (2008); Period of Record 1973-2005 (Generally) +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +1976,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,1.7,-3.9,67,100900,0,0,290,0,0,0,0,0,0,0,360,6.2,10,10,19.3,3960,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,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,1.7,-3.9,67,100800,0,0,290,0,0,0,0,0,0,0,350,5.7,10,10,19.3,3960,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,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,1.1,-3.9,70,100800,0,0,287,0,0,0,0,0,0,0,360,6.2,10,10,20.9,3960,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,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,1.1,-3.9,70,100700,0,0,287,0,0,0,0,0,0,0,10,5.7,10,10,20.9,3960,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,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,1.1,-4.4,67,100700,0,0,287,0,0,0,0,0,0,0,10,5.7,10,10,24.1,3960,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,1.1,-4.4,67,100700,0,0,287,0,0,0,0,0,0,0,360,6.7,10,10,24.1,910,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,0.6,-4.4,70,100800,0,0,285,0,0,0,0,0,0,0,360,7.7,10,10,24.1,820,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,0.6,-5.0,67,100900,58,1049,276,10,1,10,1189,0,1189,375,350,8.2,10,9,24.1,790,9,999999999,80,0.1290,0,88,999.000,999.0,99.0 +1976,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,0.6,-5.0,67,101100,254,1415,270,74,38,67,8084,3003,7542,1645,360,6.2,10,8,24.1,6100,9,999999999,80,0.1290,0,88,999.000,999.0,99.0 +1976,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,0.0,-6.1,64,101200,420,1415,243,248,544,85,25268,47430,11114,1538,350,7.7,3,0,24.1,77777,9,999999999,80,0.1290,0,88,999.000,999.0,99.0 +1976,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.1,-6.1,59,101200,533,1415,264,267,252,171,28003,24470,18744,3667,360,6.2,6,6,19.3,910,9,999999999,80,0.1290,0,88,999.000,999.0,99.0 +1976,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,1.1,-5.6,62,101200,584,1415,256,384,648,116,39622,61337,14177,2234,360,5.2,2,2,19.3,77777,9,999999999,80,0.1290,0,88,999.000,999.0,99.0 +1976,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,2.2,-6.1,55,101200,571,1415,251,371,688,93,38816,65489,12280,1845,320,5.7,0,0,24.1,77777,9,999999999,80,0.1290,0,88,999.000,999.0,99.0 +1976,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,2.8,-7.2,48,101200,493,1415,252,309,645,84,32146,59299,11384,1606,310,8.8,0,0,24.1,77777,9,999999999,69,0.1290,0,88,999.000,999.0,99.0 +1976,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,2.8,-7.2,48,101300,357,1415,252,196,516,66,20193,42949,9305,1200,320,7.7,0,0,24.1,77777,9,999999999,69,0.1290,0,88,999.000,999.0,99.0 +1976,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,-7.8,48,101300,172,1415,249,69,247,39,7216,14314,5462,699,320,6.7,0,0,24.1,77777,9,999999999,69,0.1290,0,88,999.000,999.0,99.0 +1976,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,1.1,-8.3,50,101400,11,460,245,5,7,5,0,0,0,0,330,6.7,0,0,24.1,77777,9,999999999,69,0.1290,0,88,999.000,999.0,99.0 +1976,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,0.0,-9.4,49,101500,0,0,240,0,0,0,0,0,0,0,320,7.7,0,0,32.2,77777,9,999999999,60,0.0890,0,88,999.000,999.0,99.0 +1976,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,-1.1,-12.8,41,101600,0,0,233,0,0,0,0,0,0,0,330,8.2,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-2.2,-13.3,43,101700,0,0,229,0,0,0,0,0,0,0,330,7.7,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-3.3,-13.9,44,101800,0,0,232,0,0,0,0,0,0,0,310,8.2,2,2,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-4.4,-14.4,46,101900,0,0,221,0,0,0,0,0,0,0,320,8.8,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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.6,-14.4,50,101900,0,0,217,0,0,0,0,0,0,0,320,8.2,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-6.7,-13.3,60,102000,0,0,214,0,0,0,0,0,0,0,310,6.7,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-6.7,-13.9,57,102000,0,0,214,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-7.2,-14.4,57,102100,0,0,211,0,0,0,0,0,0,0,320,6.7,0,0,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-7.8,-14.4,59,102200,0,0,210,0,0,0,0,0,0,0,320,7.2,0,0,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-7.8,-14.4,59,102200,0,0,210,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-7.8,-15.0,57,102300,0,0,209,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-8.3,-15.0,59,102400,0,0,208,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-8.3,-15.0,59,102500,0,0,208,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-8.3,-14.4,62,102600,58,1049,208,24,68,18,2400,2200,2200,310,330,5.2,0,0,24.1,77777,9,999999999,50,0.1230,0,88,999.000,999.0,99.0 +1976,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,-7.2,-13.9,59,102700,254,1415,212,125,405,52,12700,29400,7400,910,330,3.1,0,0,24.1,77777,9,999999999,50,0.1230,0,88,999.000,999.0,99.0 +1976,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,-13.9,52,102700,421,1415,217,252,601,73,26100,52900,10300,1360,360,3.1,0,0,24.1,77777,9,999999999,50,0.1230,0,88,999.000,999.0,99.0 +1976,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,-4.4,-12.2,55,102700,534,1415,250,256,141,202,27300,13600,22200,4690,350,2.6,9,9,24.1,610,9,999999999,60,0.1230,0,88,999.000,999.0,99.0 +1976,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.3,-10.0,60,102700,586,1415,256,191,17,184,21400,1400,20800,6680,350,3.6,9,9,24.1,640,9,999999999,60,0.1230,0,88,999.000,999.0,99.0 +1976,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,-1.7,-8.9,58,102600,573,1415,258,209,103,168,22900,10200,18700,3950,330,2.6,8,8,24.1,640,9,999999999,69,0.1230,0,88,999.000,999.0,99.0 +1976,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.1,-7.2,64,102700,496,1415,252,303,500,128,31600,46300,15300,2470,340,2.6,5,5,24.1,77777,9,999999999,69,0.1230,0,88,999.000,999.0,99.0 +1976,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,-1.1,-7.2,64,102600,360,1415,252,162,257,96,17100,21700,11500,1880,60,1.5,5,5,24.1,77777,9,999999999,69,0.1230,0,88,999.000,999.0,99.0 +1976,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,-1.7,-6.7,69,102600,175,1415,241,72,152,54,7600,8500,6500,1050,50,1.5,9,1,24.1,77777,9,999999999,69,0.1230,0,88,999.000,999.0,99.0 +1976,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,-1.7,-6.7,69,102600,12,483,241,7,4,6,0,0,0,0,60,1.0,10,1,22.5,77777,9,999999999,69,0.1230,0,88,999.000,999.0,99.0 +1976,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,-1.7,-6.7,69,102600,0,0,253,0,0,0,0,0,0,0,30,0.5,10,6,20.9,580,9,999999999,69,0.0890,0,88,999.000,999.0,99.0 +1976,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.7,-6.1,72,102700,0,0,273,0,0,0,0,0,0,0,0,0.0,10,10,19.3,520,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,-1.7,-5.6,75,102600,0,0,250,0,0,0,0,0,0,0,210,1.5,10,4,19.3,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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.1,-5.0,75,102600,0,0,277,0,0,0,0,0,0,0,210,3.1,10,10,17.7,3660,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,-0.6,-5.0,72,102600,0,0,279,0,0,0,0,0,0,0,190,3.1,10,10,17.7,3660,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,-5.0,72,102500,0,0,279,0,0,0,0,0,0,0,190,3.1,10,10,17.7,730,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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.6,-4.4,75,102200,0,0,280,0,0,0,0,0,0,0,160,5.2,10,10,19.3,730,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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.0,-3.9,75,102200,0,0,283,0,0,0,0,0,0,0,180,4.1,10,10,19.3,730,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,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.0,-3.3,79,102200,0,0,283,0,0,0,0,0,0,0,160,4.1,10,10,19.3,880,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,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,0.6,-3.3,75,102000,0,0,286,0,0,0,0,0,0,0,150,4.6,10,10,19.3,820,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,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,0.6,-2.8,79,101900,0,0,286,0,0,0,0,0,0,0,160,5.2,10,10,19.3,730,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,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.1,-2.2,79,101800,0,0,289,0,0,0,0,0,0,0,150,3.1,10,10,19.3,610,9,999999999,100,0.0890,0,88,999.000,999.0,99.0 +1976,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,-1.7,82,101800,0,0,290,0,0,0,0,0,0,0,190,1.5,10,10,12.9,580,9,999999999,100,0.0890,0,88,999.000,999.0,99.0 +1976,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,-1.1,85,101700,0,0,290,0,0,0,0,0,0,0,170,2.6,10,10,12.9,430,9,999999999,100,0.0890,0,88,999.000,999.0,99.0 +1976,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,1.1,-0.6,89,101600,58,1049,291,6,0,6,700,0,700,240,190,4.6,10,10,6.4,310,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1976,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.0,89,101500,254,1415,294,71,6,70,7900,200,7800,2290,210,5.2,10,10,16.1,400,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1976,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.0,89,101300,421,1415,294,162,4,161,17600,300,17500,4900,170,5.7,10,10,2.4,270,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1976,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,2.2,0.0,85,101200,535,1415,296,163,1,162,18100,100,18100,5830,190,4.1,10,10,3.2,460,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1976,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,92,101000,588,1415,297,113,7,110,13200,500,13000,4650,190,3.6,10,10,8.0,730,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1976,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.8,1.1,89,100800,575,1415,300,108,3,106,12500,200,12400,4480,190,4.1,10,10,8.0,430,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1976,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,3.3,1.7,89,100700,498,1415,303,93,5,91,10800,300,10700,3730,180,4.6,10,10,8.0,340,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1976,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,3.3,2.2,93,100500,363,1415,303,69,2,68,7900,100,7800,2620,170,1.5,10,10,6.4,240,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1976,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,3.3,2.2,93,100400,179,1415,303,35,2,34,3900,0,3900,1200,170,2.6,10,10,6.4,240,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1976,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.9,2.2,89,100300,13,507,306,5,0,5,0,0,0,0,240,3.1,10,10,6.4,1070,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1976,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.0,2.8,86,100300,0,0,311,0,0,0,0,0,0,0,240,4.1,10,10,8.0,1520,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1976,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,2.8,83,100200,0,0,314,0,0,0,0,0,0,0,240,4.6,10,10,11.3,1160,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1976,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,5.0,2.8,86,100200,0,0,311,0,0,0,0,0,0,0,250,5.2,10,10,16.1,1680,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1976,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,4.4,1.7,82,100300,0,0,266,0,0,0,0,0,0,0,270,7.2,0,0,19.3,77777,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1976,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,4.4,1.1,79,100300,0,0,266,0,0,0,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,110,0.0890,0,88,999.000,999.0,99.0 +1976,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,0.0,76,100300,0,0,274,0,0,0,0,0,0,0,290,6.2,3,3,24.1,77777,9,999999999,110,0.0890,0,88,999.000,999.0,99.0 +1976,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.3,-2.8,65,100300,0,0,258,0,0,0,0,0,0,0,290,7.2,0,0,24.1,77777,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,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,2.8,-3.9,62,100300,0,0,255,0,0,0,0,0,0,0,280,7.7,3,0,24.1,77777,9,999999999,89,0.0890,0,88,999.000,999.0,99.0 +1976,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,1.7,-4.4,64,100400,0,0,261,0,0,0,0,0,0,0,280,7.7,4,3,24.1,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,1.7,-4.4,64,100400,0,0,264,0,0,0,0,0,0,0,260,7.2,4,4,24.1,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,1.1,-5.0,64,100400,0,0,248,0,0,0,0,0,0,0,270,6.2,0,0,24.1,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,1.1,-5.6,62,100400,0,0,247,0,0,0,0,0,0,0,260,7.2,0,0,24.1,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,0.6,-6.1,61,100400,0,0,245,0,0,0,0,0,0,0,310,7.2,0,0,24.1,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,0.6,-5.6,64,100400,0,0,246,0,0,0,0,0,0,0,270,4.6,0,0,24.1,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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.3,-5.6,53,100500,58,1049,271,11,19,10,1300,800,1200,210,290,7.2,5,5,24.1,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1976,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,0.6,-7.8,54,100500,255,1415,281,62,16,59,6800,1300,6600,1490,280,10.3,10,10,24.1,2440,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1976,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.0,-9.4,49,100500,422,1415,277,97,4,96,11000,200,11000,3610,290,9.8,10,10,32.2,2440,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,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,0.0,-9.4,49,100500,537,1415,269,146,55,125,16000,5200,14100,3600,290,10.8,9,9,32.2,1830,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,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,0.0,-8.9,52,100400,590,1415,253,282,220,190,30500,21800,21400,4500,270,7.2,9,4,32.2,77777,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1976,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,0.6,-9.4,48,100400,578,1415,253,405,771,89,42500,73800,12200,1790,290,11.3,3,3,32.2,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,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,0.6,-9.4,48,100400,501,1415,242,323,758,54,34200,70800,8900,1150,280,10.8,0,0,32.2,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,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,0.6,-11.1,42,100500,366,1415,248,196,490,70,20200,41100,9500,1270,300,10.8,2,2,32.2,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,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,0.0,-11.1,43,100600,182,1415,249,75,304,36,7700,19100,5200,630,290,9.3,3,3,32.2,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1976,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,-1.1,-12.2,43,100800,14,531,241,9,25,6,0,0,0,0,280,11.8,2,2,32.2,77777,9,999999999,50,0.0670,0,88,999.000,999.0,99.0 +1976,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,-2.2,-12.8,45,100900,0,0,229,0,0,0,0,0,0,0,280,11.8,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-3.3,-13.9,44,101000,0,0,225,0,0,0,0,0,0,0,280,9.8,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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.9,-13.9,46,101100,0,0,223,0,0,0,0,0,0,0,280,9.8,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-5.0,-14.4,48,101200,0,0,219,0,0,0,0,0,0,0,280,10.3,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-13.3,55,101300,0,0,218,0,0,0,0,0,0,0,280,9.3,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-6.1,-13.9,55,101300,0,0,215,0,0,0,0,0,0,0,290,8.8,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-7.2,-13.9,59,101400,0,0,212,0,0,0,0,0,0,0,320,8.2,0,0,32.2,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1976,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,-7.8,-16.7,49,101500,0,0,208,0,0,0,0,0,0,0,300,9.3,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-8.3,-17.2,49,101600,0,0,206,0,0,0,0,0,0,0,300,8.8,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-8.9,-17.8,49,101700,0,0,203,0,0,0,0,0,0,0,290,8.8,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-17.8,51,101800,0,0,202,0,0,0,0,0,0,0,300,7.2,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-18.3,49,101800,0,0,201,0,0,0,0,0,0,0,290,10.3,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-10.0,-18.3,51,101900,0,0,200,0,0,0,0,0,0,0,310,9.3,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-10.0,-18.9,49,102000,0,0,199,0,0,0,0,0,0,0,300,6.7,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,1,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-18.9,49,102000,58,1049,199,34,239,13,2800,12500,2000,260,300,7.7,0,0,32.2,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1976,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,-10.0,-19.4,46,102300,255,1415,199,146,648,28,15400,51400,6100,660,300,9.3,0,0,32.2,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1976,1,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-20.6,40,102400,424,1415,199,278,797,38,29400,71800,7800,950,300,9.3,0,0,32.2,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1976,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,-8.3,-20.6,37,102500,539,1415,203,375,866,44,39700,81600,8500,1120,310,10.3,0,0,32.2,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1976,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,-7.2,-20.0,36,102400,592,1415,207,424,897,47,44800,85700,8800,1210,310,9.8,0,0,32.2,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1976,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,-6.7,-20.0,34,102500,580,1415,208,414,892,47,43800,85000,8800,1190,300,7.7,0,0,32.2,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1976,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,-5.6,-20.0,31,102500,504,1415,212,347,854,42,36800,79500,8300,1070,300,7.2,0,0,32.2,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1976,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,-5.0,-20.0,30,102600,370,1415,214,233,762,34,24800,66600,7300,850,320,8.2,0,0,32.2,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1976,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,-5.6,-20.6,30,102700,186,1415,211,94,541,24,10100,39000,4900,510,300,7.7,0,0,32.2,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1976,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,-6.7,-21.7,30,102800,16,554,207,16,89,6,0,0,0,0,340,5.7,0,0,32.2,77777,9,999999999,40,0.0380,0,88,999.000,999.0,99.0 +1976,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,-7.2,-21.1,32,102800,0,0,206,0,0,0,0,0,0,0,320,5.7,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-7.8,-21.1,34,103000,0,0,204,0,0,0,0,0,0,0,310,6.2,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-8.3,-22.8,30,103000,0,0,201,0,0,0,0,0,0,0,300,6.7,0,0,32.2,77777,9,999999999,30,0.0890,0,88,999.000,999.0,99.0 +1976,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,-8.9,-23.3,30,103000,0,0,199,0,0,0,0,0,0,0,300,6.2,0,0,32.2,77777,9,999999999,30,0.0890,0,88,999.000,999.0,99.0 +1976,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,-8.9,-23.3,30,103000,0,0,199,0,0,0,0,0,0,0,300,6.7,0,0,32.2,77777,9,999999999,30,0.0890,0,88,999.000,999.0,99.0 +1976,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,-9.4,-22.2,35,103100,0,0,198,0,0,0,0,0,0,0,280,6.2,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-10.0,-22.2,36,103100,0,0,196,0,0,0,0,0,0,0,290,4.6,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-10.6,-22.2,38,103100,0,0,195,0,0,0,0,0,0,0,300,5.7,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,1,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-21.7,40,103100,0,0,195,0,0,0,0,0,0,0,270,2.6,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-10.6,-21.7,40,103100,0,0,195,0,0,0,0,0,0,0,310,2.6,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,1,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-20.6,46,103100,0,0,194,0,0,0,0,0,0,0,250,3.1,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-10.6,-20.6,44,103200,0,0,196,0,0,0,0,0,0,0,300,2.6,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-11.1,-20.6,46,103200,0,0,194,0,0,0,0,0,0,0,230,3.6,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-11.1,-20.0,48,103200,0,0,195,0,0,0,0,0,0,0,250,3.1,0,0,32.2,77777,9,999999999,40,0.0890,0,88,999.000,999.0,99.0 +1976,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,-10.6,-19.4,48,103300,58,1049,197,26,107,17,2500,4000,2200,300,250,2.6,0,0,32.2,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1976,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,-8.9,-17.8,49,103300,256,1415,203,131,481,43,13500,35600,7000,780,250,3.1,0,0,24.1,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1976,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,-6.7,-17.2,43,103300,425,1415,211,261,671,58,26700,59800,8700,1120,290,2.6,0,0,20.9,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1976,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,-5.0,-15.6,44,103300,540,1415,222,341,696,74,36000,66000,10700,1490,260,3.1,1,1,20.9,77777,9,999999999,50,0.0930,0,88,999.000,999.0,99.0 +1976,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,-3.9,-14.4,44,103200,594,1415,232,357,549,126,38100,53400,15500,2470,290,3.6,4,3,20.9,77777,9,999999999,50,0.0930,0,88,999.000,999.0,99.0 +1976,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,-2.8,-13.2,45,103100,583,1415,234,361,585,120,37200,55200,14300,2290,230,5.2,2,2,20.9,77777,9,999999999,50,0.0930,0,88,999.000,999.0,99.0 +1976,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.7,-12.2,45,103000,508,1415,232,316,683,71,33400,63800,10400,1410,240,6.2,2,0,20.9,77777,9,999999999,60,0.0930,0,88,999.000,999.0,99.0 +1976,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,-12.8,43,103000,373,1415,241,176,332,89,18400,28000,11000,1650,230,6.2,3,3,24.1,77777,9,999999999,50,0.0930,0,88,999.000,999.0,99.0 +1976,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,-1.1,-12.8,41,103000,189,1415,243,66,107,52,7000,6300,6100,980,240,5.2,7,3,24.1,77777,9,999999999,50,0.0930,0,88,999.000,999.0,99.0 +1976,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,-1.1,-12.8,41,103000,17,578,247,7,2,7,0,0,0,0,230,5.7,10,5,24.1,77777,9,999999999,50,0.0930,0,88,999.000,999.0,99.0 +1976,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.1,-12.2,43,103000,0,0,247,0,0,0,0,0,0,0,230,4.6,10,5,24.1,77777,9,999999999,60,0.0890,0,88,999.000,999.0,99.0 +1976,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.7,-11.1,49,102900,0,0,246,0,0,0,0,0,0,0,230,4.6,10,5,24.1,77777,9,999999999,60,0.0890,0,88,999.000,999.0,99.0 +1976,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.7,-11.1,49,102900,0,0,243,0,0,0,0,0,0,0,230,5.7,10,3,24.1,77777,9,999999999,60,0.0890,0,88,999.000,999.0,99.0 +1976,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,-2.2,-10.0,56,102900,0,0,242,0,0,0,0,0,0,0,210,5.2,10,3,22.5,77777,9,999999999,60,0.0890,0,88,999.000,999.0,99.0 +1976,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,-2.2,-9.4,58,102800,0,0,237,0,0,0,0,0,0,0,210,6.2,7,1,22.5,77777,9,999999999,60,0.0890,0,88,999.000,999.0,99.0 +1976,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,-2.2,-9.4,58,102800,0,0,232,0,0,0,0,0,0,0,220,6.7,3,0,20.9,77777,9,999999999,60,0.0890,0,88,999.000,999.0,99.0 +1976,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,-2.2,-9.4,58,102700,0,0,232,0,0,0,0,0,0,0,230,7.2,5,0,16.1,77777,9,999999999,60,0.0890,0,88,999.000,999.0,99.0 +1976,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,-1.7,-8.9,58,102600,0,0,234,0,0,0,0,0,0,0,230,7.2,5,0,16.1,77777,9,999999999,69,0.0890,0,88,999.000,999.0,99.0 +1976,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,-1.7,-7.8,63,102600,0,0,235,0,0,0,0,0,0,0,220,6.7,4,0,19.3,77777,9,999999999,69,0.0890,0,88,999.000,999.0,99.0 +1976,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,-1.7,-7.2,66,102600,0,0,236,0,0,0,0,0,0,0,230,5.7,4,0,19.3,77777,9,999999999,69,0.0890,0,88,999.000,999.0,99.0 +1976,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,-1.1,-6.7,66,102500,0,0,258,0,0,0,0,0,0,0,200,5.2,9,7,19.3,7620,9,999999999,69,0.0890,0,88,999.000,999.0,99.0 +1976,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,-5.6,69,102400,0,0,278,0,0,0,0,0,0,0,230,6.2,10,10,19.3,4880,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,-0.6,-5.6,69,102300,0,0,256,0,0,0,0,0,0,0,220,6.2,7,5,24.1,4880,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,-0.6,-6.1,66,102300,0,0,249,0,0,0,0,0,0,0,210,5.2,6,2,24.1,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1976,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,0.0,-5.6,67,102200,59,1049,251,21,20,19,2200,1100,2100,460,230,7.7,6,2,19.3,77777,9,999999999,80,0.1400,0,88,999.000,999.0,99.0 +1976,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,-5.0,67,102200,257,1415,259,101,126,78,10900,9400,9200,1670,220,7.2,10,4,16.1,77777,9,999999999,80,0.1400,0,88,999.000,999.0,99.0 +1976,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.7,-3.9,67,102200,426,1415,266,224,299,133,23400,27000,15200,2740,210,6.2,10,5,16.1,77777,9,999999999,89,0.1400,0,88,999.000,999.0,99.0 +1976,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.3,-2.2,67,102000,542,1415,284,226,177,157,24500,17300,17900,3650,220,6.2,10,8,16.1,7620,9,999999999,100,0.1400,0,88,999.000,999.0,99.0 +1976,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,4.4,-1.7,65,101900,597,1415,289,261,162,193,28300,16100,21500,4580,230,7.7,10,8,16.1,7620,9,999999999,100,0.1400,0,88,999.000,999.0,99.0 +1976,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.0,-1.7,62,101800,586,1415,287,188,83,154,20700,8000,17400,4450,230,5.7,10,7,16.1,670,9,999999999,100,0.1400,0,88,999.000,999.0,99.0 +1976,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.6,-0.6,65,101700,511,1415,291,241,199,169,26000,19100,19100,3890,230,6.7,10,7,16.1,700,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1976,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.6,0.0,68,101600,377,1415,311,76,12,73,8700,600,8600,2810,220,5.2,10,10,16.1,610,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1976,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,5.6,1.1,73,101500,193,1415,312,35,0,35,4000,0,4000,1260,210,4.6,10,10,16.1,610,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1976,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.6,1.1,73,101500,19,601,312,3,0,3,0,0,0,0,210,5.2,10,10,12.9,610,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1976,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,2.2,82,101400,0,0,311,0,0,0,0,0,0,0,220,5.2,10,10,9.7,610,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1976,1,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,101300,0,0,311,0,0,0,0,0,0,0,180,4.1,10,10,8.0,730,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1976,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.0,2.2,82,101200,0,0,311,0,0,0,0,0,0,0,220,3.6,10,10,8.0,730,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1976,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,5.0,2.8,86,101100,0,0,311,0,0,0,0,0,0,0,190,3.1,10,10,4.8,210,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1976,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,4.4,2.8,89,101000,0,0,309,0,0,0,0,0,0,0,200,2.1,10,10,4.8,150,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1976,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,4.4,2.8,89,100900,0,0,309,0,0,0,0,0,0,0,180,2.1,10,10,4.8,150,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1976,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,4.4,2.8,89,100800,0,0,309,0,0,0,0,0,0,0,220,2.1,10,10,4.8,120,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1976,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,3.9,2.8,93,100700,0,0,306,0,0,0,0,0,0,0,20,2.1,10,10,3.2,120,9,999999999,129,0.0900,0,88,999.000,999.0,99.0 +1976,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,4.4,2.8,89,100500,0,0,309,0,0,0,0,0,0,0,340,2.6,10,10,4.8,520,9,999999999,129,0.0900,0,88,999.000,999.0,99.0 +1976,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,4.4,2.8,89,100500,0,0,309,0,0,0,0,0,0,0,350,4.1,10,10,3.2,150,9,999999999,129,0.0900,0,88,999.000,999.0,99.0 +1976,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,2.8,1.1,89,100400,0,0,300,0,0,0,0,0,0,0,360,4.6,10,10,4.8,520,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1976,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,2.2,1.1,92,100300,0,0,297,0,0,0,0,0,0,0,360,4.1,10,10,4.8,150,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1976,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,2.2,0.6,89,100200,0,0,297,0,0,0,0,0,0,0,360,5.2,10,10,11.3,150,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1976,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,2.2,0.6,89,100300,0,0,297,0,0,0,0,0,0,0,350,5.2,10,10,9.7,180,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1976,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.2,0.6,89,100300,59,1073,297,13,1,13,1500,0,1500,470,330,4.1,10,10,11.3,240,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1976,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,0.6,89,100400,258,1415,297,38,2,38,4500,0,4500,1470,350,5.2,10,10,9.7,240,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1976,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,2.2,0.6,89,100500,428,1415,297,73,1,72,8400,0,8400,2920,330,5.2,10,10,3.2,180,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1976,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,1.7,0.6,92,100400,544,1415,294,172,5,170,19200,400,19000,6070,350,5.2,10,10,3.2,150,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1976,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,-0.6,82,100400,600,1415,295,177,5,175,19900,400,19800,6580,350,6.2,10,10,2.4,150,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1976,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.7,0.0,89,100400,589,1415,294,196,2,195,21800,200,21700,6940,340,6.2,10,10,4.8,180,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1976,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,1.1,-1.1,85,100500,515,1415,290,172,1,172,19100,100,19000,5880,320,6.7,10,10,3.2,210,9,999999999,100,0.0440,0,88,999.000,999.0,99.0 +1976,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,-3.9,75,100600,381,1415,283,120,1,119,13100,100,13100,3920,330,6.7,10,10,6.4,1160,9,999999999,89,0.0440,0,88,999.000,999.0,99.0 +1976,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,-1.1,-5.0,75,100600,197,1415,277,58,1,58,6400,0,6400,1800,320,6.7,10,10,16.1,670,9,999999999,80,0.0440,0,88,999.000,999.0,99.0 +1976,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,-1.7,-7.2,66,100700,20,625,272,10,0,10,0,0,0,0,310,7.7,10,10,19.3,730,9,999999999,69,0.0440,0,88,999.000,999.0,99.0 +1976,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,-2.8,-10.0,58,100900,0,0,265,0,0,0,0,0,0,0,310,7.7,10,10,19.3,790,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-4.4,-12.8,53,101000,0,0,256,0,0,0,0,0,0,0,320,8.2,10,10,19.3,820,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-5.0,-14.4,48,101100,0,0,245,0,0,0,0,0,0,0,320,8.2,9,9,19.3,670,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-6.1,-14.4,52,101100,0,0,248,0,0,0,0,0,0,0,310,8.8,10,10,19.3,610,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-6.7,-15.0,52,101200,0,0,245,0,0,0,0,0,0,0,300,7.2,10,10,16.1,670,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.2,-16.1,49,101200,0,0,242,0,0,0,0,0,0,0,300,7.7,10,10,19.3,910,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.8,-17.2,47,101200,0,0,239,0,0,0,0,0,0,0,340,7.2,10,10,24.1,1070,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.3,-20.6,37,101200,0,0,234,0,0,0,0,0,0,0,330,6.7,10,10,24.1,1070,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.9,-21.7,35,101400,0,0,231,0,0,0,0,0,0,0,310,6.2,10,10,24.1,1070,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,1,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-23.3,33,101500,0,0,209,0,0,0,0,0,0,0,320,7.2,6,6,32.2,1100,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-11.1,-25.0,31,101500,0,0,197,0,0,0,0,0,0,0,320,7.2,2,2,32.2,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-11.1,-25.6,30,101500,0,0,190,0,0,0,0,0,0,0,320,6.2,0,0,32.2,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-11.7,-25.0,32,101500,0,0,189,0,0,0,0,0,0,0,330,5.2,0,0,32.2,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-11.7,-23.3,38,101600,0,0,190,0,0,0,0,0,0,0,310,5.7,0,0,32.2,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-11.7,-23.9,36,101700,60,1073,190,21,27,19,2300,1100,2200,390,330,4.6,0,0,32.2,77777,9,999999999,30,0.1880,0,88,999.000,999.0,99.0 +1976,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,-10.0,-22.2,36,101800,260,1415,196,114,296,59,11800,21400,7900,1070,330,4.6,0,0,24.1,77777,9,999999999,30,0.1880,0,88,999.000,999.0,99.0 +1976,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,-8.9,-20.6,39,101800,430,1415,201,236,495,85,24200,43500,10900,1550,310,5.2,0,0,24.1,77777,9,999999999,40,0.1880,0,88,999.000,999.0,99.0 +1976,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,-7.2,-20.0,36,101800,547,1415,207,334,595,103,34500,55700,12800,1970,300,5.2,0,0,24.1,77777,9,999999999,40,0.1880,0,88,999.000,999.0,99.0 +1976,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,-5.6,-18.9,35,101700,602,1415,213,383,637,111,39700,60900,13700,2190,290,4.6,0,0,24.1,77777,9,999999999,40,0.1880,0,88,999.000,999.0,99.0 +1976,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,-4.4,-16.1,40,101600,593,1415,219,370,621,110,38400,59200,13500,2160,290,4.6,0,0,24.1,77777,9,999999999,50,0.1880,0,88,999.000,999.0,99.0 +1976,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.3,-15.0,40,101700,518,1415,224,306,568,98,31700,52600,12300,1850,270,4.1,0,0,24.1,77777,9,999999999,50,0.1880,0,88,999.000,999.0,99.0 +1976,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,-3.9,-15.0,42,101700,384,1415,222,198,443,78,21100,37900,10700,1420,280,6.7,0,0,24.1,77777,9,999999999,50,0.1880,0,88,999.000,999.0,99.0 +1976,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,-4.4,-13.9,48,101800,201,1415,221,76,199,48,7900,12600,6100,870,280,6.7,0,0,24.1,77777,9,999999999,50,0.1880,0,88,999.000,999.0,99.0 +1976,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,-4.4,-15.0,44,101800,22,648,220,9,5,9,0,0,0,0,270,7.2,0,0,24.1,77777,9,999999999,50,0.1880,0,88,999.000,999.0,99.0 +1976,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,-5.0,-15.0,46,101900,0,0,218,0,0,0,0,0,0,0,280,6.7,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-5.0,-15.6,44,102000,0,0,218,0,0,0,0,0,0,0,260,5.7,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-5.6,-16.1,44,102100,0,0,215,0,0,0,0,0,0,0,270,6.2,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,1,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-16.7,43,102100,0,0,213,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-6.7,-17.2,43,102200,0,0,211,0,0,0,0,0,0,0,290,7.2,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-6.7,-16.7,45,102200,0,0,211,0,0,0,0,0,0,0,270,8.2,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.2,-17.2,45,102200,0,0,209,0,0,0,0,0,0,0,270,6.7,0,0,32.2,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.2,-17.8,43,102200,0,0,209,0,0,0,0,0,0,0,290,6.7,0,0,32.2,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.8,-17.8,45,102200,0,0,207,0,0,0,0,0,0,0,290,6.7,0,0,32.2,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.8,-18.3,43,102300,0,0,206,0,0,0,0,0,0,0,280,7.2,0,0,32.2,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.8,-18.3,43,102400,0,0,206,0,0,0,0,0,0,0,290,7.7,0,0,32.2,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.8,-18.3,43,102400,0,0,206,0,0,0,0,0,0,0,290,6.7,0,0,32.2,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.3,-18.3,45,102500,0,0,205,0,0,0,0,0,0,0,290,8.2,0,0,32.2,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.9,-17.8,49,102500,0,0,203,0,0,0,0,0,0,0,280,7.2,0,0,32.2,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.9,-18.3,47,102600,61,1073,203,32,184,16,2800,8300,2300,290,280,6.7,0,0,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1976,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,-8.3,-17.8,47,102700,261,1415,205,145,589,35,14800,45700,6300,690,290,7.2,0,0,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1976,1,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-17.2,45,102700,432,1415,209,279,760,46,29400,68600,8300,1020,290,6.7,0,0,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1976,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,-5.6,-15.6,46,102700,549,1415,216,377,829,54,39700,78200,9200,1220,280,6.2,0,0,24.1,77777,9,999999999,50,0.0580,0,88,999.000,999.0,99.0 +1976,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,-5.0,-17.2,38,102600,605,1415,216,429,864,58,45100,82700,9600,1320,280,7.7,0,0,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1976,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,-4.4,-17.2,37,102600,596,1415,225,374,705,77,38900,67400,10400,1550,280,8.8,2,2,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1976,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,-4.4,-17.8,35,102600,522,1415,227,362,752,85,37900,70200,11900,1650,290,9.3,3,3,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1976,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,-16.7,38,102700,389,1415,226,220,536,74,22800,45800,10100,1350,300,8.8,2,2,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1976,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,-4.4,-17.8,35,102700,205,1415,222,90,365,38,9300,24400,5800,680,310,7.7,1,1,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1976,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,-5.0,-17.8,36,102700,24,672,216,16,76,9,0,0,0,0,310,6.7,0,0,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1976,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,-5.6,-17.8,38,102800,0,0,214,0,0,0,0,0,0,0,290,6.7,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-5.6,-18.3,36,102900,0,0,213,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.2,-18.9,39,103000,0,0,208,0,0,0,0,0,0,0,360,4.6,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,1,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-20.6,39,103000,0,0,201,0,0,0,0,0,0,0,360,5.2,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-10.0,-21.1,40,103100,0,0,197,0,0,0,0,0,0,0,10,4.1,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,1,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-22.2,40,103100,0,0,193,0,0,0,0,0,0,0,360,5.7,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-11.1,-22.8,38,103000,0,0,193,0,0,0,0,0,0,0,350,5.2,0,0,24.1,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-11.7,-23.3,38,103100,0,0,190,0,0,0,0,0,0,0,330,4.6,0,0,24.1,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-12.2,-23.3,39,103100,0,0,189,0,0,0,0,0,0,0,350,5.7,1,0,24.1,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-12.2,-22.8,41,103100,0,0,189,0,0,0,0,0,0,0,330,3.6,0,0,24.1,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-12.8,-22.8,43,103100,0,0,188,0,0,0,0,0,0,0,350,4.1,0,0,24.1,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-12.8,-23.3,41,103100,0,0,187,0,0,0,0,0,0,0,340,3.1,0,0,24.1,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-13.3,-22.2,48,103100,0,0,187,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1976,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,-13.3,-23.3,43,103100,0,0,186,0,0,0,0,0,0,0,350,3.1,3,0,24.1,77777,9,999999999,30,0.0900,0,88,999.000,999.0,99.0 +1976,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,-13.3,-22.8,45,103100,61,1073,186,29,108,20,2800,4100,2500,350,350,3.1,6,0,20.9,77777,9,999999999,30,0.0770,0,88,999.000,999.0,99.0 +1976,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,-12.2,-22.8,41,103100,263,1414,196,125,311,66,12800,22500,8600,1210,350,3.6,9,2,20.9,77777,9,999999999,30,0.0770,0,88,999.000,999.0,99.0 +1976,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,-10.6,-22.2,38,103100,434,1414,205,224,353,116,23200,31400,13500,2210,10,1.5,10,4,20.9,77777,9,999999999,40,0.0770,0,88,999.000,999.0,99.0 +1976,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,-9.4,-21.1,38,102900,552,1414,213,274,270,168,28900,26500,18600,3580,30,1.5,10,6,24.1,6100,9,999999999,40,0.0770,0,88,999.000,999.0,99.0 +1976,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,-8.9,-18.9,45,102800,608,1414,222,231,57,206,25300,5600,22900,5680,30,1.0,10,8,24.1,5490,9,999999999,40,0.0770,0,88,999.000,999.0,99.0 +1976,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,-7.8,-16.7,49,102700,600,1414,240,127,4,125,14700,300,14500,5190,70,1.5,10,10,14.5,4880,9,999999999,40,0.0770,0,88,999.000,999.0,99.0 +1976,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,-7.2,-16.1,49,102600,526,1414,242,158,31,146,17300,3000,16200,4050,10,1.5,10,10,1.6,460,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1976,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,-7.2,-10.0,81,102500,393,1414,248,89,2,88,10000,100,10000,3280,120,4.1,10,10,2.4,430,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,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,-6.7,-9.4,81,102400,209,1414,251,39,2,39,4500,0,4500,1410,130,4.6,10,10,1.6,210,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,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,-5.6,-9.4,74,102400,26,695,255,7,0,7,0,0,0,0,130,4.1,10,10,6.4,400,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1976,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.0,-8.9,74,102200,0,0,258,0,0,0,0,0,0,0,110,5.7,10,10,8.0,520,9,999999999,69,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.8,78,102100,0,0,261,0,0,0,0,0,0,0,110,6.7,10,10,3.2,180,9,999999999,69,0.0900,0,88,999.000,999.0,99.0 +1976,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,-3.9,-6.1,85,102000,0,0,265,0,0,0,0,0,0,0,100,5.2,10,10,1.6,120,9,999999999,80,0.0900,0,88,999.000,999.0,99.0 +1976,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,-5.0,-6.7,88,101800,0,0,260,0,0,0,0,0,0,0,60,4.6,10,10,0.8,90,9,999999999,69,0.0900,0,88,999.000,999.0,99.0 +1976,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.7,-8.9,84,101700,0,0,251,0,0,0,0,0,0,0,360,3.6,10,10,0.8,120,9,999999999,69,0.0900,0,88,999.000,999.0,99.0 +1976,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,-6.7,-8.3,88,101600,0,0,252,0,0,0,0,0,0,0,330,4.1,10,10,0.8,150,9,999999999,69,0.0900,0,88,999.000,999.0,99.0 +1976,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,-6.7,-8.9,84,101400,0,0,251,0,0,0,0,0,0,0,340,4.1,10,10,0.6,120,9,999999999,69,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.2,-10.0,81,101300,0,0,248,0,0,0,0,0,0,0,350,6.7,10,10,0.5,120,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.9,-11.7,81,101300,0,0,240,0,0,0,0,0,0,0,340,7.2,10,10,0.6,90,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.9,-11.7,81,101200,0,0,240,0,0,0,0,0,0,0,340,7.2,10,10,0.8,120,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.9,-11.7,81,101200,0,0,240,0,0,0,0,0,0,0,350,7.7,10,10,0.6,120,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.9,-12.2,77,101100,0,0,240,0,0,0,0,0,0,0,350,8.2,10,10,3.2,310,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-9.4,-12.2,80,101100,0,0,238,0,0,0,0,0,0,0,360,9.8,10,10,1.6,150,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-9.4,-12.8,77,101200,0,0,238,0,0,0,0,0,0,0,340,9.3,10,10,3.2,210,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-9.4,-12.8,77,101200,62,1096,238,17,0,17,1900,0,1900,590,350,9.8,10,10,1.6,210,9,999999999,50,0.1720,0,88,999.000,999.0,99.0 +1976,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,-9.4,-13.3,74,101300,264,1414,237,75,0,74,8200,0,8200,2410,350,10.3,10,10,0.8,90,9,999999999,50,0.1720,0,88,999.000,999.0,99.0 +1976,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,-9.4,-12.8,77,101400,436,1414,238,143,2,143,15800,100,15800,4750,350,8.8,10,10,1.3,150,9,999999999,50,0.1720,0,88,999.000,999.0,99.0 +1976,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,-8.9,-12.2,77,101500,555,1414,240,193,1,192,21300,100,21300,6590,350,10.3,10,10,1.6,180,9,999999999,60,0.1720,0,88,999.000,999.0,99.0 +1976,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,74,101500,612,1414,244,226,1,226,25000,100,25000,7720,340,7.7,10,10,3.2,460,9,999999999,60,0.1720,0,88,999.000,999.0,99.0 +1976,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,-11.7,74,101600,603,1414,244,219,0,218,24100,0,24100,7500,340,6.7,10,10,4.8,490,9,999999999,60,0.1720,0,88,999.000,999.0,99.0 +1976,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,-6.7,-10.6,74,101700,530,1414,250,218,1,218,23800,100,23700,6730,340,6.7,10,10,9.7,520,9,999999999,60,0.1720,0,88,999.000,999.0,99.0 +1976,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,-6.1,-10.0,74,101800,397,1414,245,124,43,112,13600,3900,12500,2900,340,6.7,10,9,4.0,490,9,999999999,60,0.1720,0,88,999.000,999.0,99.0 +1976,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,-6.7,-10.6,74,102000,214,1414,243,57,11,55,6300,200,6300,1810,350,7.2,9,9,3.2,610,9,999999999,60,0.1720,0,88,999.000,999.0,99.0 +1976,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,-7.2,-10.6,77,102100,28,719,224,13,4,13,0,0,0,0,330,6.2,9,3,8.0,77777,9,999999999,60,0.1720,0,88,999.000,999.0,99.0 +1976,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,-7.2,-11.1,74,102200,0,0,235,0,0,0,0,0,0,0,340,6.2,10,8,16.1,1010,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.2,-11.7,71,102300,0,0,235,0,0,0,0,0,0,0,340,6.2,9,8,16.1,820,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.2,-11.7,71,102400,0,0,247,0,0,0,0,0,0,0,360,5.2,10,10,16.1,1310,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.8,-11.7,74,102400,0,0,233,0,0,0,0,0,0,0,360,3.6,8,8,16.1,1310,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.3,-12.2,74,102500,0,0,227,0,0,0,0,0,0,0,330,3.6,9,7,16.1,460,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-7.8,-11.7,74,102600,0,0,244,0,0,0,0,0,0,0,320,3.1,10,10,16.1,460,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.3,-11.7,77,102500,0,0,219,0,0,0,0,0,0,0,350,3.6,4,3,16.1,77777,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,1,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-12.2,80,102600,0,0,213,0,0,0,0,0,0,0,330,2.1,6,2,19.3,77777,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-8.3,-11.7,77,102700,0,0,236,0,0,0,0,0,0,0,320,2.1,10,9,16.1,730,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1976,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,-10.6,-12.8,84,102700,0,0,206,0,0,0,0,0,0,0,20,2.1,3,1,16.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-11.7,-14.4,80,102700,0,0,201,0,0,0,0,0,0,0,10,1.5,7,1,16.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-10.0,-13.3,77,102700,0,0,204,0,0,0,0,0,0,0,10,1.0,3,0,16.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-9.4,-12.8,77,102700,0,0,210,0,0,0,0,0,0,0,360,2.6,4,1,12.9,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-10.6,-12.8,84,102800,0,0,206,0,0,0,0,0,0,0,290,2.1,3,1,9.7,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1976,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,-10.0,-13.3,77,102800,64,1096,210,29,33,26,3000,1400,3000,540,280,2.1,10,2,4.8,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1976,1,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-11.1,81,102800,266,1414,218,144,131,119,15100,9800,13300,2560,310,1.0,10,2,8.0,77777,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1976,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.2,-11.1,74,102800,438,1414,221,289,418,159,30000,38000,18100,3420,0,0.0,10,2,6.4,77777,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1976,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,-4.4,-11.7,58,102800,558,1414,230,415,570,189,41900,54200,20500,3870,220,2.1,10,2,6.4,77777,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1976,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,-3.9,-12.8,50,102600,615,1414,228,442,648,159,46100,63200,18500,3220,170,2.6,8,1,16.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1976,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,-2.8,-12.8,47,102500,607,1414,232,438,644,162,45700,62700,18700,3280,120,2.1,8,1,16.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1976,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,-0.6,-5.0,72,102300,534,1414,246,371,569,156,38200,53700,17800,3100,170,5.2,10,1,16.1,77777,9,999999999,80,0.0960,0,88,999.000,999.0,99.0 +1976,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,-0.6,-4.4,75,102300,401,1414,259,217,202,159,23000,17900,17900,3540,170,3.1,10,6,16.1,790,9,999999999,80,0.0960,0,88,999.000,999.0,99.0 +1976,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,0.0,-3.9,75,102200,218,1414,283,62,24,58,6800,1800,6500,1400,140,3.6,10,10,19.3,790,9,999999999,89,0.0960,0,88,999.000,999.0,99.0 +1976,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,1.1,-2.2,79,102100,30,742,289,8,0,8,900,0,900,300,150,3.6,10,10,16.1,940,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1976,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,1.1,-2.2,79,102000,0,0,289,0,0,0,0,0,0,0,130,3.6,10,10,16.1,820,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1976,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.1,-1.7,82,101900,0,0,290,0,0,0,0,0,0,0,140,3.6,10,10,16.1,670,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1976,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,2.2,-1.1,79,101700,0,0,295,0,0,0,0,0,0,0,140,5.7,10,10,16.1,1400,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1976,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,2.2,-0.6,82,101500,0,0,295,0,0,0,0,0,0,0,120,2.6,10,10,16.1,1070,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1976,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,2.8,0.6,85,101200,0,0,299,0,0,0,0,0,0,0,140,6.2,10,10,6.4,790,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1976,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,3.9,1.1,82,100700,0,0,305,0,0,0,0,0,0,0,140,8.8,10,10,6.4,310,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1976,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,5.0,2.8,86,100300,0,0,311,0,0,0,0,0,0,0,180,6.2,10,10,6.4,310,9,999999999,129,0.0900,0,88,999.000,999.0,99.0 +1976,1,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,100100,0,0,324,0,0,0,0,0,0,0,190,8.8,10,10,6.4,370,9,999999999,139,0.0910,0,88,999.000,999.0,99.0 +1976,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,8.3,6.1,86,99900,0,0,330,0,0,0,0,0,0,0,190,10.3,10,10,6.4,460,9,999999999,150,0.0910,0,88,999.000,999.0,99.0 +1976,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,9.4,7.2,86,99500,0,0,336,0,0,0,0,0,0,0,190,15.4,10,10,9.7,460,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1976,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,10.0,7.2,83,99400,0,0,339,0,0,0,0,0,0,0,220,11.8,10,10,9.7,490,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1976,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,10.0,7.2,83,99300,0,0,339,0,0,0,0,0,0,0,220,9.3,10,10,16.1,2440,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1976,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,10.0,6.1,77,99200,0,0,322,0,0,0,0,0,0,0,230,11.8,9,8,17.7,1010,9,999999999,150,0.0910,0,88,999.000,999.0,99.0 +1976,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,9.4,3.3,66,99400,0,0,300,0,0,0,0,0,0,0,240,14.4,3,3,17.7,77777,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1976,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.1,-2.2,56,99700,65,1096,269,32,175,17,2900,8000,2400,310,280,14.4,0,0,24.1,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1976,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.6,-3.9,51,99900,268,1414,266,144,548,39,14600,42600,6400,740,270,15.9,0,0,24.1,77777,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1976,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,5.6,-5.0,47,100100,441,1414,265,285,741,53,29700,67000,8700,1080,280,13.4,0,0,24.1,77777,9,999999999,80,0.0620,0,88,999.000,999.0,99.0 +1976,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,6.1,-5.6,43,100200,561,1414,266,389,816,64,40800,77600,9900,1350,300,13.9,0,0,24.1,77777,9,999999999,80,0.0620,0,88,999.000,999.0,99.0 +1976,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,5.6,-6.1,43,100300,619,1414,272,352,542,114,36500,52100,13600,2270,310,14.4,2,2,24.1,77777,9,999999999,80,0.0620,0,88,999.000,999.0,99.0 +1976,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,5.6,-6.7,41,100400,611,1414,272,416,742,95,43800,71700,12600,1930,310,13.4,2,2,24.1,77777,9,999999999,69,0.0620,0,88,999.000,999.0,99.0 +1976,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,5.0,-7.2,41,100500,538,1414,269,318,484,134,33300,45900,15800,2620,300,12.4,2,2,24.1,77777,9,999999999,69,0.0620,0,88,999.000,999.0,99.0 +1976,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,8.3,-7.2,33,100600,406,1414,278,246,651,60,25900,57100,9400,1150,290,10.3,1,1,24.1,77777,9,999999999,69,0.0620,0,88,999.000,999.0,99.0 +1976,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,4.4,-6.7,45,100800,223,1414,263,107,441,38,11100,30700,6200,690,280,7.7,1,1,24.1,77777,9,999999999,69,0.0620,0,88,999.000,999.0,99.0 +1976,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,3.9,-7.8,43,100900,32,790,255,20,87,12,1700,2800,1600,210,280,7.7,0,0,40.2,77777,9,999999999,69,0.0620,0,88,999.000,999.0,99.0 +1976,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.8,-6.7,50,101000,0,0,252,0,0,0,0,0,0,0,280,9.3,0,0,40.2,77777,9,999999999,69,0.0910,0,88,999.000,999.0,99.0 +1976,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,-6.1,55,101100,0,0,256,0,0,0,0,0,0,0,270,6.7,1,1,40.2,77777,9,999999999,80,0.0910,0,88,999.000,999.0,99.0 +1976,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,2.2,-8.9,44,101200,0,0,248,0,0,0,0,0,0,0,260,8.8,0,0,40.2,77777,9,999999999,69,0.0910,0,88,999.000,999.0,99.0 +1976,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,1.7,-9.4,44,101200,0,0,246,0,0,0,0,0,0,0,270,7.7,0,0,40.2,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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.9,48,101300,0,0,244,0,0,0,0,0,0,0,270,8.2,0,0,40.2,77777,9,999999999,69,0.0910,0,88,999.000,999.0,99.0 +1976,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,1.1,-8.9,48,101300,0,0,244,0,0,0,0,0,0,0,280,8.2,0,0,40.2,77777,9,999999999,69,0.0910,0,88,999.000,999.0,99.0 +1976,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,101300,0,0,239,0,0,0,0,0,0,0,290,9.3,0,0,40.2,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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,-0.6,-10.6,47,101300,0,0,237,0,0,0,0,0,0,0,270,5.7,0,0,32.2,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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,-0.6,-10.6,47,101300,0,0,237,0,0,0,0,0,0,0,270,6.2,0,0,32.2,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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.1,-10.6,49,101300,0,0,235,0,0,0,0,0,0,0,250,8.8,0,0,32.2,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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,-1.1,-11.1,47,101300,0,0,235,0,0,0,0,0,0,0,270,8.2,0,0,32.2,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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.1,-11.1,47,101400,0,0,235,0,0,0,0,0,0,0,270,7.2,0,0,32.2,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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.7,-10.0,53,101500,0,0,257,0,0,0,0,0,0,0,260,9.3,8,8,32.2,1310,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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,-1.7,-9.4,56,101500,0,0,246,0,0,0,0,0,0,0,260,6.2,4,4,32.2,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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,-1.7,-8.9,58,101600,66,1119,245,31,113,22,3000,4400,2800,390,290,6.7,3,3,24.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1976,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,-1.7,-11.1,49,101700,271,1414,237,141,564,32,14600,44500,6000,660,290,7.2,1,1,24.1,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1976,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.7,-12.8,43,101800,444,1414,241,267,604,77,27700,54000,10600,1450,270,7.7,3,3,24.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1976,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,-1.1,-12.8,41,101800,564,1414,249,230,226,140,24800,22400,15800,2870,290,10.3,6,6,24.1,1400,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1976,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,-13.3,41,101800,622,1414,246,369,477,158,38600,46700,17900,3200,280,9.3,6,6,24.1,1310,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1976,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,-1.7,-13.3,41,101800,615,1414,249,250,102,205,27400,10000,23000,5700,290,8.8,7,7,24.1,1310,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1976,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,-1.1,-12.8,41,101800,543,1414,252,265,224,179,28700,21800,20300,4160,300,8.2,7,7,24.1,1310,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1976,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,-1.1,-13.9,38,101900,410,1414,242,195,350,94,20500,30600,11600,1750,300,9.8,3,3,24.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1976,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,-1.7,-13.9,39,102000,227,1414,238,94,281,49,9900,19000,6800,880,280,7.7,2,2,32.2,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1976,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,-2.2,-14.4,39,102100,35,813,228,21,111,11,1700,4600,1500,210,290,8.2,0,0,32.2,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1976,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,-2.2,-13.9,41,102200,0,0,228,0,0,0,0,0,0,0,290,7.7,0,0,32.2,77777,9,999999999,50,0.0910,0,88,999.000,999.0,99.0 +1976,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.3,-15.0,40,102300,0,0,224,0,0,0,0,0,0,0,290,8.2,0,0,32.2,77777,9,999999999,50,0.0910,0,88,999.000,999.0,99.0 +1976,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,-14.4,44,102400,0,0,222,0,0,0,0,0,0,0,290,7.7,0,0,32.2,77777,9,999999999,50,0.0910,0,88,999.000,999.0,99.0 +1976,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,-3.9,-15.0,42,102300,0,0,229,0,0,0,0,0,0,0,290,6.2,3,2,32.2,77777,9,999999999,50,0.0910,0,88,999.000,999.0,99.0 +1976,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,-3.9,-15.0,42,102400,0,0,233,0,0,0,0,0,0,0,290,6.7,10,4,32.2,77777,9,999999999,50,0.0910,0,88,999.000,999.0,99.0 +1976,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,-4.4,-14.4,46,102400,0,0,232,0,0,0,0,0,0,0,280,7.2,10,4,32.2,77777,9,999999999,50,0.0910,0,88,999.000,999.0,99.0 +1976,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,-4.4,-14.4,46,102500,0,0,230,0,0,0,0,0,0,0,280,6.2,9,3,32.2,77777,9,999999999,50,0.0910,0,88,999.000,999.0,99.0 +1976,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,-3.9,-14.4,44,102500,0,0,235,0,0,0,0,0,0,0,290,4.6,10,5,32.2,77777,9,999999999,50,0.0910,0,88,999.000,999.0,99.0 +1976,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,-4.4,-13.9,48,102500,0,0,234,0,0,0,0,0,0,0,280,4.6,10,5,32.2,77777,9,999999999,50,0.0910,0,88,999.000,999.0,99.0 +1976,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,-5.0,-12.8,55,102500,0,0,233,0,0,0,0,0,0,0,340,2.6,10,5,32.2,77777,9,999999999,50,0.0910,0,88,999.000,999.0,99.0 +1976,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,-5.0,-12.2,57,102500,0,0,236,0,0,0,0,0,0,0,280,2.6,10,6,24.1,7620,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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,-5.0,-12.2,57,102400,0,0,254,0,0,0,0,0,0,0,180,2.6,10,10,24.1,6100,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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,-5.0,-12.2,57,102300,0,0,254,0,0,0,0,0,0,0,170,3.6,10,10,24.1,2130,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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,-5.0,-12.2,57,102300,0,0,254,0,0,0,0,0,0,0,160,3.1,10,10,20.9,6100,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1976,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,-4.4,-12.2,55,102200,68,1119,257,6,0,6,700,0,700,240,150,4.1,10,10,16.1,3050,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,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,-3.9,-12.2,53,102200,273,1414,259,67,8,65,7500,300,7400,2250,170,4.1,10,10,16.1,6100,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,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,-2.8,-12.2,49,102100,447,1414,263,137,16,132,15300,1100,14900,4600,150,5.2,10,10,16.1,6100,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,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,-1.1,-12.2,43,101900,567,1414,270,199,2,198,22000,200,21900,6810,140,4.6,10,10,16.1,6100,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,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,0.6,-12.2,38,101600,626,1414,276,168,6,165,19100,500,18900,6490,140,6.7,10,10,16.1,6100,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,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,1.1,-12.2,37,101500,619,1414,278,167,6,164,18900,500,18700,6430,150,6.2,10,10,16.1,4880,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1976,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,-7.2,50,101300,547,1414,288,195,4,194,21600,300,21500,6560,140,5.2,10,10,16.1,4880,9,999999999,69,0.0470,0,88,999.000,999.0,99.0 +1976,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,2.2,-2.2,73,101200,415,1414,294,120,3,119,13300,200,13300,4140,150,4.1,10,10,11.3,640,9,999999999,100,0.0470,0,88,999.000,999.0,99.0 +1976,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,2.8,0.0,82,101100,232,1414,299,36,1,36,4200,0,4200,1360,150,6.2,10,10,11.3,550,9,999999999,110,0.0470,0,88,999.000,999.0,99.0 +1976,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,2.8,1.1,89,100900,37,836,300,8,0,8,1000,0,1000,300,150,5.7,10,10,8.0,460,9,999999999,120,0.0470,0,88,999.000,999.0,99.0 +1976,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,2.8,1.7,92,100900,0,0,300,0,0,0,0,0,0,0,180,3.1,10,10,8.0,640,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1976,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,3.3,1.7,89,100700,0,0,303,0,0,0,0,0,0,0,180,4.1,10,10,6.4,670,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1976,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,3.9,2.2,89,100600,0,0,306,0,0,0,0,0,0,0,190,3.1,10,10,9.7,670,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1976,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,2.8,1.7,92,100400,0,0,300,0,0,0,0,0,0,0,210,2.1,10,10,16.1,730,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1976,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,3.3,2.2,93,100400,0,0,303,0,0,0,0,0,0,0,280,4.6,10,10,16.1,370,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1976,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,2.8,1.1,89,100300,0,0,300,0,0,0,0,0,0,0,310,4.6,10,10,2.4,180,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1976,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,1.7,0.0,89,100300,0,0,268,0,0,0,0,0,0,0,310,3.6,4,4,16.1,77777,9,999999999,110,0.0910,0,88,999.000,999.0,99.0 +1976,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,1.1,-1.1,85,100200,0,0,251,0,0,0,0,0,0,0,310,4.6,0,0,19.3,77777,9,999999999,100,0.0910,0,88,999.000,999.0,99.0 +1976,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,0.0,-1.7,89,100300,0,0,247,0,0,0,0,0,0,0,300,4.6,2,0,11.3,77777,9,999999999,100,0.0910,0,88,999.000,999.0,99.0 +1976,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,-0.6,-2.8,85,100300,0,0,244,0,0,0,0,0,0,0,300,4.1,2,0,12.9,77777,9,999999999,89,0.0910,0,88,999.000,999.0,99.0 +1976,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,-0.6,-3.3,82,100400,0,0,248,0,0,0,0,0,0,0,300,5.7,6,1,19.3,77777,9,999999999,89,0.0910,0,88,999.000,999.0,99.0 +1976,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,-5.0,72,100500,0,0,246,0,0,0,0,0,0,0,300,6.7,4,1,24.1,77777,9,999999999,80,0.0910,0,88,999.000,999.0,99.0 +1976,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,-1.1,-6.7,66,100500,0,0,243,0,0,0,0,0,0,0,300,6.2,6,1,24.1,77777,9,999999999,69,0.0910,0,88,999.000,999.0,99.0 +1976,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,-1.7,-7.8,63,100500,0,0,240,0,0,0,0,0,0,0,310,4.6,6,1,24.1,77777,9,999999999,69,0.0910,0,88,999.000,999.0,99.0 +1976,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,-8.3,63,100600,69,1143,243,29,72,23,2900,2500,2800,410,310,7.2,7,3,24.1,77777,9,999999999,69,0.0710,0,88,999.000,999.0,99.0 +1976,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.8,-8.9,63,100700,276,1414,259,72,21,68,7900,1700,7600,1710,310,8.2,10,9,24.1,2440,9,999999999,69,0.0710,0,88,999.000,999.0,99.0 +1976,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,-3.3,-10.0,60,100800,450,1414,238,240,402,111,24900,36200,13400,2100,310,7.7,7,3,24.1,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1976,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,-3.9,-10.6,60,100800,571,1414,239,300,424,128,31700,40800,15200,2500,320,7.7,7,5,24.1,2440,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1976,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,-2.8,-11.1,53,100700,630,1414,229,419,791,66,44600,76900,10200,1460,330,7.2,0,0,24.1,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1976,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.8,-13.3,44,100700,624,1414,227,435,838,65,45700,80400,10000,1390,320,8.8,0,0,24.1,77777,9,999999999,50,0.0710,0,88,999.000,999.0,99.0 +1976,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,-15.6,37,100700,552,1414,229,280,527,75,29800,50200,10100,1520,340,7.2,1,1,24.1,77777,9,999999999,50,0.0710,0,88,999.000,999.0,99.0 +1976,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,-2.8,-16.1,35,100700,420,1414,224,259,676,59,26700,60000,8800,1120,330,8.8,3,0,24.1,77777,9,999999999,50,0.0710,0,88,999.000,999.0,99.0 +1976,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,-17.8,35,100800,237,1414,229,102,225,65,10800,15300,8200,1240,340,8.8,10,4,24.1,77777,9,999999999,40,0.0710,0,88,999.000,999.0,99.0 +1976,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,-5.6,-17.8,38,100700,40,860,231,16,5,15,1700,300,1700,360,330,7.7,10,7,24.1,4880,9,999999999,40,0.0710,0,88,999.000,999.0,99.0 +1976,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,-6.7,-20.0,34,100700,0,0,240,0,0,0,0,0,0,0,330,9.8,10,10,24.1,3960,9,999999999,40,0.0910,0,88,999.000,999.0,99.0 +1976,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,-7.8,-20.6,35,100600,0,0,236,0,0,0,0,0,0,0,330,9.8,10,10,24.1,3960,9,999999999,40,0.0910,0,88,999.000,999.0,99.0 +1976,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,-8.3,-20.6,37,100900,0,0,234,0,0,0,0,0,0,0,330,6.2,10,10,24.1,3050,9,999999999,40,0.0910,0,88,999.000,999.0,99.0 +1976,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,-8.9,-20.6,39,100700,0,0,232,0,0,0,0,0,0,0,340,8.8,10,10,24.1,2740,9,999999999,40,0.0910,0,88,999.000,999.0,99.0 +1976,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,-9.4,-21.1,38,100800,0,0,230,0,0,0,0,0,0,0,320,7.7,10,10,24.1,3050,9,999999999,40,0.0910,0,88,999.000,999.0,99.0 +1976,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,-10.0,-21.1,40,100900,0,0,228,0,0,0,0,0,0,0,330,7.7,10,10,24.1,3350,9,999999999,40,0.0910,0,88,999.000,999.0,99.0 +1976,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.1,-21.7,42,100900,0,0,223,0,0,0,0,0,0,0,320,8.2,10,10,24.1,3350,9,999999999,40,0.0910,0,88,999.000,999.0,99.0 +1976,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,-22.2,42,100900,0,0,221,0,0,0,0,0,0,0,310,7.7,10,10,24.1,3960,9,999999999,40,0.0920,0,88,999.000,999.0,99.0 +1976,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,-12.2,-22.8,41,101100,0,0,213,0,0,0,0,0,0,0,310,7.2,10,9,24.1,3960,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-12.8,-23.3,41,101200,0,0,206,0,0,0,0,0,0,0,330,6.7,10,8,24.1,4880,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-13.3,-23.9,41,101300,0,0,185,0,0,0,0,0,0,0,320,7.2,2,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-13.9,-24.4,41,101500,0,0,183,0,0,0,0,0,0,0,310,6.7,2,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-14.4,-25.0,41,101500,0,0,181,0,0,0,0,0,0,0,310,6.7,2,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-14.4,-25.0,41,101700,0,0,181,0,0,0,0,0,0,0,320,7.2,0,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-15.0,-25.6,40,101800,71,1142,179,35,216,17,3200,10100,2500,310,330,7.7,0,0,24.1,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1976,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,-15.0,-25.0,43,102000,278,1413,180,158,618,35,16200,49100,6500,710,320,8.2,0,0,24.1,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1976,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,-13.9,-25.0,39,102200,453,1413,183,296,773,47,31200,70500,8500,1050,320,7.2,0,0,24.1,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1976,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,-12.2,-23.3,39,102200,574,1413,189,401,848,56,42300,80500,9400,1270,310,7.7,0,0,24.1,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1976,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,-11.1,-22.8,38,102200,634,1413,193,457,883,60,48100,85000,9800,1380,320,5.7,0,0,24.1,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1976,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,-9.4,-22.8,33,102200,628,1413,198,449,876,59,47300,84200,9700,1360,310,7.7,0,0,24.1,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1976,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,-7.8,-22.8,29,102400,557,1413,202,387,845,54,40800,79900,9200,1230,310,5.7,0,0,24.1,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1976,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,-7.8,-23.9,26,102500,425,1413,202,273,761,45,28900,68500,8300,1000,310,5.2,0,0,24.1,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1976,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,-7.8,-24.4,25,102600,242,1413,201,128,563,33,13300,42500,6000,650,330,7.7,0,0,24.1,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1976,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,-8.9,-25.0,26,102700,43,883,197,25,131,13,2100,5600,1800,240,310,6.2,0,0,32.2,77777,9,999999999,30,0.0570,0,88,999.000,999.0,99.0 +1976,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.6,-26.7,25,102800,0,0,191,0,0,0,0,0,0,0,320,6.7,0,0,32.2,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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.7,-26.7,28,103000,0,0,188,0,0,0,0,0,0,0,330,6.7,0,0,32.2,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-12.2,-26.7,29,103100,0,0,186,0,0,0,0,0,0,0,330,5.2,0,0,32.2,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-13.3,-26.7,32,103200,0,0,183,0,0,0,0,0,0,0,320,5.7,0,0,32.2,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-13.9,-26.7,33,103300,0,0,181,0,0,0,0,0,0,0,340,5.2,0,0,32.2,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-13.9,-26.1,35,103300,0,0,182,0,0,0,0,0,0,0,320,4.6,0,0,32.2,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-14.4,-26.1,37,103300,0,0,181,0,0,0,0,0,0,0,340,6.2,0,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-14.4,-25.6,39,103400,0,0,181,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-14.4,-25.0,41,103400,0,0,181,0,0,0,0,0,0,0,330,3.6,0,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-14.4,-25.6,39,103500,0,0,181,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-14.4,-25.0,41,103500,0,0,181,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-14.4,-24.4,43,103500,0,0,182,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-15.0,-23.9,47,103600,0,0,181,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-15.0,-22.8,52,103600,0,0,181,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,30,0.0920,0,88,999.000,999.0,99.0 +1976,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,-15.0,-22.8,52,103600,73,1166,181,30,104,21,2900,4200,2700,370,310,4.1,0,0,24.1,77777,9,999999999,30,0.1140,0,88,999.000,999.0,99.0 +1976,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,-14.4,-21.7,55,103700,281,1413,184,143,464,50,14700,35500,7600,910,320,3.1,0,0,24.1,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1976,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,-11.1,-21.7,42,103700,456,1413,194,280,651,68,29200,59100,10000,1310,270,2.1,0,0,24.1,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1976,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,-8.9,-20.6,39,103700,578,1413,201,385,739,81,39500,70000,10800,1570,330,2.1,0,0,19.3,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1976,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,-6.7,-19.4,36,103500,639,1413,209,438,775,87,45300,74600,11400,1730,140,1.0,0,0,16.1,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1976,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,-6.1,-17.2,41,103500,633,1413,213,432,771,87,44700,74100,11400,1720,160,2.1,0,0,16.1,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1976,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,-5.6,-16.1,44,103400,562,1413,215,366,724,79,38800,69200,11200,1600,150,2.6,0,0,16.1,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1976,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,-5.0,-16.1,42,103400,430,1413,217,254,622,65,26600,55500,9700,1240,140,1.5,0,0,16.1,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1976,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,-5.0,-16.7,40,103400,247,1413,217,116,407,46,12000,29400,6800,820,170,2.1,0,0,16.1,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1976,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,-5.0,-19.4,32,103300,45,930,214,20,54,15,1900,1600,1900,260,230,3.6,0,0,19.3,77777,9,999999999,40,0.1140,0,88,999.000,999.0,99.0 +1976,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,-5.6,-16.7,42,103200,0,0,215,0,0,0,0,0,0,0,150,5.7,0,0,19.3,77777,9,999999999,40,0.0920,0,88,999.000,999.0,99.0 +1976,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,-5.6,-13.9,52,103200,0,0,217,0,0,0,0,0,0,0,170,5.2,0,0,19.3,77777,9,999999999,50,0.0920,0,88,999.000,999.0,99.0 +1976,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,-6.1,-12.8,60,103200,0,0,216,0,0,0,0,0,0,0,200,4.1,0,0,19.3,77777,9,999999999,50,0.0920,0,88,999.000,999.0,99.0 +1976,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,-5.6,-12.8,57,103100,0,0,218,0,0,0,0,0,0,0,210,4.1,0,0,19.3,77777,9,999999999,50,0.0920,0,88,999.000,999.0,99.0 +1976,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,-5.6,-13.3,55,103100,0,0,218,0,0,0,0,0,0,0,230,5.7,0,0,19.3,77777,9,999999999,50,0.0920,0,88,999.000,999.0,99.0 +1976,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,-6.1,-13.9,55,103000,0,0,215,0,0,0,0,0,0,0,240,5.7,0,0,19.3,77777,9,999999999,50,0.0920,0,88,999.000,999.0,99.0 +1976,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,-6.1,-13.9,55,102900,0,0,215,0,0,0,0,0,0,0,230,5.2,0,0,19.3,77777,9,999999999,50,0.0920,0,88,999.000,999.0,99.0 +1976,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,-6.1,-11.7,65,102800,0,0,217,0,0,0,0,0,0,0,230,5.7,0,0,19.3,77777,9,999999999,60,0.0920,0,88,999.000,999.0,99.0 +1976,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,-6.1,-10.6,71,102700,0,0,222,0,0,0,0,0,0,0,210,5.2,2,1,19.3,77777,9,999999999,60,0.0920,0,88,999.000,999.0,99.0 +1976,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,-6.1,-10.6,71,102600,0,0,218,0,0,0,0,0,0,0,220,5.7,2,0,20.9,77777,9,999999999,60,0.0920,0,88,999.000,999.0,99.0 +1976,1,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-10.0,68,102500,0,0,222,0,0,0,0,0,0,0,240,6.2,2,0,20.9,77777,9,999999999,60,0.0920,0,88,999.000,999.0,99.0 +1976,1,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-9.4,71,102500,0,0,234,0,0,0,0,0,0,0,220,4.6,5,4,20.9,77777,9,999999999,60,0.0920,0,88,999.000,999.0,99.0 +1976,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,-3.9,-8.3,72,102400,0,0,263,0,0,0,0,0,0,0,220,7.2,10,10,20.9,1830,9,999999999,69,0.0920,0,88,999.000,999.0,99.0 +1976,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,-2.8,-9.4,61,102400,0,0,266,0,0,0,0,0,0,0,220,6.7,10,10,20.9,1830,9,999999999,60,0.0920,0,88,999.000,999.0,99.0 +1976,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,-2.2,-10.0,56,102300,75,1166,267,13,2,13,1500,0,1500,480,230,7.7,10,10,20.9,1520,9,999999999,60,0.1240,0,88,999.000,999.0,99.0 +1976,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,-1.7,-10.6,51,102300,284,1413,269,61,17,58,6700,1400,6500,1520,240,7.7,10,10,20.9,1980,9,999999999,60,0.1240,0,88,999.000,999.0,99.0 +1976,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,-0.6,-9.4,51,102200,460,1413,274,127,5,126,14300,300,14200,4550,240,7.7,10,10,20.9,1220,9,999999999,60,0.1240,0,88,999.000,999.0,99.0 +1976,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,-8.9,48,102100,582,1413,268,224,136,168,24500,13500,18900,3960,240,8.8,10,8,20.9,1220,9,999999999,69,0.1240,0,88,999.000,999.0,99.0 +1976,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.1,-8.3,50,102000,643,1413,283,171,10,166,19500,800,19100,6620,250,6.7,10,10,20.9,1310,9,999999999,69,0.1240,0,88,999.000,999.0,99.0 +1976,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,1.1,-7.2,54,101900,637,1413,284,179,4,177,20300,300,20100,6880,250,8.8,10,10,20.9,1310,9,999999999,69,0.1240,0,88,999.000,999.0,99.0 +1976,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,0.6,-3.9,72,101900,566,1413,285,179,5,177,20000,400,19800,6390,240,6.7,10,10,2.4,210,9,999999999,89,0.1240,0,88,999.000,999.0,99.0 +1976,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,0.0,-2.8,82,101900,435,1413,284,112,4,111,12600,200,12600,4060,250,7.2,10,10,2.4,270,9,999999999,89,0.1240,0,88,999.000,999.0,99.0 +1976,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,0.0,-2.8,82,101900,252,1413,284,47,3,46,5300,100,5300,1700,270,5.2,10,10,4.8,240,9,999999999,89,0.1240,0,88,999.000,999.0,99.0 +1976,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,0.0,-2.8,82,101800,49,954,284,12,0,12,1400,0,1400,430,240,4.6,10,10,11.3,1310,9,999999999,89,0.1240,0,88,999.000,999.0,99.0 +1976,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,0.0,-3.3,79,101800,0,0,283,0,0,0,0,0,0,0,230,4.6,10,10,11.3,2440,9,999999999,89,0.0920,0,88,999.000,999.0,99.0 +1976,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,-3.3,82,101900,0,0,267,0,0,0,0,0,0,0,240,5.2,8,8,16.1,2440,9,999999999,89,0.0920,0,88,999.000,999.0,99.0 +1976,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,-1.1,-3.9,82,101900,0,0,251,0,0,0,0,0,0,0,250,3.6,3,3,16.1,77777,9,999999999,89,0.0920,0,88,999.000,999.0,99.0 +1976,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,-3.9,85,101800,0,0,239,0,0,0,0,0,0,0,250,5.7,0,0,16.1,77777,9,999999999,89,0.0920,0,88,999.000,999.0,99.0 +1976,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,-2.2,-4.4,85,101800,0,0,247,0,0,0,0,0,0,0,250,3.6,3,3,16.1,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1976,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.2,-4.4,85,101800,0,0,237,0,0,0,0,0,0,0,250,3.6,2,0,11.3,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1976,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,-2.2,-5.0,82,101800,0,0,236,0,0,0,0,0,0,0,250,4.6,0,0,11.3,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1976,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,-2.2,-5.6,78,101700,0,0,236,0,0,0,0,0,0,0,250,4.6,0,0,12.9,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1976,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,-2.8,-5.6,81,101700,0,0,234,0,0,0,0,0,0,0,260,3.6,0,0,14.5,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1976,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,-2.8,-6.1,78,101700,0,0,233,0,0,0,0,0,0,0,250,3.6,0,0,11.3,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1976,1,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-6.1,78,101600,0,0,233,0,0,0,0,0,0,0,270,3.6,0,0,11.3,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1976,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,-5.0,-7.2,85,101600,0,0,225,0,0,0,0,0,0,0,250,1.5,2,0,11.3,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1976,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,-3.3,-6.7,78,101600,0,0,231,0,0,0,0,0,0,0,280,4.1,2,0,11.3,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1976,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,-4.4,-7.2,81,101600,0,0,227,0,0,0,0,0,0,0,240,3.6,0,0,11.3,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1976,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,-4.4,-7.2,81,101600,77,1189,227,37,216,18,3400,10300,2700,330,220,4.1,0,0,12.9,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1976,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,-6.7,75,101500,287,1413,233,155,581,36,16000,46600,6400,730,240,3.6,0,0,12.9,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1976,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,-0.6,-6.1,66,101500,463,1413,245,266,587,73,27800,53400,10200,1400,200,1.5,3,1,12.9,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,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,1.1,-6.1,59,101300,586,1413,260,337,477,138,35500,46200,16200,2730,190,0.5,8,4,11.3,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,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,1.1,-4.4,67,101200,647,1413,263,339,408,151,35800,40300,17200,3070,160,2.1,10,5,11.3,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,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,2.2,-5.0,59,101000,642,1413,291,111,7,108,13100,500,12900,4760,230,4.1,10,10,24.1,5490,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,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,2.8,-6.7,50,100800,572,1413,291,154,10,151,17600,700,17300,5810,200,3.1,10,10,24.1,4570,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1976,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,2.2,-6.1,55,100700,440,1413,290,138,1,137,15200,100,15200,4660,160,3.6,10,10,20.9,4570,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,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,2.2,-3.9,64,100600,257,1413,292,81,5,80,8900,200,8800,2490,140,3.6,10,10,20.9,2440,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1976,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,2.2,-3.9,64,100500,52,977,292,11,0,11,1300,0,1300,410,170,4.6,10,10,19.3,1160,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1976,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,1.7,-3.9,67,100400,0,0,290,0,0,0,0,0,0,0,170,5.2,10,10,19.3,520,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1976,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,1.1,-3.9,70,100200,0,0,287,0,0,0,0,0,0,0,120,3.1,10,10,19.3,520,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1976,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,1.1,-3.9,70,100000,0,0,287,0,0,0,0,0,0,0,120,3.1,10,10,11.3,520,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1976,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,1.1,-3.9,70,99900,0,0,287,0,0,0,0,0,0,0,90,4.1,10,10,8.0,520,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1976,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,0.6,-2.2,82,99700,0,0,287,0,0,0,0,0,0,0,110,2.6,10,10,2.4,310,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1976,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,0.6,-1.7,85,99600,0,0,287,0,0,0,0,0,0,0,40,1.0,10,10,0.8,120,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1976,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,0.0,-1.7,89,99400,0,0,285,0,0,0,0,0,0,0,360,4.6,10,10,1.6,150,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1976,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,0.0,-1.7,89,99300,0,0,285,0,0,0,0,0,0,0,340,4.6,10,10,1.6,210,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1976,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,-2.2,89,99300,0,0,282,0,0,0,0,0,0,0,320,4.1,10,10,1.6,180,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1976,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,-2.2,89,99200,0,0,282,0,0,0,0,0,0,0,310,5.2,10,10,1.6,180,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1976,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,-2.8,85,99200,0,0,281,0,0,0,0,0,0,0,300,5.2,10,10,4.8,6100,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1976,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,-1.1,-3.9,82,99200,0,0,278,0,0,0,0,0,0,0,290,6.7,10,10,9.7,1980,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1976,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,-1.1,-6.7,66,99200,0,0,275,0,0,0,0,0,0,0,290,7.7,10,10,16.1,1520,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1976,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,-1.1,-6.7,66,99300,0,0,275,0,0,0,0,0,0,0,290,7.7,10,10,19.3,1980,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1976,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.7,-8.3,61,99300,80,1212,258,41,60,35,4200,2700,4000,720,280,9.3,10,8,20.9,1980,9,999999999,69,0.0460,0,88,999.000,999.0,99.0 +1976,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,-2.2,-8.3,63,99400,291,1412,252,123,103,102,13200,8100,11500,2200,290,8.2,10,7,20.9,6100,9,999999999,69,0.0460,0,88,999.000,999.0,99.0 +1976,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.2,-9.4,58,99400,467,1412,237,278,517,106,29200,47200,13500,2000,280,10.3,10,1,20.9,77777,9,999999999,60,0.0460,0,88,999.000,999.0,99.0 +1976,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,-2.2,-10.6,53,99400,590,1412,231,419,839,67,44100,80600,10300,1430,290,10.3,2,0,22.5,77777,9,999999999,60,0.0460,0,88,999.000,999.0,99.0 +1976,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,-12.8,50,99400,652,1412,228,445,736,105,46800,71800,13500,2170,290,5.2,4,1,24.1,77777,9,999999999,50,0.0460,0,88,999.000,999.0,99.0 +1976,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,-5.6,-13.9,52,99500,647,1412,217,474,899,62,49900,86800,10000,1410,280,12.9,0,0,24.1,77777,9,999999999,50,0.0460,0,88,999.000,999.0,99.0 +1976,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,-6.7,-17.8,41,99500,577,1412,210,414,876,57,43700,83200,9600,1280,290,14.9,0,0,24.1,77777,9,999999999,40,0.0460,0,88,999.000,999.0,99.0 +1976,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,-7.8,-22.2,31,99600,445,1412,203,298,801,47,31600,72800,8600,1040,280,15.4,0,0,24.1,77777,9,999999999,30,0.0460,0,88,999.000,999.0,99.0 +1976,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,-9.4,-23.3,32,99700,262,1412,197,148,626,33,15500,48800,6300,670,280,11.3,0,0,24.1,77777,9,999999999,30,0.0460,0,88,999.000,999.0,99.0 +1976,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,-25.6,30,99800,55,1000,190,32,190,15,2700,8500,2200,270,300,11.3,0,0,24.1,77777,9,999999999,30,0.0460,0,88,999.000,999.0,99.0 +1976,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,-11.7,-26.1,29,100000,0,0,192,0,0,0,0,0,0,0,280,10.3,1,1,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-12.8,-26.7,30,100000,0,0,185,0,0,0,0,0,0,0,290,12.4,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-14.4,-27.8,31,100000,0,0,179,0,0,0,0,0,0,0,290,15.4,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-15.0,-29.4,28,100100,0,0,176,0,0,0,0,0,0,0,290,12.4,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-16.1,-31.1,26,100100,0,0,172,0,0,0,0,0,0,0,290,13.4,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-17.8,-32.2,27,100100,0,0,167,0,0,0,0,0,0,0,300,12.9,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-18.3,-32.2,28,100100,0,0,165,0,0,0,0,0,0,0,330,13.9,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-19.4,-32.2,31,100100,0,0,162,0,0,0,0,0,0,0,300,12.9,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-20.0,-32.2,33,100200,0,0,161,0,0,0,0,0,0,0,290,10.8,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-20.0,-32.2,33,100300,0,0,161,0,0,0,0,0,0,0,290,10.3,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-20.0,-32.2,33,100400,0,0,161,0,0,0,0,0,0,0,280,8.8,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-19.4,-31.7,33,100500,0,0,163,0,0,0,0,0,0,0,300,10.3,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-19.4,-31.7,33,100500,0,0,163,0,0,0,0,0,0,0,310,12.9,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-18.9,-31.1,33,100700,0,0,165,0,0,0,0,0,0,0,300,10.3,0,0,24.1,77777,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-18.3,-30.0,35,100900,82,1212,167,32,110,23,3200,4600,2900,410,300,8.2,0,0,24.1,77777,9,999999999,30,0.1190,0,88,999.000,999.0,99.0 +1976,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,-17.2,-28.9,36,101000,294,1412,171,156,478,56,16000,37100,8200,1000,290,8.8,0,0,32.2,77777,9,999999999,30,0.1190,0,88,999.000,999.0,99.0 +1976,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,-15.0,-26.7,37,101100,471,1412,178,301,665,78,31300,60600,11000,1490,290,7.7,0,0,32.2,77777,9,999999999,30,0.1190,0,88,999.000,999.0,99.0 +1976,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,-13.9,-26.7,33,101100,595,1412,181,410,752,93,43100,72300,12500,1880,290,7.7,0,0,32.2,77777,9,999999999,30,0.1190,0,88,999.000,999.0,99.0 +1976,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,-12.8,-25.6,34,101100,657,1412,185,467,775,106,49100,75700,13700,2200,290,8.2,1,0,32.2,77777,9,999999999,30,0.1190,0,88,999.000,999.0,99.0 +1976,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,-11.1,-25.0,31,101100,652,1412,191,468,753,121,48800,73000,15000,2450,290,7.7,3,0,32.2,77777,9,999999999,30,0.1190,0,88,999.000,999.0,99.0 +1976,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,-10.6,-25.0,30,101100,582,1412,192,403,713,110,41900,67700,13900,2140,280,8.2,3,0,32.2,77777,9,999999999,30,0.1190,0,88,999.000,999.0,99.0 +1976,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,-9.4,-24.4,29,101100,450,1412,196,283,614,89,29300,54700,11700,1630,270,7.2,3,0,32.2,77777,9,999999999,30,0.1190,0,88,999.000,999.0,99.0 +1976,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,-8.9,-25.0,26,101200,267,1412,204,127,261,79,13400,19000,9800,1550,280,6.2,8,2,32.2,77777,9,999999999,30,0.1190,0,88,999.000,999.0,99.0 +1976,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,-25.6,27,101200,59,1024,217,22,9,21,2400,500,2300,500,270,7.2,10,9,32.2,6100,9,999999999,30,0.1190,0,88,999.000,999.0,99.0 +1976,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,-10.0,-25.0,28,101200,0,0,224,0,0,0,0,0,0,0,280,7.2,10,10,32.2,6100,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-10.6,-25.0,30,101300,0,0,222,0,0,0,0,0,0,0,280,7.2,10,10,24.1,6100,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-11.1,-25.0,31,101300,0,0,220,0,0,0,0,0,0,0,290,6.7,10,10,24.1,6100,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-11.1,-24.4,33,101400,0,0,221,0,0,0,0,0,0,0,280,7.2,10,10,24.1,6100,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-11.1,-25.6,30,101400,0,0,220,0,0,0,0,0,0,0,300,7.7,10,10,24.1,6100,9,999999999,30,0.0930,0,88,999.000,999.0,99.0 +1976,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,-11.7,-20.0,50,101400,0,0,223,0,0,0,0,0,0,0,310,5.7,10,10,20.9,1830,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1976,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,-12.2,-17.8,64,101400,0,0,223,0,0,0,0,0,0,0,300,3.6,10,10,4.8,1520,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1976,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,-12.2,-17.8,64,101500,0,0,223,0,0,0,0,0,0,0,250,5.7,10,10,4.8,460,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1976,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,-12.2,-19.4,55,101500,0,0,222,0,0,0,0,0,0,0,300,4.6,10,10,2.4,430,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1976,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,-12.2,-18.9,58,101400,0,0,222,0,0,0,0,0,0,0,320,2.6,10,10,4.8,2440,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1976,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,-12.2,-17.8,64,101400,0,0,223,0,0,0,0,0,0,0,330,2.6,10,10,6.4,1160,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1976,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,-12.2,-18.3,61,101400,0,0,223,0,0,0,0,0,0,0,330,2.6,10,10,8.0,1070,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1976,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,-11.7,-18.9,55,101400,0,0,224,0,0,0,0,0,0,0,350,3.1,10,10,8.0,910,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1976,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,-11.7,-18.9,55,101400,0,0,224,0,0,0,0,0,0,0,350,3.1,10,10,9.7,910,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1976,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,-11.7,-18.3,58,101500,85,1235,224,15,0,15,1700,0,1700,550,350,2.6,10,10,11.3,910,9,999999999,40,0.1260,0,88,999.000,999.0,99.0 +1976,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,-11.1,-18.3,56,101500,298,1412,226,57,6,55,6400,200,6400,2060,350,2.6,10,10,16.1,880,9,999999999,40,0.1260,0,88,999.000,999.0,99.0 +1976,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,-10.6,-18.9,51,101600,475,1412,228,117,4,116,13300,300,13200,4380,350,2.6,10,10,16.1,1010,9,999999999,40,0.1260,0,88,999.000,999.0,99.0 +1976,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,-10.6,-18.3,53,101600,599,1412,228,181,9,177,20300,700,20000,6630,350,2.6,10,10,12.9,910,9,999999999,40,0.1260,0,88,999.000,999.0,99.0 +1976,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,-10.0,-17.8,53,101500,661,1412,231,206,2,205,23200,200,23100,7750,350,2.6,10,10,12.9,910,9,999999999,40,0.1260,0,88,999.000,999.0,99.0 +1976,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,-9.4,-16.7,56,101500,657,1412,234,184,1,183,20800,100,20800,7170,350,2.6,10,10,17.7,820,9,999999999,40,0.1260,0,88,999.000,999.0,99.0 +1976,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,-8.9,-15.6,59,101500,587,1412,237,167,1,166,18800,100,18700,6280,350,3.6,10,10,8.0,760,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1976,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,-8.9,-12.2,77,101500,456,1412,240,129,2,129,14500,100,14400,4600,340,3.6,10,10,8.0,670,9,999999999,60,0.1260,0,88,999.000,999.0,99.0 +1976,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,-8.3,-11.7,77,101500,273,1412,243,73,0,73,8100,0,8100,2430,350,4.1,10,10,16.1,460,9,999999999,60,0.1260,0,88,999.000,999.0,99.0 +1976,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,-8.3,-11.1,81,101500,62,1071,243,23,0,23,2600,0,2600,740,350,4.6,10,10,16.1,460,9,999999999,60,0.1260,0,88,999.000,999.0,99.0 +1976,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,-7.8,-11.1,77,101500,0,0,245,0,0,0,0,0,0,0,350,4.1,10,10,16.1,370,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-7.8,-11.1,77,101500,0,0,245,0,0,0,0,0,0,0,340,4.1,10,10,16.1,240,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-7.8,-10.6,81,101600,0,0,245,0,0,0,0,0,0,0,320,3.1,10,10,12.9,210,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-7.8,-10.6,81,101600,0,0,245,0,0,0,0,0,0,0,310,5.7,10,10,12.9,210,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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.3,-10.6,84,101600,0,0,244,0,0,0,0,0,0,0,320,4.6,10,10,9.7,180,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-10.0,88,101700,0,0,244,0,0,0,0,0,0,0,310,4.1,10,10,2.4,180,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-8.3,-10.0,88,101800,0,0,244,0,0,0,0,0,0,0,310,4.1,10,10,4.0,90,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-8.3,-10.6,84,101800,0,0,244,0,0,0,0,0,0,0,310,5.2,10,10,4.0,150,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-8.3,-10.6,84,101900,0,0,244,0,0,0,0,0,0,0,310,4.1,10,10,6.4,150,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-8.3,-10.0,88,102000,0,0,244,0,0,0,0,0,0,0,300,3.1,10,10,6.4,120,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-7.8,-9.4,88,102200,0,0,247,0,0,0,0,0,0,0,300,3.6,10,10,6.4,90,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-7.8,-9.4,88,102300,0,0,223,0,0,0,0,0,0,0,300,3.6,3,3,11.3,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-8.3,-10.6,84,102400,0,0,211,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-7.8,-10.6,81,102500,0,0,213,0,0,0,0,0,0,0,310,1.5,0,0,16.1,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1976,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,-6.7,-10.6,74,102700,88,1259,216,30,43,26,3200,2000,3000,540,340,3.1,0,0,16.1,77777,9,999999999,60,0.2030,0,88,999.000,999.0,99.0 +1976,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,-5.6,-10.0,71,102900,301,1411,220,141,320,72,14600,24800,9300,1320,330,4.6,0,0,16.1,77777,9,999999999,60,0.2030,0,88,999.000,999.0,99.0 +1976,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,-4.4,-10.0,66,103000,479,1411,224,279,511,104,29400,47000,13400,1960,360,4.1,0,0,19.3,77777,9,999999999,60,0.2030,0,88,999.000,999.0,99.0 +1976,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,-3.9,-9.4,66,103100,604,1411,242,327,292,202,34500,29300,21900,4490,30,2.1,6,6,19.3,1310,9,999999999,60,0.2030,0,88,999.000,999.0,99.0 +1976,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,-2.8,-7.8,69,103200,666,1411,267,224,8,220,25100,700,24700,8120,340,2.1,10,10,20.9,430,9,999999999,69,0.2030,0,88,999.000,999.0,99.0 +1976,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,-1.7,-6.7,69,103100,663,1411,273,201,7,198,22700,600,22400,7590,360,1.0,10,10,20.9,460,9,999999999,69,0.2030,0,88,999.000,999.0,99.0 +1976,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,-1.1,-6.1,69,103200,593,1411,276,195,5,193,21800,400,21600,6940,10,2.1,10,10,19.3,460,9,999999999,80,0.2030,0,88,999.000,999.0,99.0 +1976,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,-1.1,-6.1,69,103300,461,1411,268,210,115,173,23000,10800,19500,4280,20,1.5,10,9,19.3,490,9,999999999,80,0.2030,0,88,999.000,999.0,99.0 +1976,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,-0.6,-5.6,69,103400,278,1411,278,23,1,22,2700,0,2700,930,40,2.6,10,10,19.3,430,9,999999999,80,0.2030,0,88,999.000,999.0,99.0 +1976,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,-1.1,-5.0,75,103400,66,1094,277,17,0,17,1900,0,1900,590,40,4.1,10,10,16.1,550,9,999999999,80,0.2030,0,88,999.000,999.0,99.0 +1976,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,-1.1,-5.0,75,103400,0,0,277,0,0,0,0,0,0,0,40,4.6,10,10,19.3,550,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1976,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,-1.1,-4.4,78,103500,0,0,278,0,0,0,0,0,0,0,30,3.6,10,10,19.3,550,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1976,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,0.6,-3.9,72,103600,0,0,285,0,0,0,0,0,0,0,80,4.6,10,10,19.3,520,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1976,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,0.6,-3.3,75,103600,0,0,286,0,0,0,0,0,0,0,70,4.6,10,10,19.3,490,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1976,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,1.1,-3.3,73,103500,0,0,288,0,0,0,0,0,0,0,90,6.2,10,10,19.3,520,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1976,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.1,-2.8,76,103600,0,0,288,0,0,0,0,0,0,0,90,5.7,10,10,19.3,490,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1976,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.7,-2.2,76,103600,0,0,292,0,0,0,0,0,0,0,100,5.7,10,10,19.3,490,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1976,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,1.7,-1.7,79,103600,0,0,292,0,0,0,0,0,0,0,100,5.2,10,10,19.3,550,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1976,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,2.2,-1.1,79,103500,0,0,295,0,0,0,0,0,0,0,110,5.2,10,10,19.3,550,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1976,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.2,-1.1,79,103500,0,0,295,0,0,0,0,0,0,0,100,4.6,10,10,16.1,550,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1976,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,2.2,-0.6,82,103500,0,0,295,0,0,0,0,0,0,0,90,5.2,10,10,12.9,460,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1976,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,3.3,0.0,79,103400,0,0,301,0,0,0,0,0,0,0,90,4.6,10,10,8.0,430,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1976,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,3.3,0.6,82,103400,0,0,301,0,0,0,0,0,0,0,90,5.2,10,10,3.2,310,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1976,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,3.3,1.1,86,103300,0,0,302,0,0,0,0,0,0,0,90,5.2,10,10,3.2,310,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1976,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,2.8,1.1,89,103400,91,1282,300,8,1,8,1000,0,1000,320,70,2.6,10,10,3.2,210,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1976,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,3.9,1.7,86,103400,305,1411,305,49,5,48,5700,100,5700,1870,50,3.1,10,10,3.2,150,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1976,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.9,1.7,86,103300,484,1411,305,78,5,76,9100,300,9000,3190,80,6.2,10,10,3.2,120,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1976,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,3.9,1.7,86,103200,609,1411,305,112,7,109,13100,500,12900,4690,100,3.6,10,10,3.2,120,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1976,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,4.4,1.7,82,103000,671,1411,307,221,6,218,24800,500,24500,8120,60,2.1,10,10,3.2,120,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1976,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,2.2,86,102900,668,1411,308,218,3,217,24500,300,24400,8070,20,2.1,10,10,2.4,120,9,999999999,129,0.1080,0,88,999.000,999.0,99.0 +1976,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,4.4,2.2,86,102900,598,1411,308,190,3,189,21300,200,21200,6890,40,2.1,10,10,0.6,60,9,999999999,129,0.1080,0,88,999.000,999.0,99.0 +1976,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.0,2.8,86,102900,467,1411,311,149,0,149,16500,0,16500,5090,360,2.6,10,10,0.4,60,9,999999999,129,0.1080,0,88,999.000,999.0,99.0 +1976,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.0,3.3,89,102800,283,1411,312,83,1,83,9200,0,9200,2690,0,0.0,10,10,0.2,30,9,999999999,129,0.1080,0,88,999.000,999.0,99.0 +1976,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,4.4,3.3,93,102800,70,1117,309,24,0,24,2700,0,2700,770,350,2.6,10,10,0.2,30,9,999999999,129,0.1080,0,88,999.000,999.0,99.0 +1976,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,3.9,3.3,96,102800,0,0,307,0,0,0,0,0,0,0,320,2.1,10,10,0.3,30,9,999999999,129,0.0940,0,88,999.000,999.0,99.0 +1976,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,3.3,93,102800,0,0,309,0,0,0,0,0,0,0,330,2.1,10,10,0.3,30,9,999999999,129,0.0940,0,88,999.000,999.0,99.0 +1976,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.3,2.8,96,102800,0,0,304,0,0,0,0,0,0,0,350,1.0,10,10,0.3,30,9,999999999,129,0.0940,0,88,999.000,999.0,99.0 +1976,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.3,2.8,96,102800,0,0,304,0,0,0,0,0,0,0,360,2.1,10,10,0.0,0,9,999999999,129,0.0940,0,88,999.000,999.0,99.0 +1976,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,2.8,96,102700,0,0,304,0,0,0,0,0,0,0,350,2.1,10,10,0.0,0,9,999999999,129,0.0940,0,88,999.000,999.0,99.0 +1976,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.3,2.8,96,102600,0,0,304,0,0,0,0,0,0,0,0,0.0,10,10,0.0,0,9,999999999,129,0.0940,0,88,999.000,999.0,99.0 +1976,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,4.4,2.8,89,102500,0,0,309,0,0,0,0,0,0,0,10,1.0,10,10,0.1,30,9,999999999,129,0.0940,0,88,999.000,999.0,99.0 +1976,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,5.0,3.9,93,102400,0,0,312,0,0,0,0,0,0,0,10,1.5,10,10,1.3,150,9,999999999,139,0.0950,0,88,999.000,999.0,99.0 +1976,1,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,102400,0,0,335,0,0,0,0,0,0,0,130,2.1,10,10,0.4,150,9,999999999,179,0.0950,0,88,999.000,999.0,99.0 +1976,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,10.6,8.9,90,102300,0,0,344,0,0,0,0,0,0,0,200,3.1,10,10,2.4,210,9,999999999,189,0.0950,0,88,999.000,999.0,99.0 +1976,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,11.1,9.4,90,102200,0,0,347,0,0,0,0,0,0,0,190,6.7,10,10,6.4,340,9,999999999,189,0.0950,0,88,999.000,999.0,99.0 +1976,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,11.7,10.0,90,102200,0,0,351,0,0,0,0,0,0,0,190,8.2,10,10,12.9,430,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1976,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,12.2,10.6,90,102100,0,0,354,0,0,0,0,0,0,0,200,8.2,10,10,12.9,430,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1976,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,11.1,10.0,93,102100,0,0,348,0,0,0,0,0,0,0,200,7.7,10,10,8.0,430,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1976,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,11.1,10.0,93,102100,94,1305,348,14,0,14,1600,0,1600,520,200,7.7,10,10,8.0,240,9,999999999,200,0.1500,0,88,999.000,999.0,99.0 +1976,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,12.2,11.1,93,102100,309,1411,355,46,1,45,5300,0,5300,1780,200,8.2,10,10,8.0,340,9,999999999,209,0.1500,0,88,999.000,999.0,99.0 +1976,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,11.7,10.6,93,102000,488,1411,352,78,0,78,9100,0,9100,3270,200,7.2,10,10,6.4,270,9,999999999,209,0.1500,0,88,999.000,999.0,99.0 +1976,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,12.8,11.7,93,102000,613,1411,358,119,1,119,13900,100,13900,5050,200,9.3,10,10,6.4,270,9,999999999,220,0.1500,0,88,999.000,999.0,99.0 +1976,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,12.2,11.7,96,101900,677,1411,355,121,0,121,14200,0,14200,5350,200,7.2,10,10,6.4,240,9,999999999,220,0.1500,0,88,999.000,999.0,99.0 +1976,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,12.8,12.2,96,101800,673,1411,359,131,0,131,15300,0,15300,5680,210,6.2,10,10,3.2,210,9,999999999,229,0.1500,0,88,999.000,999.0,99.0 +1976,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,11.1,10.6,96,101800,604,1411,349,105,0,105,12300,0,12300,4540,190,4.1,10,10,2.4,180,9,999999999,200,0.1500,0,88,999.000,999.0,99.0 +1976,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,11.1,10.6,96,101700,472,1411,349,83,0,83,9600,0,9600,3400,190,3.1,10,10,3.2,180,9,999999999,200,0.1500,0,88,999.000,999.0,99.0 +1976,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,11.1,10.6,96,101700,289,1411,349,43,1,43,5000,0,5000,1680,190,3.6,10,10,3.2,210,9,999999999,200,0.1500,0,88,999.000,999.0,99.0 +1976,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,11.1,10.6,96,101700,74,1164,349,20,0,20,2300,0,2300,680,180,3.6,10,10,6.4,210,9,999999999,200,0.1500,0,88,999.000,999.0,99.0 +1976,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,11.1,10.6,96,101600,0,0,349,0,0,0,0,0,0,0,190,5.7,10,10,6.4,210,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1976,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,11.7,10.6,93,101600,0,0,352,0,0,0,0,0,0,0,200,6.7,10,10,6.4,270,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1976,1,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,101500,0,0,358,0,0,0,0,0,0,0,200,7.2,10,10,6.4,270,9,999999999,220,0.0950,0,88,999.000,999.0,99.0 +1976,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,12.2,11.7,96,101400,0,0,355,0,0,0,0,0,0,0,200,6.7,10,10,4.8,270,9,999999999,220,0.0950,0,88,999.000,999.0,99.0 +1976,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,12.2,11.7,96,101300,0,0,355,0,0,0,0,0,0,0,200,5.7,10,10,4.8,270,9,999999999,220,0.0950,0,88,999.000,999.0,99.0 +1976,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,12.2,11.7,96,101100,0,0,355,0,0,0,0,0,0,0,200,6.7,10,10,6.4,310,9,999999999,220,0.0950,0,88,999.000,999.0,99.0 +1976,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,13.3,12.2,93,101100,0,0,361,0,0,0,0,0,0,0,220,8.8,10,10,6.4,310,9,999999999,229,0.0950,0,88,999.000,999.0,99.0 +1976,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,7.8,6.7,93,101100,0,0,328,0,0,0,0,0,0,0,310,4.1,10,10,6.4,270,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1976,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,7.8,6.7,93,101000,0,0,328,0,0,0,0,0,0,0,360,2.1,10,10,6.4,270,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1976,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,5.6,96,100900,0,0,319,0,0,0,0,0,0,0,60,2.1,10,10,1.6,180,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1976,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,4.4,93,100700,0,0,316,0,0,0,0,0,0,0,50,3.1,10,10,1.6,180,9,999999999,139,0.0950,0,88,999.000,999.0,99.0 +1976,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,4.4,93,100600,0,0,316,0,0,0,0,0,0,0,40,2.6,10,10,1.6,180,9,999999999,139,0.0950,0,88,999.000,999.0,99.0 +1976,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,6.7,96,100500,0,0,326,0,0,0,0,0,0,0,200,2.1,10,10,3.2,180,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1976,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,6.1,5.0,93,100500,0,0,319,0,0,0,0,0,0,0,350,2.1,10,10,8.0,460,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1976,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,5.6,4.4,93,100400,97,1305,316,15,0,15,1700,0,1700,550,310,3.6,10,10,4.8,270,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1976,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,5.0,3.9,93,100300,314,1410,312,59,0,59,6800,0,6800,2220,300,4.6,10,10,4.8,270,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1976,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.0,3.9,93,100400,493,1410,312,99,0,99,11400,0,11400,3970,290,5.7,10,10,2.4,150,9,999999999,139,0.0430,0,88,999.000,999.0,99.0 +1976,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,3.3,89,100400,618,1410,312,213,1,213,23700,100,23700,7560,280,6.7,10,10,19.3,310,9,999999999,129,0.0430,0,88,999.000,999.0,99.0 +1976,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,4.4,1.7,82,100300,682,1410,307,150,1,149,17300,100,17300,6320,290,7.2,10,10,19.3,370,9,999999999,120,0.0430,0,88,999.000,999.0,99.0 +1976,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,3.9,0.6,79,100200,679,1410,304,230,0,229,25600,0,25600,8430,290,8.2,10,10,20.9,520,9,999999999,110,0.0430,0,88,999.000,999.0,99.0 +1976,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,3.9,-1.7,67,100300,609,1410,275,346,480,139,36700,46900,16400,2770,280,8.8,7,4,20.9,7620,9,999999999,100,0.0430,0,88,999.000,999.0,99.0 +1976,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,3.9,-3.3,60,100400,478,1410,292,153,49,136,16700,4600,15200,3660,280,8.2,9,9,24.1,1160,9,999999999,89,0.0430,0,88,999.000,999.0,99.0 +1976,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,3.3,-4.4,57,100500,295,1410,277,161,376,83,16500,28700,10500,1550,300,5.7,7,7,24.1,1010,9,999999999,80,0.0430,0,88,999.000,999.0,99.0 +1976,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.2,-5.0,59,100600,79,1187,269,30,107,20,2900,4500,2600,350,300,7.2,6,6,24.1,910,9,999999999,80,0.0430,0,88,999.000,999.0,99.0 +1976,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,1.7,-5.6,59,100700,0,0,280,0,0,0,0,0,0,0,270,9.3,9,9,24.1,910,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1976,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,0.6,-6.7,59,100700,0,0,253,0,0,0,0,0,0,0,270,8.8,2,2,24.1,77777,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1976,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,0.0,-8.3,54,100900,0,0,241,0,0,0,0,0,0,0,280,7.7,0,0,24.1,77777,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1976,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,-0.6,-7.8,59,100900,0,0,239,0,0,0,0,0,0,0,290,7.7,0,0,24.1,77777,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1976,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,-0.6,-9.4,51,101000,0,0,238,0,0,0,0,0,0,0,260,8.2,0,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1976,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,-1.1,-10.0,51,101000,0,0,236,0,0,0,0,0,0,0,250,6.7,0,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1976,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,-1.1,-10.6,49,101100,0,0,235,0,0,0,0,0,0,0,270,6.7,1,0,40.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1976,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,-1.1,-10.0,51,101000,0,0,252,0,0,0,0,0,0,0,270,6.2,7,6,40.2,7620,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1976,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,-1.1,-8.9,56,101000,0,0,273,0,0,0,0,0,0,0,240,5.7,10,10,32.2,6100,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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.1,-8.3,58,100900,0,0,274,0,0,0,0,0,0,0,250,6.2,10,10,32.2,6100,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,-1.1,-8.3,58,100900,0,0,274,0,0,0,0,0,0,0,250,5.7,10,10,32.2,6100,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,-1.1,-8.3,58,100900,0,0,274,0,0,0,0,0,0,0,240,5.7,10,10,32.2,6100,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,-7.8,59,100800,0,0,276,0,0,0,0,0,0,0,230,4.1,10,10,32.2,6100,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,-0.6,-7.8,59,100800,0,0,276,0,0,0,0,0,0,0,240,6.2,10,10,24.1,6100,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,-0.6,-7.8,59,100800,101,1328,276,29,12,28,3200,700,3100,660,220,4.6,10,10,24.1,3050,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1976,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,0.0,-7.2,59,100800,318,1410,279,107,7,106,11800,400,11700,3290,230,5.2,10,10,19.3,3660,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1976,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,1.1,-6.7,57,100700,497,1410,271,194,79,166,21200,7500,18600,4340,240,4.6,10,8,19.3,3660,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1976,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,2.8,-5.6,55,100600,624,1410,265,374,518,144,39500,50800,17000,2890,240,5.2,10,3,19.3,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,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,-4.4,55,100500,687,1410,267,438,631,131,45600,61600,15500,2690,240,5.7,10,2,19.3,77777,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1976,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,5.0,-3.9,53,100400,684,1410,296,224,106,173,24800,10900,19500,4270,200,5.2,10,9,19.3,1160,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1976,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,5.0,-3.3,55,100300,615,1410,305,228,129,172,25000,12900,19300,4110,220,5.7,10,10,19.3,1010,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1976,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,5.0,-2.8,58,100300,484,1410,305,159,6,157,17600,400,17500,5370,220,6.7,10,10,19.3,1100,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1976,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,4.4,-2.2,62,100300,300,1410,303,81,4,81,9100,200,9100,2730,240,8.2,10,10,16.1,1250,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1976,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,-1.7,67,100300,83,1210,302,26,1,25,2800,0,2800,810,240,4.1,10,10,16.1,1680,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1976,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,3.9,-1.7,67,100300,0,0,302,0,0,0,0,0,0,0,240,6.7,10,10,16.1,1220,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1976,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,3.3,-1.7,70,100300,0,0,299,0,0,0,0,0,0,0,240,5.7,10,10,16.1,1400,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1976,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,3.3,-1.7,70,100300,0,0,299,0,0,0,0,0,0,0,250,4.1,10,10,16.1,1400,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1976,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,3.3,-1.7,70,100300,0,0,299,0,0,0,0,0,0,0,240,4.6,10,10,16.1,2440,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1976,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,3.3,-1.1,73,100300,0,0,300,0,0,0,0,0,0,0,250,4.1,10,10,16.1,2440,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1976,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,3.3,-1.1,73,100300,0,0,300,0,0,0,0,0,0,0,250,6.2,10,10,16.1,1520,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1976,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,2.8,-5.0,57,100400,0,0,293,0,0,0,0,0,0,0,290,8.2,10,10,16.1,1520,9,999999999,80,0.0960,0,88,999.000,999.0,99.0 +1976,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,2.2,-8.3,46,100400,0,0,287,0,0,0,0,0,0,0,300,6.7,10,10,19.3,1980,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,1.1,-7.8,52,100400,0,0,269,0,0,0,0,0,0,0,300,6.7,9,8,19.3,1980,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,0.0,-7.8,56,100400,0,0,246,0,0,0,0,0,0,0,300,6.7,1,1,19.3,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,-0.6,-7.8,59,100400,0,0,239,0,0,0,0,0,0,0,290,5.2,0,0,19.3,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,-0.6,-7.2,61,100500,0,0,240,0,0,0,0,0,0,0,290,6.2,0,0,19.3,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,-1.1,-7.2,64,100600,0,0,238,0,0,0,0,0,0,0,300,6.2,0,0,19.3,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,-1.1,-7.8,61,100600,0,0,238,0,0,0,0,0,0,0,290,5.7,6,0,19.3,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1976,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,-1.1,-8.9,56,100600,104,1351,237,41,98,32,4200,4000,3900,590,310,5.7,10,0,19.3,77777,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1976,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,-1.1,-8.9,56,100600,322,1410,237,170,430,71,17800,34300,9900,1290,330,4.6,10,0,19.3,77777,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1976,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,0.0,-8.3,54,100700,502,1410,241,321,594,109,32800,54200,13400,1990,320,3.1,10,0,19.3,77777,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1976,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,0.6,-7.8,54,100700,629,1410,244,432,682,127,44600,65400,15300,2500,310,4.6,10,0,19.3,77777,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1976,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,0.6,-8.3,52,100600,693,1410,254,360,329,198,38600,34000,21800,4440,350,2.6,10,3,19.3,77777,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1976,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.6,-8.3,52,100600,690,1410,260,319,271,186,34300,28000,20600,4110,270,3.1,10,6,19.3,7620,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1976,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.1,-8.9,48,100500,621,1410,261,234,60,208,25700,5900,23100,5800,300,1.0,10,6,19.3,7620,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1976,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,1.1,-8.9,48,100500,489,1410,282,163,77,137,18000,7200,15400,3720,350,3.1,10,10,19.3,1160,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1976,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,0.0,-8.9,52,100500,306,1410,277,57,7,56,6600,200,6500,2110,90,4.1,10,10,19.3,1160,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1976,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,0.0,-9.4,49,100600,87,1233,277,22,2,22,2500,0,2500,750,60,3.6,10,10,19.3,1160,9,999999999,60,0.0820,0,88,999.000,999.0,99.0 +1976,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,-0.6,-9.4,51,100600,0,0,274,0,0,0,0,0,0,0,40,2.6,10,10,19.3,1160,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1976,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,-0.6,-10.0,49,100700,0,0,274,0,0,0,0,0,0,0,20,3.6,10,10,16.1,1160,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1976,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,-1.1,-11.1,47,100800,0,0,271,0,0,0,0,0,0,0,360,4.1,10,10,16.1,1160,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1976,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,-1.7,-12.2,45,100900,0,0,267,0,0,0,0,0,0,0,340,5.2,10,10,16.1,1160,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1976,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,-2.8,-13.3,44,100900,0,0,262,0,0,0,0,0,0,0,330,4.6,10,10,16.1,2440,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1976,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,-3.3,-13.3,46,101000,0,0,239,0,0,0,0,0,0,0,330,5.2,5,5,19.3,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1976,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,-3.9,-13.3,48,101100,0,0,231,0,0,0,0,0,0,0,310,5.2,8,2,19.3,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1976,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,-4.4,-13.9,48,101100,0,0,221,0,0,0,0,0,0,0,310,6.2,3,0,19.3,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1976,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.0,-13.9,50,101200,0,0,219,0,0,0,0,0,0,0,320,4.6,5,0,19.3,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1976,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,-5.6,-12.8,57,101200,0,0,218,0,0,0,0,0,0,0,320,4.6,5,0,19.3,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1976,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,-12.8,60,101300,0,0,231,0,0,0,0,0,0,0,320,4.6,9,6,19.3,730,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1976,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,-6.7,-12.8,62,101300,0,0,219,0,0,0,0,0,0,0,320,4.1,5,1,19.3,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1976,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,-7.2,-12.8,65,101400,0,0,213,0,0,0,0,0,0,0,320,4.6,4,0,19.3,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1976,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,-7.2,-13.9,59,101500,0,0,212,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1976,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.2,-13.3,62,101600,108,1374,212,41,190,25,4300,8700,3600,440,320,3.6,0,0,24.1,77777,9,999999999,50,0.1000,0,88,999.000,999.0,99.0 +1976,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,-6.1,-13.3,57,101700,327,1409,216,179,551,51,18600,45000,8100,950,320,4.6,0,0,24.1,77777,9,999999999,50,0.1000,0,88,999.000,999.0,99.0 +1976,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,-5.0,-13.3,52,101800,507,1409,220,322,696,71,34000,65100,10500,1410,300,4.6,1,0,24.1,77777,9,999999999,50,0.1000,0,88,999.000,999.0,99.0 +1976,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,-3.3,-13.3,46,101700,634,1409,225,432,766,87,44700,73700,11400,1730,290,3.6,2,0,24.1,77777,9,999999999,50,0.1000,0,88,999.000,999.0,99.0 +1976,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,-13.9,43,101700,698,1409,226,493,777,107,52000,76800,13800,2290,260,2.6,4,0,24.1,77777,9,999999999,50,0.1000,0,88,999.000,999.0,99.0 +1976,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,-2.2,-14.4,39,101500,696,1409,235,483,634,171,51100,63400,19700,3600,0,0.0,10,2,24.1,77777,9,999999999,50,0.1000,0,88,999.000,999.0,99.0 +1976,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,-2.2,-13.3,43,101500,626,1409,239,387,493,168,40400,48300,18800,3440,130,2.6,10,3,24.1,77777,9,999999999,50,0.1000,0,88,999.000,999.0,99.0 +1976,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,-1.7,-12.2,45,101500,495,1409,247,243,280,145,25800,26700,16400,3010,140,2.6,10,6,24.1,7620,9,999999999,60,0.1000,0,88,999.000,999.0,99.0 +1976,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,-1.1,-12.8,41,101500,311,1409,269,67,5,66,7600,200,7600,2410,180,3.1,10,10,32.2,4880,9,999999999,50,0.1000,0,88,999.000,999.0,99.0 +1976,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.1,-8.9,56,101500,92,1280,273,16,3,16,1900,0,1900,580,160,3.1,10,10,32.2,3960,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1976,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,-11.1,45,101500,0,0,273,0,0,0,0,0,0,0,200,3.6,10,10,32.2,3660,9,999999999,60,0.0970,0,88,999.000,999.0,99.0 +1976,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,-0.6,-9.4,51,101600,0,0,274,0,0,0,0,0,0,0,200,5.2,10,10,32.2,3050,9,999999999,60,0.0970,0,88,999.000,999.0,99.0 +1976,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,-0.6,-7.8,59,101600,0,0,276,0,0,0,0,0,0,0,190,5.7,10,10,32.2,3350,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1976,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,-0.6,-8.9,54,101600,0,0,267,0,0,0,0,0,0,0,220,5.7,10,9,32.2,7620,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1976,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,-1.7,-10.1,51,101500,0,0,262,0,0,0,0,0,0,0,220,5.8,10,9,32.2,6710,9,999999999,60,0.0970,0,88,999.000,999.0,99.0 +1976,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,-2.9,-11.3,58,101500,0,0,263,0,0,0,0,0,0,0,210,6.0,10,10,32.2,1520,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1976,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,-4.1,-12.6,64,101500,0,0,257,0,0,0,0,0,0,0,200,6.1,10,10,32.2,1490,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1977,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,-5.2,-13.9,45,100100,0,0,218,0,0,0,0,0,0,0,250,6.3,10,0,24.1,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1977,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.4,-15.2,45,100100,0,0,213,0,0,0,0,0,0,0,250,6.4,4,0,24.1,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1977,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.6,-16.4,49,100100,0,0,209,0,0,0,0,0,0,0,230,6.6,0,0,24.1,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1977,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,-8.9,-17.8,49,100100,0,0,203,0,0,0,0,0,0,0,230,6.7,0,0,24.1,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1977,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,-8.9,-17.8,49,100000,0,0,203,0,0,0,0,0,0,0,240,7.2,0,0,24.1,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1977,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,-8.3,-16.7,51,100000,0,0,218,0,0,0,0,0,0,0,230,9.3,10,5,24.1,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1977,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,-8.3,-16.1,54,100100,0,12,216,0,0,0,0,0,0,0,240,8.2,3,3,24.1,77777,9,999999999,50,0.0930,0,88,999.000,999.0,99.0 +1977,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,-7.8,-15.6,54,100100,116,1409,221,50,13,49,5300,0,5300,1220,230,7.7,8,5,24.1,7620,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1977,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,-7.2,-14.4,57,100100,335,1409,244,118,7,117,12900,400,12800,3580,240,8.2,10,10,24.1,3050,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1977,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,-6.7,-14.4,54,100100,516,1409,228,284,314,170,30000,30200,18800,3650,250,6.2,9,6,24.1,7620,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1977,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,-4.4,-13.3,50,100000,644,1409,221,451,786,94,46600,75600,11900,1810,250,11.3,1,0,24.1,77777,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1977,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,-2.8,-12.2,49,99900,708,1409,228,526,863,94,55000,84400,12400,1950,260,11.3,0,0,24.1,77777,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1977,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,-12.2,45,99900,706,1409,236,384,591,90,41400,58900,11800,1990,260,8.2,1,1,24.1,77777,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1977,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,-1.7,-12.2,45,99900,637,1409,260,306,154,237,33000,15400,26000,5730,280,11.3,9,9,24.1,910,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1977,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,-2.2,-11.7,49,100000,506,1409,253,183,1,182,20100,100,20000,6000,280,9.8,10,8,24.1,1490,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1977,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,-1.7,-12.2,45,100000,322,1409,247,134,223,84,14300,17900,10200,1620,280,12.4,6,6,24.1,1520,9,999999999,50,0.0770,0,88,999.000,999.0,99.0 +1977,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,-2.2,-12.2,47,100100,101,1327,240,38,62,33,4100,3000,3900,680,270,10.8,3,3,24.1,77777,9,999999999,60,0.0770,0,88,999.000,999.0,99.0 +1977,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,-3.3,-12.2,51,100200,0,0,226,0,0,0,0,0,0,0,290,9.8,0,0,24.1,77777,9,999999999,60,0.0930,0,88,999.000,999.0,99.0 +1977,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,-3.9,-13.3,48,100400,0,0,231,0,0,0,0,0,0,0,290,8.2,2,2,24.1,77777,9,999999999,50,0.0930,0,88,999.000,999.0,99.0 +1977,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,-4.4,-15.0,44,100500,0,0,227,0,0,0,0,0,0,0,280,8.8,2,2,24.1,77777,9,999999999,50,0.0930,0,88,999.000,999.0,99.0 +1977,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,-6.1,-17.2,41,100700,0,0,217,0,0,0,0,0,0,0,320,8.8,1,1,24.1,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1977,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,-7.2,-19.4,37,100800,0,0,207,0,0,0,0,0,0,0,310,7.7,0,0,24.1,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1977,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,-8.3,-19.4,41,100900,0,0,204,0,0,0,0,0,0,0,310,7.2,0,0,32.2,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1977,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,-8.9,-20.0,41,101100,0,0,202,0,0,0,0,0,0,0,310,7.7,0,0,32.2,77777,9,999999999,40,0.0930,0,88,999.000,999.0,99.0 +1977,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,-8.9,-20.6,39,101200,0,0,201,0,0,0,0,0,0,0,300,8.8,0,0,32.2,77777,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-8.9,-20.6,39,101300,0,0,201,0,0,0,0,0,0,0,290,7.2,0,0,32.2,77777,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-9.4,-20.6,40,101300,0,0,199,0,0,0,0,0,0,0,290,5.7,0,0,32.2,77777,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-9.4,-20.6,40,101400,0,0,199,0,0,0,0,0,0,0,290,6.7,0,0,32.2,77777,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-10.0,-20.6,42,101500,0,0,198,0,0,0,0,0,0,0,290,7.7,0,0,32.2,77777,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-10.6,-20.6,44,101500,0,0,196,0,0,0,0,0,0,0,280,7.7,0,0,32.2,77777,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-10.6,-20.6,44,101700,0,35,196,0,0,0,0,0,0,0,270,8.2,0,0,32.2,77777,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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.0,-20.6,42,101800,120,1408,198,50,266,26,4900,13700,3800,450,280,7.7,0,0,32.2,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1977,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,-9.4,-20.6,40,101900,340,1408,199,203,618,54,21200,51100,8800,1010,280,6.7,0,0,24.1,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1977,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,-8.9,-20.0,41,102000,522,1408,202,359,773,74,37000,71900,10300,1410,330,7.7,0,0,24.1,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1977,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,-7.8,-20.0,37,102000,649,1408,205,475,844,88,49500,81500,11700,1770,290,8.8,0,0,24.1,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1977,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,-6.7,-18.9,38,102000,714,1408,209,532,866,95,55600,84700,12500,1980,310,8.8,0,0,24.1,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1977,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,-5.6,-18.9,35,102000,712,1408,213,530,867,95,55500,84800,12500,1970,290,7.7,0,0,24.1,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1977,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,-4.4,-18.3,33,102000,643,1408,217,465,836,87,48600,80700,11600,1740,280,9.3,0,0,24.1,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1977,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,-3.3,-18.3,31,101900,512,1408,221,348,767,73,36100,71100,10200,1380,280,7.7,0,0,24.1,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1977,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,-2.8,-18.3,29,102100,327,1408,222,190,605,52,20000,49400,8500,970,290,7.7,0,0,32.2,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1977,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,-18.9,28,102000,106,1350,229,48,162,33,4700,7400,4100,600,270,6.2,2,2,32.2,77777,9,999999999,40,0.0760,0,88,999.000,999.0,99.0 +1977,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,-3.3,-18.9,29,102100,0,0,227,0,0,0,0,0,0,0,290,4.6,3,2,32.2,77777,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-3.9,-19.4,29,102100,0,0,233,0,0,0,0,0,0,0,290,6.2,8,6,32.2,7620,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-4.4,-18.9,32,102100,0,0,238,0,0,0,0,0,0,0,290,5.7,9,8,32.2,7620,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-5.0,-18.3,35,102100,0,0,230,0,0,0,0,0,0,0,270,6.2,7,6,32.2,7620,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-5.6,-17.2,40,102100,0,0,225,0,0,0,0,0,0,0,270,5.2,5,4,32.2,77777,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-5.6,-16.1,44,102100,0,0,224,0,0,0,0,0,0,0,270,5.7,4,3,32.2,77777,9,999999999,50,0.0940,0,88,999.000,999.0,99.0 +1977,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,-6.7,-16.7,45,102100,0,0,211,0,0,0,0,0,0,0,230,5.2,0,0,32.2,77777,9,999999999,40,0.0940,0,88,999.000,999.0,99.0 +1977,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,-6.7,-15.6,50,102000,0,0,212,0,0,0,0,0,0,0,240,5.2,0,0,32.2,77777,9,999999999,50,0.0940,0,88,999.000,999.0,99.0 +1977,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,-7.2,-15.6,52,102000,0,0,210,0,0,0,0,0,0,0,230,5.2,8,0,32.2,77777,9,999999999,50,0.0940,0,88,999.000,999.0,99.0 +1977,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.0,52,101900,0,0,213,0,0,0,0,0,0,0,230,5.2,8,0,32.2,77777,9,999999999,50,0.0940,0,88,999.000,999.0,99.0 +1977,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,-6.7,-15.0,52,101900,0,0,234,0,0,0,0,0,0,0,230,5.2,8,8,32.2,1830,9,999999999,50,0.0940,0,88,999.000,999.0,99.0 +1977,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,-6.1,-14.4,52,101800,0,0,224,0,0,0,0,0,0,0,240,5.2,10,3,32.2,77777,9,999999999,50,0.0940,0,88,999.000,999.0,99.0 +1977,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,-5.6,-13.3,55,101700,0,0,251,0,0,0,0,0,0,0,200,5.2,10,10,32.2,1830,9,999999999,50,0.0940,0,88,999.000,999.0,99.0 +1977,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,-5.6,-12.8,57,101600,0,59,252,0,0,0,0,0,0,0,230,6.2,10,10,24.1,1830,9,999999999,50,0.0940,0,88,999.000,999.0,99.0 +1977,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,-5.0,-11.1,63,101500,125,1408,256,24,1,24,2700,0,2700,830,230,6.2,10,10,24.1,1680,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1977,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,-4.4,-10.0,66,101400,345,1408,259,102,8,100,11300,400,11200,3350,230,7.7,10,10,24.1,6100,9,999999999,60,0.0700,0,88,999.000,999.0,99.0 +1977,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,-8.9,66,101300,527,1408,264,160,14,154,17800,1000,17500,5620,230,6.7,10,10,24.1,6100,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1977,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,-1.1,-7.8,61,101100,655,1408,274,228,11,223,25500,1000,25000,8100,230,7.2,10,10,24.1,6100,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1977,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,0.0,-6.1,64,100900,720,1408,280,333,1,332,36400,100,36300,10530,200,6.7,10,10,14.5,6100,9,999999999,80,0.0700,0,88,999.000,999.0,99.0 +1977,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,0.6,-3.9,72,100600,718,1408,285,261,8,258,29300,700,28900,9400,230,7.2,10,10,4.8,490,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1977,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,1.1,-2.8,76,100400,649,1408,288,278,2,277,30400,200,30400,8910,220,7.2,10,10,4.8,490,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1977,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.7,-2.2,76,100300,518,1408,292,200,4,199,21900,300,21800,6370,230,8.2,10,10,3.2,460,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1977,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,-2.2,79,100200,333,1408,289,106,1,106,11700,100,11600,3390,230,7.7,10,10,3.2,430,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1977,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.7,-2.2,76,100000,111,1396,292,34,0,34,3700,0,3700,1050,200,5.7,10,10,16.1,640,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1977,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,1.7,-2.2,76,99900,0,0,292,0,0,0,0,0,0,0,220,6.7,10,10,12.9,520,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1977,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.7,-3.3,70,99900,0,0,290,0,0,0,0,0,0,0,240,7.7,10,10,16.1,730,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1977,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,1.1,-4.4,67,99800,0,0,273,0,0,0,0,0,0,0,240,6.7,9,8,19.3,3350,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1977,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,1.1,-4.4,67,99800,0,0,257,0,0,0,0,0,0,0,250,6.7,2,2,19.3,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1977,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,0.6,-5.0,67,99800,0,0,246,0,0,0,0,0,0,0,240,6.2,0,0,19.3,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1977,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,0.0,-5.0,69,99800,0,0,252,0,0,0,0,0,0,0,260,6.2,2,2,16.1,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1977,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,-0.6,-5.6,69,99900,0,0,241,0,0,0,0,0,0,0,250,6.7,0,0,19.3,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1977,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,-1.1,-6.1,69,99900,0,0,239,0,0,0,0,0,0,0,240,6.2,0,0,24.1,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1977,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,-1.1,-6.7,66,99900,0,0,239,0,0,0,0,0,0,0,240,6.2,0,0,24.1,77777,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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,-1.1,-7.2,64,99900,0,0,238,0,0,0,0,0,0,0,270,7.7,0,0,24.1,77777,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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,-0.6,-9.4,51,99900,0,0,238,0,0,0,0,0,0,0,270,6.7,1,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,-1.1,-10.0,51,99900,0,0,236,0,0,0,0,0,0,0,270,9.8,1,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,-1.1,-10.0,51,100000,0,0,236,0,0,0,0,0,0,0,270,8.2,1,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,-1.7,-10.0,53,100100,0,82,238,0,0,0,0,0,0,0,260,7.7,2,1,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,-1.7,-10.0,53,100100,130,1408,238,42,105,33,4500,4800,4100,600,290,6.2,2,1,24.1,77777,9,999999999,60,0.1210,0,88,999.000,999.0,99.0 +1977,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,-1.7,-10.0,53,100100,351,1408,241,186,364,96,19200,30000,11700,1800,300,8.8,3,2,24.1,77777,9,999999999,60,0.1210,0,88,999.000,999.0,99.0 +1977,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,-1.1,-10.0,51,100200,533,1408,246,311,392,164,33000,38100,18500,3480,290,7.7,6,3,24.1,77777,9,999999999,60,0.1210,0,88,999.000,999.0,99.0 +1977,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.6,-11.1,45,100200,661,1408,250,361,150,291,39500,15100,32400,7640,300,8.2,8,5,24.1,7620,9,999999999,60,0.1210,0,88,999.000,999.0,99.0 +1977,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,0.0,-10.6,45,100100,726,1408,251,519,491,268,54900,51000,28500,6480,300,6.7,9,4,24.1,77777,9,999999999,60,0.1210,0,88,999.000,999.0,99.0 +1977,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,1.1,-10.6,42,100000,724,1408,253,543,646,213,56600,64800,23100,4670,300,6.7,5,3,24.1,77777,9,999999999,60,0.1210,0,88,999.000,999.0,99.0 +1977,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,1.7,-10.0,42,100000,655,1408,258,430,525,188,44800,51800,20600,3940,280,7.2,4,4,24.1,77777,9,999999999,60,0.1210,0,88,999.000,999.0,99.0 +1977,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,1.7,-10.0,42,100000,524,1408,258,354,494,172,36100,46300,18800,3470,310,4.1,4,4,24.1,77777,9,999999999,60,0.1210,0,88,999.000,999.0,99.0 +1977,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,1.7,-9.4,44,100100,339,1408,259,162,243,104,17000,20000,12200,2090,300,6.2,4,4,32.2,77777,9,999999999,60,0.1210,0,88,999.000,999.0,99.0 +1977,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,1.1,-9.4,46,100100,117,1408,268,29,38,26,3200,1900,3100,540,300,5.7,8,8,32.2,1520,9,999999999,60,0.1210,0,88,999.000,999.0,99.0 +1977,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,1.1,-10.0,44,100100,0,12,258,0,0,0,0,0,0,0,280,4.1,5,5,32.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,0.6,-10.0,45,100200,0,0,265,0,0,0,0,0,0,0,270,3.6,10,8,32.2,7620,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,0.6,-10.0,45,100200,0,0,265,0,0,0,0,0,0,0,290,3.1,10,8,32.2,7620,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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.6,-10.0,45,100200,0,0,265,0,0,0,0,0,0,0,290,3.1,10,8,32.2,7620,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,-10.0,45,100200,0,0,279,0,0,0,0,0,0,0,280,3.6,10,10,32.2,2130,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,-0.6,-8.3,56,100200,0,0,276,0,0,0,0,0,0,0,240,3.6,10,10,32.2,1680,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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,-0.6,-8.9,54,100200,0,0,275,0,0,0,0,0,0,0,230,3.6,10,10,24.1,910,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,2,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-8.3,56,100100,0,0,276,0,0,0,0,0,0,0,240,5.2,10,10,24.1,910,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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,-1.7,-7.8,63,100100,0,0,272,0,0,0,0,0,0,0,190,3.1,10,10,24.1,3050,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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,-2.2,-7.8,66,100000,0,0,262,0,0,0,0,0,0,0,200,3.1,10,9,24.1,3050,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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,-3.3,-7.8,72,99900,0,0,258,0,0,0,0,0,0,0,180,2.1,10,9,24.1,6100,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,2,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-7.2,72,99900,0,0,268,0,0,0,0,0,0,0,180,2.1,10,10,20.9,1520,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,2,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-6.7,75,99800,0,0,268,0,0,0,0,0,0,0,180,1.5,10,10,6.4,1160,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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,-2.2,-6.1,75,99800,1,129,271,0,0,0,0,0,0,0,120,3.1,10,10,6.4,1160,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1977,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,-2.8,-6.7,75,99800,134,1407,261,50,17,48,5400,1100,5300,1040,120,3.1,10,9,8.0,1520,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1977,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,-1.7,-5.6,75,99700,356,1407,274,138,4,137,14900,300,14900,4020,110,3.6,10,10,3.2,1220,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1977,2,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-4.4,78,99600,538,1407,270,163,58,141,17900,5500,15800,3990,100,5.2,10,9,3.2,1220,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1977,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,-1.1,-4.4,78,99500,667,1407,278,174,26,162,19200,2600,18000,4960,100,5.2,10,10,9.7,340,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1977,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,-0.6,-4.4,75,99400,732,1407,280,186,11,181,21500,900,21100,7590,80,5.2,10,10,4.0,210,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1977,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,-0.6,-4.4,75,99300,730,1407,280,324,12,318,35700,1200,35000,10520,60,4.6,10,10,3.2,310,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1977,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,-0.6,-3.3,82,99200,661,1407,281,217,1,216,24300,100,24200,8010,60,4.6,10,10,1.3,180,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1977,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,-0.6,-3.9,78,99200,530,1407,280,168,9,164,18700,700,18400,5860,30,6.7,10,10,1.6,610,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1977,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,-0.6,-3.9,78,99200,345,1407,280,124,4,123,13500,200,13400,3750,10,3.6,10,10,1.6,180,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1977,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,-0.6,-3.9,78,99100,122,1407,280,35,2,35,3900,0,3900,1070,360,4.6,10,10,1.6,610,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1977,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,-0.6,-4.4,75,99200,0,35,280,0,0,0,0,0,0,0,360,4.1,10,10,4.0,370,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1977,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,-0.6,-5.0,72,99200,0,0,279,0,0,0,0,0,0,0,360,6.2,10,10,1.6,310,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1977,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,-1.7,-5.0,78,99300,0,0,275,0,0,0,0,0,0,0,350,5.7,10,10,2.4,240,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1977,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.7,-6.7,69,99300,0,0,273,0,0,0,0,0,0,0,350,5.7,10,10,6.4,610,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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.2,-7.2,69,99400,0,0,270,0,0,0,0,0,0,0,350,6.7,10,10,6.4,310,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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,-2.8,-7.2,72,99400,0,0,268,0,0,0,0,0,0,0,340,5.2,10,10,6.4,610,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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,-7.8,69,99500,0,0,267,0,0,0,0,0,0,0,330,5.7,10,10,9.7,1520,9,999999999,69,0.0950,0,88,999.000,999.0,99.0 +1977,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,-7.8,69,99600,0,0,267,0,0,0,0,0,0,0,320,6.2,10,10,6.4,1070,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1977,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.8,-6.7,75,99700,0,0,268,0,0,0,0,0,0,0,330,5.7,10,10,4.8,520,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1977,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,-4.4,-9.4,68,99800,0,0,252,0,0,0,0,0,0,0,310,8.2,10,9,16.1,7620,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1977,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,-5.6,-11.1,65,99900,0,0,246,0,0,0,0,0,0,0,310,8.2,10,9,16.1,7620,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1977,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,-5.6,-12.2,60,100000,0,0,218,0,0,0,0,0,0,0,300,7.7,2,0,19.3,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-6.7,-12.8,62,100100,0,0,214,0,0,0,0,0,0,0,300,8.8,2,0,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-6.7,-13.9,57,100300,1,152,221,0,0,0,0,0,0,0,300,9.3,6,2,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-6.7,-14.4,54,100400,139,1407,224,51,31,48,5600,2000,5400,1050,290,7.2,8,4,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-6.7,-14.4,54,100500,361,1407,213,204,455,88,21300,38000,11500,1630,320,8.2,3,0,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-7.2,-15.0,54,100500,544,1407,211,353,645,106,36700,60300,13300,2020,310,6.2,0,0,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-6.1,-14.4,52,100600,673,1407,215,472,728,126,49400,70900,15300,2580,280,9.3,0,0,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-5.6,-15.0,48,100600,738,1407,216,534,763,136,56100,75300,16400,2920,300,8.2,0,0,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-5.0,-14.4,48,100600,736,1407,219,528,755,135,55400,74500,16300,2890,290,8.8,0,0,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-3.9,-14.4,44,100600,667,1407,222,467,726,125,48900,70600,15200,2550,290,8.2,0,0,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-3.3,-14.4,42,100600,536,1407,224,344,638,104,35800,59500,13100,1980,300,10.3,0,0,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-4.4,-15.0,44,100700,351,1407,220,189,467,75,19500,38400,9900,1320,270,10.3,0,0,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-15.6,46,100700,127,1407,216,43,126,32,4600,5600,4100,580,300,11.3,0,0,24.1,77777,9,999999999,50,0.1490,0,88,999.000,999.0,99.0 +1977,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,-5.6,-15.6,46,100900,0,82,216,0,0,0,0,0,0,0,280,9.3,0,0,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-6.7,-16.1,47,100900,0,0,212,0,0,0,0,0,0,0,300,8.8,0,0,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-7.2,-16.7,47,101000,0,0,210,0,0,0,0,0,0,0,290,8.8,0,0,24.1,77777,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,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,-7.8,-17.2,47,101100,0,0,207,0,0,0,0,0,0,0,290,7.2,0,0,24.1,77777,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,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,-7.8,-17.2,47,101100,0,0,207,0,0,0,0,0,0,0,270,7.7,0,0,24.1,77777,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,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,-8.3,-17.8,47,101100,0,0,205,0,0,0,0,0,0,0,300,6.2,0,0,24.1,77777,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,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,-8.3,-17.8,47,101200,0,0,205,0,0,0,0,0,0,0,280,7.7,0,0,24.1,77777,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,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,-8.3,-17.8,47,101200,0,0,205,0,0,0,0,0,0,0,280,7.7,0,0,24.1,77777,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,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,-8.3,-17.2,49,101200,0,0,222,0,0,0,0,0,0,0,280,7.2,7,7,24.1,2440,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.7,49,101200,0,0,240,0,0,0,0,0,0,0,290,5.7,10,10,24.1,2440,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.7,49,101200,0,0,240,0,0,0,0,0,0,0,290,5.2,10,10,24.1,2440,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,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,-7.8,-17.2,47,101200,0,0,239,0,0,0,0,0,0,0,300,6.7,10,10,24.1,2440,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,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,-7.8,-17.2,47,101300,0,0,239,0,0,0,0,0,0,0,300,6.2,10,10,24.1,2440,9,999999999,40,0.0960,0,88,999.000,999.0,99.0 +1977,2,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-16.7,47,101300,2,176,242,0,0,0,0,0,0,0,290,6.2,10,10,24.1,2440,9,999999999,40,0.1130,0,88,999.000,999.0,99.0 +1977,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,-7.2,-16.7,47,101400,144,1406,242,50,2,50,5400,0,5400,1410,310,7.7,10,10,24.1,1980,9,999999999,40,0.1130,0,88,999.000,999.0,99.0 +1977,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,-7.2,-17.2,45,101400,367,1406,241,101,7,100,11400,400,11300,3470,310,6.2,10,10,24.1,1980,9,999999999,40,0.1130,0,88,999.000,999.0,99.0 +1977,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,-7.2,-16.1,49,101500,550,1406,231,324,303,206,33800,29600,22200,4620,300,8.2,8,8,24.1,1980,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1977,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,-16.1,47,101500,679,1406,219,444,551,180,46700,54800,20100,3790,320,7.2,2,2,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1977,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,-15.0,48,101400,744,1406,216,542,805,118,57500,80100,14900,2600,320,7.7,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1977,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,-4.4,-14.4,46,101400,743,1406,221,539,803,118,57300,79900,14900,2600,300,6.2,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1977,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,-3.9,-14.4,44,101400,674,1406,222,474,768,109,50200,75400,14000,2290,290,8.2,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1977,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,-13.9,43,101400,542,1406,226,360,706,92,38000,66500,12300,1800,310,6.2,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1977,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,-2.8,-13.9,43,101500,357,1406,226,202,543,67,21100,45300,9500,1220,310,6.2,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1977,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,-2.8,-13.9,43,101500,133,1406,226,50,198,32,5300,9900,4300,570,290,7.7,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1977,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.3,-14.4,42,101600,1,105,224,0,0,0,0,0,0,0,300,6.2,0,0,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-3.9,-14.4,44,101700,0,0,222,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-4.4,-14.4,46,101700,0,0,221,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-15.0,48,101800,0,0,216,0,0,0,0,0,0,0,310,6.2,0,0,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-6.1,-15.6,48,101900,0,0,214,0,0,0,0,0,0,0,340,6.2,0,0,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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.7,-15.6,50,102000,0,0,212,0,0,0,0,0,0,0,330,6.7,0,0,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-7.2,-16.1,49,102100,0,0,210,0,0,0,0,0,0,0,310,7.2,0,0,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-7.2,-16.1,49,102000,0,0,210,0,0,0,0,0,0,0,330,7.2,0,0,24.1,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.1,52,102100,0,0,208,0,0,0,0,0,0,0,320,6.7,0,0,24.1,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.1,52,102100,0,0,208,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-7.2,-16.1,49,102200,0,0,210,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.7,49,102100,0,0,208,0,0,0,0,0,0,0,290,6.7,0,0,24.1,77777,9,999999999,40,0.0970,0,88,999.000,999.0,99.0 +1977,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.8,-16.7,49,102200,0,0,208,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,40,0.0970,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.7,49,102200,2,199,208,2,4,1,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1977,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,-7.2,-16.1,49,102300,150,1406,210,61,275,33,6300,15700,4600,570,290,7.7,0,0,24.1,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1977,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,-6.7,-15.6,50,102400,373,1406,212,223,607,64,23300,51600,9600,1190,310,7.7,0,0,24.1,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1977,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,-5.6,-14.4,50,102400,556,1406,217,380,751,86,40300,71400,11900,1710,310,8.2,0,0,24.1,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1977,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,-3.9,-12.2,53,102400,685,1406,224,496,817,101,51300,79200,12600,1970,310,6.2,0,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,-2.2,-12.2,47,102400,751,1406,230,557,844,109,57800,82700,13500,2220,300,8.2,0,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,-1.1,-10.6,49,102400,749,1406,235,555,842,109,57600,82500,13500,2210,290,7.7,0,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,0.6,-10.6,44,102300,680,1406,241,490,813,101,50800,78700,12600,1960,300,6.7,0,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,0.6,-11.1,42,102400,548,1406,240,370,741,85,39300,70200,11800,1690,310,7.2,0,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,0.6,-11.7,40,102400,363,1406,240,211,589,62,22200,49600,9300,1150,310,6.7,0,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,0.0,-12.2,40,102500,139,1406,237,53,244,30,5500,13400,4100,520,310,5.7,0,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1977,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,-0.6,-13.3,38,102500,1,129,234,1,1,1,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1977,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,-1.1,-13.9,38,102600,0,0,232,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-1.7,-14.4,37,102600,0,0,230,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-2.2,-14.4,39,102700,0,0,228,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-2.8,-14.4,41,102700,0,0,226,0,0,0,0,0,0,0,270,4.1,0,0,24.1,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-2.8,-13.9,43,102700,0,0,226,0,0,0,0,0,0,0,280,4.6,0,0,24.1,77777,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-3.9,-13.9,46,102600,0,0,238,0,0,0,0,0,0,0,300,5.2,7,6,24.1,3050,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-4.4,-13.9,48,102600,0,0,243,0,0,0,0,0,0,0,240,2.6,9,8,24.1,2130,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-5.0,-13.3,52,102600,0,0,246,0,0,0,0,0,0,0,220,3.1,9,9,24.1,2130,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-5.6,-13.3,55,102600,0,0,239,0,0,0,0,0,0,0,220,4.1,10,8,24.1,2130,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-5.0,-13.3,52,102600,0,0,253,0,0,0,0,0,0,0,220,4.1,10,10,24.1,2130,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,102600,0,0,253,0,0,0,0,0,0,0,220,4.6,10,10,24.1,2440,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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,-5.0,-13.3,52,102500,0,0,233,0,0,0,0,0,0,0,240,5.7,7,5,24.1,2440,9,999999999,50,0.0970,0,88,999.000,999.0,99.0 +1977,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.0,-13.3,52,102500,3,222,231,1,2,0,0,0,0,0,230,4.1,5,4,24.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-6.1,-12.8,60,102600,155,1405,224,51,77,43,5600,4500,5100,900,230,5.2,7,2,16.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-4.4,-12.2,55,102600,378,1405,230,232,438,116,23800,37100,13800,2230,240,5.2,9,2,16.1,77777,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1977,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,-12.8,48,102500,562,1405,233,388,500,189,39500,47700,20300,3880,250,6.2,9,2,16.1,77777,9,999999999,50,0.0960,0,88,999.000,999.0,99.0 +1977,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,-1.1,-11.7,45,102400,691,1405,242,541,654,221,55700,65000,23600,4800,240,8.2,10,2,16.1,77777,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1977,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,0.0,-11.1,43,102400,757,1405,249,568,574,260,58200,57700,27000,5950,250,7.2,10,3,16.1,77777,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1977,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,1.1,-11.1,40,102200,755,1405,262,510,342,328,53300,35600,34100,8400,230,7.7,10,7,16.1,7620,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1977,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,1.1,-10.6,42,102100,686,1405,262,365,175,280,39100,17700,30400,6930,240,7.7,10,7,16.1,7620,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1977,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,-10.0,40,102100,554,1405,264,301,179,231,32100,17400,25200,5410,220,7.7,10,6,19.3,7620,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1977,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,1.7,-8.9,46,102000,369,1405,259,217,369,122,22800,31500,14500,2510,200,6.7,8,4,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1977,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,1.7,-9.4,44,102000,144,1405,259,43,75,36,4800,4200,4300,750,220,6.7,6,4,24.1,7620,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1977,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,0.6,-9.4,48,101900,2,176,256,0,0,0,0,0,0,0,210,7.7,7,5,24.1,6100,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1977,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,0.0,-9.4,49,101900,0,0,256,0,0,0,0,0,0,0,200,6.7,7,6,24.1,4880,9,999999999,60,0.0970,0,88,999.000,999.0,99.0 +1977,2,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.3,54,101900,0,0,278,0,0,0,0,0,0,0,200,6.7,10,10,24.1,2440,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1977,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.0,-8.3,54,101900,0,0,278,0,0,0,0,0,0,0,230,8.2,10,10,24.1,2440,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1977,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,0.6,-7.8,54,101900,0,0,281,0,0,0,0,0,0,0,240,7.7,10,10,24.1,2440,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1977,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,0.6,-7.8,54,101800,0,0,281,0,0,0,0,0,0,0,240,7.2,10,10,24.1,2440,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1977,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,0.6,-7.2,56,101800,0,0,282,0,0,0,0,0,0,0,230,6.2,10,10,24.1,2440,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1977,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,1.1,-7.2,54,101800,0,0,284,0,0,0,0,0,0,0,240,6.2,10,10,24.1,1520,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,1.1,-7.2,54,101800,0,0,284,0,0,0,0,0,0,0,240,5.7,10,10,24.1,1520,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,1.1,-7.2,54,101700,0,0,284,0,0,0,0,0,0,0,230,5.2,10,10,24.1,1490,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,0.6,-7.2,56,101700,0,0,282,0,0,0,0,0,0,0,240,4.1,10,10,24.1,2440,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,0.6,-7.2,56,101700,0,0,282,0,0,0,0,0,0,0,230,4.1,10,10,24.1,2440,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,0.0,-7.2,59,101800,0,0,279,0,0,0,0,0,0,0,230,4.6,10,10,24.1,2130,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,-6.7,59,101800,4,269,282,1,1,1,0,0,0,0,240,4.1,10,10,16.1,1490,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1977,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.7,-7.2,52,101900,161,1405,286,49,3,49,5400,0,5400,1480,290,7.7,10,10,3.2,370,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1977,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,-0.6,-4.4,75,102000,384,1405,280,161,5,160,17400,400,17300,4540,240,4.6,10,10,8.0,1010,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1977,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,1.1,-5.0,64,102000,568,1405,259,395,580,163,41100,55600,18500,3280,300,4.1,3,3,12.9,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1977,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,2.8,-5.0,57,102000,697,1405,265,576,860,152,59700,83500,18100,3070,310,5.7,3,3,12.9,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1977,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,3.9,-5.6,51,102000,763,1405,273,480,439,243,51400,46000,26300,5810,320,6.7,5,5,14.5,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1977,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,4.4,-5.6,49,102000,762,1405,273,548,578,237,56900,58300,25100,5380,330,6.7,4,4,16.1,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1977,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,5.0,-5.6,47,102000,692,1405,270,410,518,156,43800,51800,18200,3250,320,6.2,2,2,16.1,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1977,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,5.0,-5.6,47,102100,560,1405,262,395,833,66,41900,79200,10100,1380,320,5.7,1,0,16.1,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1977,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,5.0,-5.6,47,102100,375,1405,262,231,715,44,24500,62300,7900,910,330,5.2,0,0,20.9,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1977,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,4.4,-6.1,47,102200,150,1405,259,68,436,24,7100,27600,4200,450,320,4.1,0,0,20.9,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1977,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,3.9,-6.1,48,102200,2,199,257,6,13,2,0,0,0,0,320,3.1,0,0,20.9,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1977,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,3.3,-6.7,48,102300,0,0,254,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,2.2,-7.2,50,102400,0,0,250,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,1.7,-7.8,50,102400,0,0,247,0,0,0,0,0,0,0,310,2.6,0,0,24.1,77777,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,1.7,-7.8,50,102400,0,0,247,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,0.0,-7.8,56,102500,0,0,241,0,0,0,0,0,0,0,300,1.0,0,0,24.1,77777,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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.7,-6.7,69,102500,0,0,236,0,0,0,0,0,0,0,220,1.0,0,0,24.1,77777,9,999999999,69,0.0980,0,88,999.000,999.0,99.0 +1977,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,-1.7,-6.7,69,102400,0,0,236,0,0,0,0,0,0,0,160,1.5,0,0,19.3,77777,9,999999999,69,0.0990,0,88,999.000,999.0,99.0 +1977,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,-1.1,-6.1,69,102400,0,0,276,0,0,0,0,0,0,0,190,2.6,10,10,16.1,1520,9,999999999,80,0.0990,0,88,999.000,999.0,99.0 +1977,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,0.0,-6.1,64,102400,0,0,280,0,0,0,0,0,0,0,240,3.6,10,10,16.1,1830,9,999999999,80,0.0990,0,88,999.000,999.0,99.0 +1977,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,0.0,-6.7,61,102400,0,0,280,0,0,0,0,0,0,0,240,4.6,10,10,16.1,1830,9,999999999,69,0.0990,0,88,999.000,999.0,99.0 +1977,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,-1.1,-6.7,66,102400,0,0,251,0,0,0,0,0,0,0,190,2.6,6,4,16.1,1830,9,999999999,69,0.0990,0,88,999.000,999.0,99.0 +1977,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,-1.7,-7.2,66,102300,0,0,248,0,0,0,0,0,0,0,190,2.1,4,4,16.1,77777,9,999999999,69,0.0990,0,88,999.000,999.0,99.0 +1977,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,-2.2,-7.2,69,102300,5,293,244,1,1,1,0,0,0,0,190,3.1,3,3,16.1,77777,9,999999999,69,0.1360,0,88,999.000,999.0,99.0 +1977,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,-1.1,-6.1,69,102300,166,1404,268,50,11,49,5500,100,5500,1500,170,3.6,10,9,8.0,1310,9,999999999,80,0.1360,0,88,999.000,999.0,99.0 +1977,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,-0.6,-5.6,69,102300,390,1404,278,80,10,77,9100,500,9000,2970,170,3.6,10,10,11.3,1520,9,999999999,80,0.1360,0,88,999.000,999.0,99.0 +1977,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.2,-4.4,62,102100,574,1404,252,378,658,112,39400,62200,13900,2160,190,5.2,2,0,12.9,77777,9,999999999,80,0.1360,0,88,999.000,999.0,99.0 +1977,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,3.9,-3.9,57,102000,703,1404,270,505,582,215,52300,58100,23100,4670,210,7.2,6,3,12.9,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1977,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,4.4,-3.3,57,101900,770,1404,283,377,154,293,40700,15900,32000,7580,210,7.7,10,7,12.9,4270,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1977,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,5.0,-2.8,58,101700,768,1404,276,518,530,230,54000,53600,24600,5220,200,6.2,4,3,14.5,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1977,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,6.1,-2.8,53,101600,699,1404,280,471,577,187,49700,57700,20800,3990,220,6.7,4,3,17.7,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1977,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,6.7,-1.1,58,101500,567,1404,284,318,383,165,34000,37900,18600,3500,200,6.2,4,3,19.3,77777,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1977,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,6.1,-0.6,63,101400,381,1404,285,188,337,98,19600,28700,11800,1840,200,5.2,5,4,17.7,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1977,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,6.1,-0.6,63,101300,155,1404,280,53,122,40,5600,6300,4900,740,200,5.7,3,2,19.3,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1977,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,4.4,-1.1,68,101300,3,222,279,0,0,0,0,0,0,0,190,4.6,5,5,19.3,77777,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1977,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,3.9,-1.1,70,101300,0,0,302,0,0,0,0,0,0,0,190,4.6,10,10,16.1,3660,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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.1,63,101300,0,0,310,0,0,0,0,0,0,0,220,5.2,10,10,16.1,3350,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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,6.1,-1.7,58,101200,0,0,281,0,0,0,0,0,0,0,240,5.7,3,3,16.1,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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,6.1,-1.7,58,101200,0,0,284,0,0,0,0,0,0,0,250,4.6,4,4,19.3,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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,6.7,-1.7,56,101300,0,0,291,0,0,0,0,0,0,0,250,5.7,6,6,19.3,1980,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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,8.3,-1.7,50,101300,0,0,301,0,0,0,0,0,0,0,280,4.6,7,7,12.9,1520,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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.7,-2.2,53,101400,0,0,272,0,0,0,0,0,0,0,300,5.7,0,0,12.9,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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,-2.2,58,101400,0,0,267,0,0,0,0,0,0,0,290,6.2,0,0,12.9,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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,5.0,-2.2,60,101400,0,0,265,0,0,0,0,0,0,0,290,5.7,0,0,12.9,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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,5.0,-2.8,58,101500,0,0,264,0,0,0,0,0,0,0,290,6.2,0,0,16.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1977,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,4.4,-2.8,60,101500,0,0,273,0,0,0,0,0,0,0,300,5.2,3,3,16.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1977,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,4.4,-2.8,60,101500,0,0,262,0,0,0,0,0,0,0,300,3.6,0,0,16.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1977,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,4.4,-2.8,60,101500,6,316,271,4,12,2,0,0,0,0,290,2.6,2,2,12.9,77777,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,5.0,-2.8,58,101600,172,1404,273,72,162,53,7600,9000,6500,1030,280,4.1,10,2,16.1,77777,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,5.0,-2.8,58,101800,396,1404,305,114,11,111,12700,600,12500,3870,280,5.2,10,10,16.1,1010,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,5.6,-2.2,58,101800,580,1404,300,217,71,188,23800,6900,21000,5190,280,4.1,9,9,16.1,880,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,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,-1.7,62,101700,710,1404,279,365,255,237,39700,26100,26500,5930,240,3.6,10,4,16.1,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,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,6.7,-2.2,53,101600,776,1404,288,573,694,192,59000,67700,21400,4010,260,4.1,9,5,16.1,7620,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,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,7.2,-2.2,51,101500,774,1404,288,519,510,240,53900,51600,25400,5500,280,4.1,7,4,16.1,7620,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,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,7.8,-2.8,48,101400,705,1404,302,344,185,252,37300,18900,27800,6290,300,4.1,8,8,20.9,1220,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,6.7,-2.2,53,101500,573,1404,313,155,16,149,17700,1200,17200,5780,250,4.1,10,10,22.5,1100,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,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,6.7,-2.8,51,101400,387,1404,313,92,5,91,10400,300,10400,3350,290,3.6,10,10,24.1,1160,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,6.7,-2.8,51,101400,161,1404,313,30,2,30,3400,0,3400,1060,260,3.1,10,10,16.1,1160,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,6.1,-2.8,53,101400,4,246,310,0,0,0,0,0,0,0,270,2.6,10,10,16.1,1160,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,5.0,-2.8,58,101400,0,0,305,0,0,0,0,0,0,0,280,4.1,10,10,16.1,1160,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1977,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,4.4,-2.2,62,101400,0,0,303,0,0,0,0,0,0,0,230,3.1,10,10,19.3,1070,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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,3.9,-2.8,62,101300,0,0,300,0,0,0,0,0,0,0,190,3.1,10,10,19.3,1100,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1977,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,2.8,-2.2,70,101200,0,0,296,0,0,0,0,0,0,0,170,3.1,10,10,19.3,1070,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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.8,-2.2,70,101200,0,0,296,0,0,0,0,0,0,0,190,2.6,10,10,19.3,1070,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1977,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,-2.8,70,101200,0,0,293,0,0,0,0,0,0,0,150,3.1,10,10,16.1,1160,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1977,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,2.2,-2.2,73,101000,0,0,294,0,0,0,0,0,0,0,170,3.1,10,10,12.9,1010,9,999999999,100,0.1000,0,88,999.000,999.0,99.0 +1977,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,2.2,-2.2,73,101000,0,0,294,0,0,0,0,0,0,0,150,2.1,10,10,9.7,730,9,999999999,100,0.1000,0,88,999.000,999.0,99.0 +1977,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,1.7,-2.2,76,100900,0,0,292,0,0,0,0,0,0,0,130,2.1,10,10,9.7,670,9,999999999,100,0.1000,0,88,999.000,999.0,99.0 +1977,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,1.7,-1.7,79,100800,0,0,292,0,0,0,0,0,0,0,120,3.6,10,10,9.7,610,9,999999999,100,0.1000,0,88,999.000,999.0,99.0 +1977,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,1.1,-2.2,79,100700,0,0,289,0,0,0,0,0,0,0,110,3.6,10,10,6.4,490,9,999999999,100,0.1000,0,88,999.000,999.0,99.0 +1977,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,1.7,-1.7,79,100600,0,0,292,0,0,0,0,0,0,0,110,3.1,10,10,6.4,460,9,999999999,100,0.1000,0,88,999.000,999.0,99.0 +1977,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,1.7,-1.7,79,100500,7,362,292,0,0,0,0,0,0,0,130,4.1,10,10,8.0,430,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1977,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,1.7,-1.1,82,100400,178,1403,293,44,1,44,4900,0,4900,1450,130,3.1,10,10,3.2,120,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1977,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,2.2,-0.6,82,100200,402,1403,295,119,0,119,13200,0,13200,4080,150,3.1,10,10,1.3,60,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1977,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,-0.6,82,100100,587,1403,295,130,3,129,15000,200,14900,5280,100,4.1,10,10,0.6,30,9,999999999,100,0.1210,0,88,999.000,999.0,99.0 +1977,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,3.9,1.1,82,100100,716,1403,305,147,1,146,17100,100,17100,6390,180,3.1,10,10,2.4,120,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1977,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,3.9,1.1,82,99900,783,1403,305,181,0,181,21000,0,21000,7870,160,2.6,10,10,4.8,120,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1977,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,3.3,1.1,86,99700,781,1403,302,175,1,174,20400,100,20300,7630,130,2.6,10,10,4.0,90,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1977,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,3.9,1.7,86,99600,711,1403,305,152,1,152,17800,100,17700,6570,270,2.1,10,10,0.6,30,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1977,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,5.0,2.8,86,99500,579,1403,311,132,0,132,15100,0,15100,5330,150,1.5,10,10,2.4,120,9,999999999,129,0.1210,0,88,999.000,999.0,99.0 +1977,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,4.4,1.7,82,99500,393,1403,307,121,0,121,13400,0,13400,4060,300,3.1,10,10,0.4,30,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1977,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,3.3,1.7,89,99500,166,1403,303,50,0,50,5500,0,5500,1520,300,3.6,10,10,0.2,30,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1977,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,3.3,0.6,82,99500,5,292,301,3,0,3,0,0,0,0,290,4.6,10,10,3.2,90,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1977,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,3.9,0.6,79,99500,0,0,304,0,0,0,0,0,0,0,300,4.1,10,10,4.8,180,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1977,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,3.9,0.6,79,99500,0,0,304,0,0,0,0,0,0,0,280,2.6,10,10,4.8,180,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1977,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,4.4,0.6,76,99600,0,0,306,0,0,0,0,0,0,0,280,4.6,10,10,11.3,180,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1977,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,0.6,79,99600,0,0,304,0,0,0,0,0,0,0,280,3.6,10,10,11.3,1680,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1977,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,4.4,0.6,76,99600,0,0,306,0,0,0,0,0,0,0,280,5.7,10,10,17.7,1830,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1977,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,5.0,-1.1,65,99700,0,0,275,0,0,0,0,0,0,0,260,7.2,2,2,19.3,77777,9,999999999,100,0.1000,0,88,999.000,999.0,99.0 +1977,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,-1.1,70,99800,0,0,262,0,0,0,0,0,0,0,270,6.2,0,0,16.1,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1977,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,3.3,-2.8,65,99900,0,0,258,0,0,0,0,0,0,0,270,5.7,0,0,16.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1977,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.3,-2.8,65,99900,0,0,258,0,0,0,0,0,0,0,270,6.7,0,0,16.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1977,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.8,-3.9,62,100000,0,0,255,0,0,0,0,0,0,0,250,6.2,0,0,19.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1977,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,-3.9,67,100100,0,0,251,0,0,0,0,0,0,0,240,6.2,0,0,19.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1977,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.7,-3.9,67,100200,0,0,251,0,0,0,0,0,0,0,250,6.2,0,0,19.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1977,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.7,-4.4,64,100300,8,386,255,6,25,3,0,0,0,0,250,5.7,1,1,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,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,2.2,-4.4,62,100500,184,1403,263,78,268,44,8200,16100,6100,790,250,7.2,3,3,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,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,3.3,-4.4,57,100400,409,1403,272,239,484,100,25100,42300,12800,1870,260,7.7,6,5,24.1,5180,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,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,-5.0,51,100500,593,1403,269,402,668,122,41700,63400,14800,2350,250,6.7,2,2,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,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,5.0,-5.0,49,100500,723,1403,278,478,427,259,50600,44300,27600,6210,280,6.7,5,5,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,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,5.6,-6.1,43,100500,789,1403,279,447,316,270,47600,33300,28800,6670,280,10.3,5,5,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,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,5.6,-6.1,43,100500,787,1403,272,614,901,112,64100,88800,14000,2360,270,7.7,2,2,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1977,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,6.1,-7.2,38,100500,718,1403,273,527,797,122,55700,78800,15200,2620,270,6.2,2,2,24.1,77777,9,999999999,69,0.0590,0,88,999.000,999.0,99.0 +1977,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,6.1,-7.2,38,100600,585,1403,269,386,760,72,40700,72700,10300,1490,300,7.2,1,1,24.1,77777,9,999999999,69,0.0590,0,88,999.000,999.0,99.0 +1977,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,6.7,-7.2,36,100600,399,1403,267,246,703,50,25900,62100,8200,1000,300,5.2,0,0,24.1,77777,9,999999999,69,0.0590,0,88,999.000,999.0,99.0 +1977,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,6.1,-7.2,38,100700,172,1403,264,78,415,29,8200,25900,5100,530,260,4.6,0,0,24.1,77777,9,999999999,69,0.0590,0,88,999.000,999.0,99.0 +1977,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,6.1,-7.8,37,100700,6,316,264,6,22,3,0,0,0,0,270,4.6,0,0,24.1,77777,9,999999999,69,0.0590,0,88,999.000,999.0,99.0 +1977,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,5.0,-7.2,41,100800,0,0,265,0,0,0,0,0,0,0,270,4.1,1,1,24.1,77777,9,999999999,69,0.1010,0,88,999.000,999.0,99.0 +1977,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,3.3,-6.7,48,100900,0,0,254,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,69,0.1010,0,88,999.000,999.0,99.0 +1977,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,2.8,-6.1,52,100900,0,0,261,0,0,0,0,0,0,0,260,3.6,3,2,24.1,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1977,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,3.3,-5.6,53,101000,0,0,295,0,0,0,0,0,0,0,250,5.2,10,10,24.1,2440,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1977,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,2.8,-5.6,55,101000,0,0,293,0,0,0,0,0,0,0,240,4.6,10,10,24.1,1160,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1977,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,2.2,-5.6,57,101000,0,0,290,0,0,0,0,0,0,0,240,4.6,10,10,19.3,2440,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1977,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,2.2,-5.6,57,101100,0,0,290,0,0,0,0,0,0,0,240,4.6,10,10,19.3,3050,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1977,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,1.7,-5.6,59,101100,0,0,288,0,0,0,0,0,0,0,240,3.6,10,10,19.3,3050,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1977,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,1.7,-5.0,62,101000,0,0,289,0,0,0,0,0,0,0,190,2.6,10,10,19.3,2440,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1977,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,1.7,-5.0,62,101000,0,0,289,0,0,0,0,0,0,0,170,2.6,10,10,19.3,1680,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1977,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,1.1,-3.9,70,100900,0,0,287,0,0,0,0,0,0,0,170,2.1,10,10,19.3,1520,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1977,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,1.7,-3.9,67,101000,0,0,290,0,0,0,0,0,0,0,180,4.1,10,10,19.3,1010,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1977,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,1.7,-3.9,67,101000,10,409,290,3,0,3,0,0,0,0,180,3.1,10,10,11.3,460,9,999999999,89,0.0450,0,88,999.000,999.0,99.0 +1977,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,-3.3,70,101000,190,1402,290,55,2,54,6000,0,6000,1700,200,2.1,10,10,8.0,1520,9,999999999,89,0.0450,0,88,999.000,999.0,99.0 +1977,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.1,-2.8,76,101000,415,1402,288,151,15,147,16600,1100,16300,4670,170,2.1,10,10,2.4,150,9,999999999,89,0.0450,0,88,999.000,999.0,99.0 +1977,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,1.1,-2.2,79,101000,599,1402,289,194,8,191,21800,700,21500,6980,170,2.6,10,10,1.3,90,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1977,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,0.6,-2.2,82,100900,729,1402,287,230,3,228,26000,300,25800,8870,140,3.1,10,10,0.6,90,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1977,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,1.1,-1.7,82,100800,796,1402,290,304,9,299,34100,900,33600,11050,120,2.1,10,10,2.4,370,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1977,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,1.1,-1.7,82,100700,794,1402,290,304,2,303,34000,200,33900,11110,130,2.6,10,10,1.3,370,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1977,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,2.2,-1.1,79,100700,724,1402,295,200,2,199,22900,200,22800,8080,300,6.2,10,10,4.8,270,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1977,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,1.7,-2.8,73,100800,591,1402,291,215,3,214,23800,300,23700,7360,310,6.7,10,10,1.6,270,9,999999999,89,0.0450,0,88,999.000,999.0,99.0 +1977,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,2.2,-3.9,64,100900,405,1402,284,116,39,105,12800,3500,11700,2790,300,7.2,9,9,11.3,2440,9,999999999,89,0.0450,0,88,999.000,999.0,99.0 +1977,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,2.2,-6.1,55,100900,178,1402,268,69,105,57,7600,6500,6700,1200,280,7.7,8,6,16.1,7620,9,999999999,80,0.0450,0,88,999.000,999.0,99.0 +1977,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,1.1,-9.4,46,101000,7,339,254,7,22,4,0,0,0,0,280,8.2,3,3,24.1,77777,9,999999999,60,0.0450,0,88,999.000,999.0,99.0 +1977,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,-0.6,-10.6,47,101100,0,0,237,0,0,0,0,0,0,0,310,8.2,0,0,24.1,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1977,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,-0.6,-11.1,45,101200,0,0,236,0,0,0,0,0,0,0,290,7.2,0,0,24.1,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1977,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,-1.7,-11.7,47,101300,0,0,232,0,0,0,0,0,0,0,300,7.2,0,0,24.1,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1977,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,-12.2,47,101400,0,0,230,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1977,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,-2.8,-12.8,47,101400,0,0,243,0,0,0,0,0,0,0,280,8.2,6,6,24.1,1160,9,999999999,50,0.1010,0,88,999.000,999.0,99.0 +1977,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,-3.3,-13.3,46,101400,0,0,241,0,0,0,0,0,0,0,280,7.2,6,6,24.1,1310,9,999999999,50,0.1010,0,88,999.000,999.0,99.0 +1977,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,-4.4,-13.9,48,101500,0,0,221,0,0,0,0,0,0,0,280,7.2,0,0,24.1,77777,9,999999999,50,0.1020,0,88,999.000,999.0,99.0 +1977,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,-5.0,-14.4,48,101500,0,0,219,0,0,0,0,0,0,0,280,6.7,0,0,32.2,77777,9,999999999,50,0.1020,0,88,999.000,999.0,99.0 +1977,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,-5.6,-15.0,48,101400,0,0,216,0,0,0,0,0,0,0,300,6.7,0,0,32.2,77777,9,999999999,50,0.1020,0,88,999.000,999.0,99.0 +1977,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,-6.1,-15.0,50,101500,0,0,214,0,0,0,0,0,0,0,290,6.7,0,0,32.2,77777,9,999999999,50,0.1020,0,88,999.000,999.0,99.0 +1977,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,-6.1,-15.0,50,101500,0,0,214,0,0,0,0,0,0,0,300,5.7,0,0,32.2,77777,9,999999999,50,0.1020,0,88,999.000,999.0,99.0 +1977,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.7,-15.0,52,101500,0,0,213,0,0,0,0,0,0,0,300,5.2,0,0,32.2,77777,9,999999999,50,0.1020,0,88,999.000,999.0,99.0 +1977,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,-6.7,-15.0,52,101500,12,455,213,7,24,5,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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.1,-15.0,50,101500,196,1401,214,89,388,36,9200,25500,5700,640,300,5.7,1,0,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-6.1,-14.4,52,101500,421,1401,215,262,663,65,27700,58900,9900,1240,320,4.6,2,0,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-5.0,-14.4,48,101500,606,1401,219,422,780,87,43700,74500,11400,1680,340,4.1,2,0,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-5.0,-13.9,50,101500,736,1401,228,513,640,179,54600,64600,20600,3880,290,4.1,3,3,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-3.9,-14.4,44,101400,802,1401,226,570,812,108,59800,80400,13600,2360,280,5.2,2,1,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-3.3,-13.9,44,101300,800,1401,225,595,886,93,63500,88200,12900,2150,280,6.2,0,0,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-3.3,-14.4,42,101200,731,1401,224,533,863,87,56700,85100,12100,1920,270,5.7,0,0,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-2.2,-14.4,39,101200,598,1401,228,413,803,74,43600,77100,10600,1530,300,5.2,0,0,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-2.8,-14.4,41,101200,411,1401,226,250,674,56,26100,59700,8500,1080,310,6.2,0,0,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-2.2,-15.0,37,101100,183,1401,227,82,381,34,8600,24300,5400,610,260,5.2,0,0,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-3.3,-15.0,40,101200,8,385,224,7,17,4,0,0,0,0,360,4.6,0,0,24.1,77777,9,999999999,50,0.0780,0,88,999.000,999.0,99.0 +1977,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,-3.9,-15.6,40,101200,0,0,221,0,0,0,0,0,0,0,350,5.2,0,0,24.1,77777,9,999999999,50,0.1020,0,88,999.000,999.0,99.0 +1977,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,-5.0,-16.1,42,101200,0,0,217,0,0,0,0,0,0,0,360,6.2,0,0,24.1,77777,9,999999999,50,0.1020,0,88,999.000,999.0,99.0 +1977,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,-6.1,-16.7,43,101300,0,0,213,0,0,0,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,40,0.1020,0,88,999.000,999.0,99.0 +1977,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,-6.7,-16.7,45,101300,0,0,211,0,0,0,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,40,0.1020,0,88,999.000,999.0,99.0 +1977,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,-7.2,-16.7,47,101300,0,0,210,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,40,0.1020,0,88,999.000,999.0,99.0 +1977,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,-7.8,-17.2,47,101300,0,0,207,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,40,0.1020,0,88,999.000,999.0,99.0 +1977,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,-8.3,-17.8,47,101300,0,0,205,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1977,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,-9.4,-18.3,49,101300,0,0,201,0,0,0,0,0,0,0,320,6.7,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1977,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,-10.6,-18.9,51,101200,0,0,197,0,0,0,0,0,0,0,320,7.2,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1977,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,-11.7,-20.0,50,101200,0,0,193,0,0,0,0,0,0,0,310,6.7,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1977,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,-12.2,-21.1,48,101200,0,0,191,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1977,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,-21.1,50,101200,0,0,189,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1977,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,-21.1,50,101200,14,479,189,7,9,6,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,40,0.1270,0,88,999.000,999.0,99.0 +1977,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.2,-21.1,48,101300,202,1401,191,85,301,43,9100,19200,6300,770,320,5.7,0,0,24.1,77777,9,999999999,40,0.1270,0,88,999.000,999.0,99.0 +1977,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,-11.1,-20.6,46,101300,428,1401,194,252,583,77,26400,51600,10600,1430,310,5.7,1,0,24.1,77777,9,999999999,40,0.1270,0,88,999.000,999.0,99.0 +1977,2,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-19.4,46,101300,613,1401,199,415,734,97,44000,71000,12800,1980,310,6.2,0,0,24.1,77777,9,999999999,40,0.1270,0,88,999.000,999.0,99.0 +1977,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,-8.9,-18.9,45,101300,743,1401,202,534,800,113,57000,79800,14500,2510,300,5.7,0,0,24.1,77777,9,999999999,40,0.1270,0,88,999.000,999.0,99.0 +1977,2,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-17.8,47,101200,809,1401,205,596,829,120,61800,81700,14500,2520,330,5.2,0,0,24.1,77777,9,999999999,40,0.1270,0,88,999.000,999.0,99.0 +1977,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,-7.2,-17.8,43,101200,807,1401,209,594,829,120,61700,81700,14500,2510,310,5.7,0,0,24.1,77777,9,999999999,40,0.1270,0,88,999.000,999.0,99.0 +1977,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,-6.1,-17.2,41,101100,737,1401,213,528,798,112,56400,79500,14400,2480,310,5.7,0,0,24.1,77777,9,999999999,40,0.1270,0,88,999.000,999.0,99.0 +1977,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,-5.0,-16.1,42,101100,604,1401,217,404,723,96,42900,69800,12700,1950,320,5.2,0,0,24.1,77777,9,999999999,50,0.1270,0,88,999.000,999.0,99.0 +1977,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,-5.0,-16.1,42,101100,417,1401,217,242,580,72,25400,51100,10100,1350,300,6.2,0,0,24.1,77777,9,999999999,50,0.1270,0,88,999.000,999.0,99.0 +1977,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,-5.0,-16.1,42,101200,189,1401,217,77,275,41,8200,16900,5900,730,320,4.6,0,0,24.1,77777,9,999999999,50,0.1270,0,88,999.000,999.0,99.0 +1977,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,-5.0,-16.1,42,101200,10,409,217,5,6,4,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,50,0.1270,0,88,999.000,999.0,99.0 +1977,2,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-16.1,44,101300,0,0,215,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,2,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-16.1,44,101400,0,0,215,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-6.1,-16.1,45,101400,0,0,214,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-6.7,-16.7,45,101500,0,0,211,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.7,49,101500,0,0,208,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.1,52,101600,0,0,208,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.1,52,101600,0,0,208,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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.3,-16.1,54,101600,0,0,207,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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.8,-16.1,52,101600,0,0,208,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-8.3,-16.1,54,101700,0,0,207,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.1,52,101700,0,0,208,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.1,52,101800,0,0,208,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-7.8,-16.1,52,101900,16,525,208,8,17,6,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,2,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-15.6,52,101900,208,1400,210,93,362,41,9700,24300,6000,720,320,3.6,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-6.7,-15.0,52,101900,434,1400,213,264,643,67,27900,57600,9900,1280,310,4.1,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-4.4,-13.3,50,102000,619,1400,221,425,770,87,44100,73800,11400,1710,280,4.1,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-2.2,-13.9,41,101900,749,1400,228,544,833,101,57000,81900,13000,2140,180,1.0,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1977,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,-2.8,-12.2,49,101900,816,1400,228,601,853,108,63300,84600,13800,2400,150,2.6,0,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-2.2,-12.2,47,101900,814,1400,230,600,854,108,63200,84700,13800,2400,90,2.1,0,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-1.1,-11.1,47,101800,743,1400,235,536,827,100,56200,81300,12800,2110,110,4.1,0,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-0.6,-11.7,43,101800,610,1400,236,415,762,86,43100,72900,11200,1680,270,2.6,0,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,0.6,-12.2,38,101800,422,1400,239,256,597,78,26700,52600,10700,1440,240,5.2,3,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-2.2,-10.0,56,101800,195,1400,236,80,214,51,8300,13300,6400,930,130,6.7,6,1,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-2.8,-10.0,58,101800,11,432,230,7,10,6,0,0,0,0,140,5.7,4,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-2.2,-9.4,58,101800,0,0,232,0,0,0,0,0,0,0,160,5.2,3,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-2.8,-11.1,53,101900,0,0,229,0,0,0,0,0,0,0,210,4.1,5,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-2.2,-10.6,53,101900,0,0,236,0,0,0,0,0,0,0,220,6.2,8,1,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-2.2,-11.1,51,101900,0,0,231,0,0,0,0,0,0,0,220,5.2,3,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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.9,-12.2,53,101900,0,0,224,0,0,0,0,0,0,0,220,4.6,3,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-4.4,-11.7,58,101800,0,0,223,0,0,0,0,0,0,0,190,4.1,3,0,24.1,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1977,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,-4.4,-11.1,60,101800,0,0,228,0,0,0,0,0,0,0,210,3.6,10,1,24.1,77777,9,999999999,60,0.1040,0,88,999.000,999.0,99.0 +1977,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,-4.4,-10.6,63,101800,0,0,234,0,0,0,0,0,0,0,190,4.1,10,3,22.5,77777,9,999999999,60,0.1040,0,88,999.000,999.0,99.0 +1977,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,-5.0,-10.0,68,101700,0,0,234,0,0,0,0,0,0,0,200,4.1,10,4,20.9,77777,9,999999999,60,0.1040,0,88,999.000,999.0,99.0 +1977,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,-5.0,-10.0,68,101700,0,0,234,0,0,0,0,0,0,0,180,3.6,10,4,19.3,77777,9,999999999,60,0.1040,0,88,999.000,999.0,99.0 +1977,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,-3.9,-8.9,69,101700,0,0,249,0,0,0,0,0,0,0,180,4.6,10,8,17.7,2740,9,999999999,69,0.1040,0,88,999.000,999.0,99.0 +1977,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,-3.9,-8.3,72,101600,0,0,263,0,0,0,0,0,0,0,180,4.1,10,10,16.1,1160,9,999999999,69,0.1040,0,88,999.000,999.0,99.0 +1977,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.8,-7.8,69,101600,18,548,267,0,0,0,0,0,0,0,190,4.6,10,10,16.1,1490,9,999999999,69,0.1320,0,88,999.000,999.0,99.0 +1977,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,-1.7,-6.7,69,101600,215,1400,260,56,23,53,6200,1700,5900,1300,190,5.7,10,8,16.1,3050,9,999999999,69,0.1320,0,88,999.000,999.0,99.0 +1977,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,-1.1,-6.1,69,101600,441,1400,276,118,9,115,13300,600,13100,4210,190,4.6,10,10,16.1,1070,9,999999999,80,0.1320,0,88,999.000,999.0,99.0 +1977,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,0.0,-5.0,69,101500,626,1400,282,205,12,200,23000,1000,22600,7390,170,6.2,10,10,16.1,1010,9,999999999,80,0.1320,0,88,999.000,999.0,99.0 +1977,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,1.7,-3.9,67,101500,756,1400,290,222,9,217,25300,800,24900,8800,190,4.6,10,10,16.1,1010,9,999999999,89,0.1320,0,88,999.000,999.0,99.0 +1977,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,2.2,-3.9,64,101400,822,1400,292,286,8,282,32400,700,32000,10980,190,4.1,10,10,16.1,1010,9,999999999,89,0.1320,0,88,999.000,999.0,99.0 +1977,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,2.8,-2.8,67,101400,820,1400,296,275,3,273,31100,300,31000,10750,210,6.7,10,10,16.1,460,9,999999999,89,0.1320,0,88,999.000,999.0,99.0 +1977,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,3.3,-2.8,65,101300,750,1400,298,243,1,243,27500,100,27500,9410,190,5.7,10,10,16.1,460,9,999999999,89,0.1320,0,88,999.000,999.0,99.0 +1977,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,2.8,-2.2,70,101300,616,1400,296,176,2,175,19900,200,19800,6730,200,5.2,10,10,16.1,460,9,999999999,100,0.1320,0,88,999.000,999.0,99.0 +1977,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,2.2,-2.8,70,101200,428,1400,293,104,0,104,11800,0,11800,3870,190,5.7,10,10,16.1,460,9,999999999,89,0.1320,0,88,999.000,999.0,99.0 +1977,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,2.2,-2.8,70,101300,200,1400,293,53,1,53,5900,0,5900,1720,210,4.1,10,10,16.1,610,9,999999999,89,0.1320,0,88,999.000,999.0,99.0 +1977,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.8,-2.8,67,101300,13,455,296,8,0,8,0,0,0,0,240,4.6,10,10,16.1,610,9,999999999,89,0.1320,0,88,999.000,999.0,99.0 +1977,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,2.8,-2.8,67,101300,0,0,296,0,0,0,0,0,0,0,240,4.1,10,10,12.9,790,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1977,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,1.7,-2.8,73,101300,0,0,260,0,0,0,0,0,0,0,230,4.1,2,2,12.9,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1977,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,0.6,-3.3,75,101300,0,0,256,0,0,0,0,0,0,0,200,3.1,2,2,12.9,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1977,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,-0.6,-3.9,78,101400,0,0,243,0,0,0,0,0,0,0,210,3.1,0,0,11.3,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1977,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,0.0,-3.9,75,101300,0,0,245,0,0,0,0,0,0,0,240,3.1,0,0,11.3,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1977,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,0.0,-4.4,72,101300,0,0,255,0,0,0,0,0,0,0,310,3.1,4,3,11.3,77777,9,999999999,80,0.1040,0,88,999.000,999.0,99.0 +1977,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,-0.6,-3.9,78,101300,0,0,251,0,0,0,0,0,0,0,130,1.0,2,2,11.3,77777,9,999999999,89,0.1050,0,88,999.000,999.0,99.0 +1977,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,-2.8,-6.1,78,101300,0,0,233,0,0,0,0,0,0,0,120,3.1,0,0,9.7,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-0.6,-4.4,75,101300,0,0,250,0,0,0,0,0,0,0,350,2.6,2,2,8.0,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-5.0,78,101200,0,0,248,0,0,0,0,0,0,0,20,2.1,3,3,8.0,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-1.7,-5.6,75,101200,0,0,242,0,0,0,0,0,0,0,360,3.1,1,1,6.4,77777,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-1.7,-5.6,75,101200,0,0,252,0,0,0,0,0,0,0,350,3.1,7,5,6.4,7620,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-1.7,-5.6,75,101200,20,571,257,6,2,6,0,0,0,0,30,2.6,10,7,4.8,1680,9,999999999,80,0.1020,0,88,999.000,999.0,99.0 +1977,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,-0.6,-4.4,75,101200,221,1399,280,25,18,23,2900,1300,2600,630,30,3.6,10,10,4.8,1680,9,999999999,80,0.1020,0,88,999.000,999.0,99.0 +1977,2,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-3.9,75,101200,448,1399,283,132,0,131,14600,0,14600,4620,20,3.1,10,10,4.8,1680,9,999999999,89,0.1020,0,88,999.000,999.0,99.0 +1977,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,1.1,-3.3,73,101100,633,1399,288,193,10,188,21700,800,21400,7170,30,5.7,10,10,4.8,460,9,999999999,89,0.1020,0,88,999.000,999.0,99.0 +1977,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,2.2,-2.2,73,101000,763,1399,294,325,10,319,35900,1000,35400,11020,60,6.2,10,10,4.8,460,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1977,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,1.7,-2.2,76,100800,829,1399,292,248,8,244,28500,700,28100,10070,60,7.7,10,10,2.4,180,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1977,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,1.1,-2.2,79,100600,827,1399,289,255,2,253,29000,200,28900,10300,60,8.2,10,10,0.8,120,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1977,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,1.1,-2.2,79,100500,756,1399,289,270,5,267,30300,500,30000,10010,60,8.8,10,10,0.8,90,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1977,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,1.1,-1.7,82,100400,622,1399,290,215,2,215,24000,200,24000,7680,60,8.2,10,10,1.3,1010,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1977,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,1.1,-1.7,82,100300,434,1399,290,150,1,150,16500,100,16500,4890,50,9.3,10,10,0.8,60,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1977,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,1.1,-1.7,82,100200,206,1399,290,54,0,54,6000,0,6000,1770,30,6.7,10,10,0.8,60,9,999999999,100,0.1020,0,88,999.000,999.0,99.0 +1977,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,0.6,-2.2,82,100100,14,501,287,9,0,9,0,0,0,0,20,6.7,10,10,0.8,60,9,999999999,89,0.1020,0,88,999.000,999.0,99.0 +1977,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,0.0,-3.3,79,100000,0,0,283,0,0,0,0,0,0,0,40,9.3,10,10,1.6,270,9,999999999,89,0.1050,0,88,999.000,999.0,99.0 +1977,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,0.0,-3.9,75,99900,0,0,283,0,0,0,0,0,0,0,20,6.2,10,10,4.8,310,9,999999999,89,0.1050,0,88,999.000,999.0,99.0 +1977,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,0.0,-3.9,75,99700,0,0,283,0,0,0,0,0,0,0,10,6.7,10,10,4.8,310,9,999999999,89,0.1050,0,88,999.000,999.0,99.0 +1977,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,0.0,-3.9,75,99700,0,0,283,0,0,0,0,0,0,0,360,6.7,10,10,6.4,310,9,999999999,89,0.1050,0,88,999.000,999.0,99.0 +1977,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,-0.6,-4.4,75,99500,0,0,280,0,0,0,0,0,0,0,360,6.2,10,10,6.4,240,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-4.4,75,99500,0,0,280,0,0,0,0,0,0,0,330,4.6,10,10,2.4,310,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-1.1,-4.4,78,99500,0,0,278,0,0,0,0,0,0,0,310,4.6,10,10,1.6,310,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-5.0,75,99400,0,0,277,0,0,0,0,0,0,0,310,5.7,10,10,1.6,730,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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.1,-5.0,75,99400,0,0,277,0,0,0,0,0,0,0,300,5.7,10,10,6.4,910,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-1.1,-5.0,75,99400,0,0,277,0,0,0,0,0,0,0,310,5.7,10,10,8.0,790,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-0.6,-5.0,72,99400,0,0,279,0,0,0,0,0,0,0,300,5.2,10,10,8.0,910,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1977,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,-0.6,-6.1,66,99400,0,0,251,0,0,0,0,0,0,0,300,5.7,3,3,16.1,77777,9,999999999,69,0.1050,0,88,999.000,999.0,99.0 +1977,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,-0.6,-7.2,61,99400,23,618,240,18,86,9,0,0,0,0,290,6.7,0,0,20.9,77777,9,999999999,69,0.0450,0,88,999.000,999.0,99.0 +1977,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,-1.1,-7.2,64,99600,228,1398,238,119,556,31,12500,41300,5700,610,290,6.2,0,0,24.1,77777,9,999999999,69,0.0450,0,88,999.000,999.0,99.0 +1977,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,-1.1,-7.8,61,99700,454,1398,238,298,776,49,31800,70900,8600,1070,290,7.2,0,0,24.1,77777,9,999999999,69,0.0450,0,88,999.000,999.0,99.0 +1977,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,-0.6,-8.9,54,99800,639,1398,246,484,843,102,51300,82200,13600,2110,290,8.8,2,2,24.1,77777,9,999999999,69,0.0450,0,88,999.000,999.0,99.0 +1977,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,-0.6,-9.4,51,99900,770,1398,248,578,809,136,61000,80500,16600,3020,290,8.8,3,3,24.1,77777,9,999999999,60,0.0450,0,88,999.000,999.0,99.0 +1977,2,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.9,52,99900,836,1398,251,619,781,155,65200,78200,18400,3620,290,9.3,3,3,24.1,77777,9,999999999,69,0.0450,0,88,999.000,999.0,99.0 +1977,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.0,-10.0,47,99900,833,1398,252,577,620,210,61500,63500,23500,4960,290,9.3,4,4,24.1,77777,9,999999999,60,0.0450,0,88,999.000,999.0,99.0 +1977,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,-10.0,45,100000,763,1398,265,434,298,272,46000,31200,28900,6670,300,9.3,8,8,24.1,1250,9,999999999,60,0.0450,0,88,999.000,999.0,99.0 +1977,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.6,-10.6,44,100100,629,1398,253,372,522,140,39900,51400,16700,2810,290,9.3,4,4,24.1,77777,9,999999999,60,0.0450,0,88,999.000,999.0,99.0 +1977,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.6,-10.0,45,100200,440,1398,254,251,448,112,26300,40200,13600,2130,290,9.3,4,4,24.1,77777,9,999999999,60,0.0450,0,88,999.000,999.0,99.0 +1977,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,-10.6,47,100300,212,1398,245,112,481,42,11700,32600,6800,740,270,10.3,2,2,24.1,77777,9,999999999,60,0.0450,0,88,999.000,999.0,99.0 +1977,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,-0.6,-11.7,43,100400,16,524,236,15,68,7,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,60,0.0450,0,88,999.000,999.0,99.0 +1977,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,-1.7,-12.2,45,100600,0,0,232,0,0,0,0,0,0,0,280,9.8,0,0,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1977,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,-2.2,-12.8,45,100800,0,0,229,0,0,0,0,0,0,0,280,6.7,0,0,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1977,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,-3.3,-13.3,46,100900,0,0,225,0,0,0,0,0,0,0,290,10.3,0,0,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1977,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,-4.4,-13.3,50,101000,0,0,221,0,0,0,0,0,0,0,270,10.8,0,0,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1977,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,-5.0,-13.9,50,101100,0,0,219,0,0,0,0,0,0,0,270,10.3,0,0,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1977,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,-6.1,-15.0,50,101200,0,0,214,0,0,0,0,0,0,0,270,6.7,0,0,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1977,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,-15.0,48,101300,0,0,223,0,0,0,0,0,0,0,280,6.7,3,2,24.1,77777,9,999999999,50,0.1060,0,88,999.000,999.0,99.0 +1977,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,-6.7,-15.6,50,101300,0,0,212,0,0,0,0,0,0,0,270,8.2,0,0,24.1,77777,9,999999999,50,0.1060,0,88,999.000,999.0,99.0 +1977,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,-6.7,-15.6,50,101400,0,0,212,0,0,0,0,0,0,0,280,6.2,0,0,24.1,77777,9,999999999,50,0.1060,0,88,999.000,999.0,99.0 +1977,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,-7.2,-15.6,52,101400,0,0,210,0,0,0,0,0,0,0,280,7.2,0,0,24.1,77777,9,999999999,50,0.1060,0,88,999.000,999.0,99.0 +1977,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,-7.2,-16.1,49,101500,0,0,210,0,0,0,0,0,0,0,270,5.7,0,0,24.1,77777,9,999999999,50,0.1060,0,88,999.000,999.0,99.0 +1977,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,-8.3,-16.7,51,101500,0,0,206,0,0,0,0,0,0,0,240,5.2,0,0,24.1,77777,9,999999999,40,0.1060,0,88,999.000,999.0,99.0 +1977,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,-8.9,-16.7,54,101500,26,641,204,18,51,13,0,0,0,0,230,4.6,6,0,24.1,77777,9,999999999,40,0.0630,0,88,999.000,999.0,99.0 +1977,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,-7.2,-16.1,49,101500,234,1398,214,113,308,63,11800,21100,8200,1160,240,6.2,10,1,24.1,77777,9,999999999,50,0.0630,0,88,999.000,999.0,99.0 +1977,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,-15.6,48,101500,461,1398,225,316,500,154,32300,45300,17300,3050,230,6.2,10,4,24.1,77777,9,999999999,50,0.0630,0,88,999.000,999.0,99.0 +1977,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,-4.4,-12.8,53,101400,646,1398,233,361,285,230,38100,29000,24600,5290,240,8.8,10,4,24.1,77777,9,999999999,50,0.0630,0,88,999.000,999.0,99.0 +1977,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,-2.2,-10.6,53,101300,776,1398,254,409,206,295,44200,21300,32300,7670,220,7.2,10,8,24.1,3660,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1977,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,-0.6,-9.4,51,101000,842,1398,274,376,126,301,40900,13200,32900,8170,210,8.8,10,10,24.1,3660,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1977,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,0.6,-8.9,50,100900,840,1398,280,368,10,362,40900,1000,40300,12710,230,9.3,10,10,24.1,2440,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1977,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,1.7,-7.2,52,100900,769,1398,286,310,14,303,34600,1400,33800,10850,220,10.3,10,10,24.1,3660,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1977,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,2.2,-6.7,52,100900,635,1398,289,187,8,184,21200,600,20900,7090,230,8.2,10,10,24.1,3660,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1977,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,2.2,-6.1,55,100700,446,1398,271,252,251,173,27000,23100,19600,3900,220,6.7,8,7,24.1,3050,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1977,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,2.8,-6.1,52,100800,217,1398,274,99,66,89,10800,5100,10000,1890,220,8.8,7,7,24.1,2440,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1977,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,1.7,-6.1,57,100900,18,547,249,15,51,9,0,0,0,0,240,6.2,0,0,24.1,77777,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1977,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,1.7,-6.1,57,101000,0,0,249,0,0,0,0,0,0,0,250,7.7,0,0,24.1,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1977,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,1.7,-6.1,57,101100,0,0,249,0,0,0,0,0,0,0,250,6.7,2,0,24.1,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1977,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,1.1,-6.1,59,101200,0,0,247,0,0,0,0,0,0,0,260,4.6,4,0,24.1,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1977,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,0.6,-6.1,61,101300,0,0,245,0,0,0,0,0,0,0,230,4.1,4,0,19.3,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1977,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,-1.1,-6.1,69,101300,0,0,247,0,0,0,0,0,0,0,180,4.1,6,2,19.3,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1977,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,0.0,-6.7,61,101400,0,0,242,0,0,0,0,0,0,0,240,3.1,0,0,19.3,77777,9,999999999,69,0.1060,0,88,999.000,999.0,99.0 +1977,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,0.6,-6.1,61,101400,0,0,283,0,0,0,0,0,0,0,180,2.1,10,10,19.3,6100,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,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,0.6,-5.6,64,101500,0,0,283,0,0,0,0,0,0,0,200,1.5,10,10,19.3,1830,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,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,0.6,-5.6,64,101500,0,0,283,0,0,0,0,0,0,0,350,1.5,10,10,19.3,1680,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,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,0.6,-5.6,64,101600,0,0,270,0,0,0,0,0,0,0,250,1.0,8,8,19.3,1680,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,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,0.6,-5.6,64,101700,0,0,254,0,0,0,0,0,0,0,330,2.1,2,2,20.9,77777,9,999999999,80,0.1070,0,88,999.000,999.0,99.0 +1977,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,0.0,-7.2,59,101800,0,0,247,0,0,0,0,0,0,0,350,4.1,4,1,20.9,77777,9,999999999,69,0.1070,0,88,999.000,999.0,99.0 +1977,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,0.0,-6.1,64,102000,29,687,280,6,0,6,700,0,700,230,360,4.6,10,10,19.3,3960,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,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,0.0,-6.7,61,102100,241,1397,280,69,2,69,7600,100,7600,2220,10,2.1,10,10,19.3,3960,9,999999999,69,0.1180,0,88,999.000,999.0,99.0 +1977,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,1.7,-6.1,57,102200,468,1397,269,175,39,162,19200,3700,17900,4140,20,1.5,10,7,19.3,3960,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,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,2.8,-5.0,57,102300,653,1397,272,403,327,252,42300,33300,26700,5940,40,4.1,10,6,16.1,4570,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,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,3.3,-5.6,53,102400,783,1397,269,435,328,253,46700,34500,27200,6150,50,4.1,10,4,12.9,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,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,2.8,-5.0,57,102400,849,1397,269,460,382,229,50200,40700,25300,5660,100,4.1,5,5,12.9,77777,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,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,-5.0,57,102300,846,1397,285,302,138,219,33500,14500,24700,5950,90,4.6,10,9,12.9,910,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1977,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,1.7,-3.9,67,102400,775,1397,282,344,86,297,37800,8700,33000,8790,80,4.6,10,9,12.9,1160,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1977,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,1.7,-3.9,67,102400,641,1397,290,210,10,205,23500,800,23100,7630,90,5.2,10,10,12.9,1010,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1977,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,1.7,-3.3,70,102500,452,1397,290,124,8,122,14000,500,13800,4440,80,4.6,10,10,16.1,980,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1977,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,1.7,-2.8,73,102500,223,1397,291,51,3,50,5700,100,5700,1730,90,4.6,10,10,12.9,1010,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1977,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,1.7,-2.8,73,102500,20,594,291,4,0,4,0,0,0,0,90,5.7,10,10,11.3,1010,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1977,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.7,-2.8,73,102600,0,0,291,0,0,0,0,0,0,0,80,5.2,10,10,11.3,980,9,999999999,89,0.1070,0,88,999.000,999.0,99.0 +1977,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,1.7,-3.3,70,102700,0,0,290,0,0,0,0,0,0,0,80,4.6,10,10,12.9,980,9,999999999,89,0.1070,0,88,999.000,999.0,99.0 +1977,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.7,-3.3,70,102700,0,0,290,0,0,0,0,0,0,0,90,4.6,10,10,12.9,1070,9,999999999,89,0.1070,0,88,999.000,999.0,99.0 +1977,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,1.1,-3.3,73,102800,0,0,274,0,0,0,0,0,0,0,90,4.6,10,8,12.9,2130,9,999999999,89,0.1070,0,88,999.000,999.0,99.0 +1977,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,1.7,-3.3,70,102800,0,0,290,0,0,0,0,0,0,0,90,6.2,10,10,16.1,2130,9,999999999,89,0.1070,0,88,999.000,999.0,99.0 +1977,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,1.7,-4.4,64,102800,0,0,289,0,0,0,0,0,0,0,90,7.2,10,10,16.1,7620,9,999999999,89,0.1070,0,88,999.000,999.0,99.0 +1977,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.1,-5.0,64,102800,0,0,248,0,0,0,0,0,0,0,100,7.2,1,0,20.9,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,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,0.6,-6.1,61,102800,0,0,245,0,0,0,0,0,0,0,90,6.7,0,0,20.9,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,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,0.6,-5.6,64,102800,0,0,246,0,0,0,0,0,0,0,90,6.7,0,0,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,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,0.6,-5.0,67,102700,0,0,251,0,0,0,0,0,0,0,100,6.2,1,1,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1977,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,1.1,-4.4,67,102700,0,0,266,0,0,0,0,0,0,0,100,6.7,6,6,24.1,1010,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1977,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,1.1,-3.9,70,102700,0,0,273,0,0,0,0,0,0,0,100,6.7,8,8,20.9,820,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1977,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,1.1,-3.3,73,102700,32,733,288,11,1,11,1300,0,1300,390,100,8.2,10,10,19.3,520,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,1.7,-2.8,73,102700,248,1396,291,61,1,61,6800,0,6800,2080,90,6.7,10,10,8.0,340,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,0.6,-2.8,79,102700,475,1396,286,107,5,106,12300,300,12200,4130,90,9.3,10,10,6.4,270,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,0.6,-2.8,79,102600,660,1396,286,131,1,131,15400,100,15300,5660,90,9.8,10,10,6.4,210,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1977,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,0.6,-2.2,82,102500,790,1396,287,176,2,175,20600,200,20500,7730,90,8.2,10,10,6.4,180,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,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,1.1,-2.2,79,102400,856,1396,289,202,1,201,23600,100,23500,8940,90,8.2,10,10,2.4,150,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,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,1.1,-1.7,82,102300,853,1396,290,216,1,215,25000,100,25000,9380,80,7.7,10,10,1.6,90,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,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,1.7,-1.7,79,102100,782,1396,292,170,0,170,19900,0,19900,7520,60,6.2,10,10,3.2,120,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,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,1.7,-1.1,82,102000,647,1396,293,151,1,150,17300,100,17300,6210,70,7.2,10,10,1.6,90,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1977,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,2.2,-0.6,82,101900,458,1396,295,93,0,93,10700,0,10700,3680,50,6.7,10,10,0.8,90,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1977,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,2.2,-0.6,82,101700,229,1396,295,46,1,46,5200,0,5200,1650,60,7.2,10,10,0.8,90,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1977,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,2.8,0.0,82,101600,23,617,299,6,0,6,0,0,0,0,50,10.3,10,10,1.3,90,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1977,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,2.8,0.0,82,101400,0,0,299,0,0,0,0,0,0,0,50,8.8,10,10,1.3,90,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1977,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.3,0.6,82,101200,0,0,301,0,0,0,0,0,0,0,50,8.2,10,10,0.8,90,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1977,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,3.9,1.1,82,101000,0,0,305,0,0,0,0,0,0,0,50,6.2,10,10,0.8,90,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1977,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,3.9,1.1,82,100700,0,0,305,0,0,0,0,0,0,0,90,4.1,10,10,0.4,60,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1977,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,3.3,1.1,86,100400,0,0,302,0,0,0,0,0,0,0,110,5.7,10,10,0.2,30,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1977,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,3.3,1.7,89,100100,0,0,303,0,0,0,0,0,0,0,90,6.2,10,10,0.2,30,9,999999999,120,0.1080,0,88,999.000,999.0,99.0 +1977,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,4.4,2.2,86,99700,0,0,308,0,0,0,0,0,0,0,120,6.2,10,10,0.2,30,9,999999999,120,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.0,3.3,89,99200,0,0,312,0,0,0,0,0,0,0,110,12.4,10,10,0.4,60,9,999999999,129,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.6,3.9,89,98900,0,0,315,0,0,0,0,0,0,0,130,13.4,10,10,4.8,90,9,999999999,129,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.0,3.3,89,98400,0,0,312,0,0,0,0,0,0,0,120,11.3,10,10,2.0,60,9,999999999,129,0.1090,0,88,999.000,999.0,99.0 +1977,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.9,1.7,86,98200,0,0,305,0,0,0,0,0,0,0,140,5.7,10,10,1.3,60,9,999999999,120,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.0,2.8,86,98200,0,0,311,0,0,0,0,0,0,0,240,13.4,10,10,9.7,240,9,999999999,129,0.1090,0,88,999.000,999.0,99.0 +1977,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,3.9,0.6,79,98500,35,756,304,8,0,8,1000,0,1000,300,250,13.9,10,10,24.1,460,9,999999999,110,0.1660,0,88,999.000,999.0,99.0 +1977,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,5.0,0.6,73,98800,255,1396,309,66,0,66,7300,0,7300,2220,260,15.4,10,10,24.1,310,9,999999999,110,0.1660,0,88,999.000,999.0,99.0 +1977,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,6.1,0.6,68,98900,482,1396,314,139,1,139,15600,100,15600,5010,280,11.8,10,10,24.1,7620,9,999999999,110,0.1660,0,88,999.000,999.0,99.0 +1977,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,0.0,60,99000,667,1396,298,277,154,204,30300,15700,22800,5010,270,11.3,9,7,24.1,910,9,999999999,110,0.1660,0,88,999.000,999.0,99.0 +1977,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,7.8,0.6,61,99200,797,1396,298,400,228,270,43500,23700,30000,7110,260,13.4,9,6,24.1,910,9,999999999,110,0.1660,0,88,999.000,999.0,99.0 +1977,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,7.8,0.6,61,99300,863,1396,306,483,228,343,52200,23800,37500,9450,280,11.3,9,8,24.1,910,9,999999999,110,0.1660,0,88,999.000,999.0,99.0 +1977,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,7.8,0.6,61,99300,860,1396,313,393,161,295,42900,16900,32500,8110,280,10.8,10,9,24.1,910,9,999999999,110,0.1660,0,88,999.000,999.0,99.0 +1977,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,7.8,-1.1,54,99500,788,1396,296,376,229,247,41100,23800,27600,6470,270,14.4,7,6,24.1,910,9,999999999,100,0.1660,0,88,999.000,999.0,99.0 +1977,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,8.3,-1.7,50,99600,653,1396,295,360,425,162,38000,42100,18300,3340,280,10.8,5,5,24.1,77777,9,999999999,100,0.1660,0,88,999.000,999.0,99.0 +1977,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,8.3,-2.2,48,99700,464,1396,312,138,36,127,15200,3300,14100,3440,310,6.2,9,9,24.1,910,9,999999999,89,0.1660,0,88,999.000,999.0,99.0 +1977,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,7.8,-2.2,50,99700,234,1396,298,68,25,64,7500,1900,7100,1550,280,9.3,8,7,24.1,2440,9,999999999,100,0.1660,0,88,999.000,999.0,99.0 +1977,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,7.2,-2.8,49,99700,25,640,295,7,1,7,0,0,0,0,280,6.7,8,7,24.1,2440,9,999999999,89,0.1660,0,88,999.000,999.0,99.0 +1977,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,6.7,-2.8,51,100000,0,0,298,0,0,0,0,0,0,0,270,6.2,8,8,24.1,2440,9,999999999,89,0.1090,0,88,999.000,999.0,99.0 +1977,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,6.1,-2.8,53,100100,0,0,310,0,0,0,0,0,0,0,270,9.3,10,10,24.1,910,9,999999999,89,0.1090,0,88,999.000,999.0,99.0 +1977,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,6.1,-2.8,53,100100,0,0,290,0,0,0,0,0,0,0,280,7.7,7,7,24.1,910,9,999999999,89,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.6,-2.8,55,100200,0,0,308,0,0,0,0,0,0,0,270,7.7,10,10,24.1,910,9,999999999,89,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.6,-2.8,55,100200,0,0,308,0,0,0,0,0,0,0,280,8.2,10,10,24.1,910,9,999999999,89,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.6,-3.9,51,100300,0,0,277,0,0,0,0,0,0,0,280,6.2,3,3,24.1,77777,9,999999999,89,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.6,-3.9,51,100400,0,0,292,0,0,0,0,0,0,0,280,6.2,8,8,24.1,910,9,999999999,89,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.0,-3.9,53,100500,0,0,275,0,0,0,0,0,0,0,280,5.7,3,3,24.1,77777,9,999999999,89,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.0,-3.9,53,100500,0,0,263,0,0,0,0,0,0,0,280,5.7,0,0,24.1,77777,9,999999999,89,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.6,-5.0,47,100600,0,0,270,0,0,0,0,0,0,0,310,6.7,1,1,24.1,77777,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.0,-5.0,49,100600,0,0,284,0,0,0,0,0,0,0,290,4.6,7,7,24.1,1220,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.0,-4.4,51,100800,0,0,303,0,0,0,0,0,0,0,290,5.2,10,10,24.1,1220,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.6,-4.4,49,100900,39,802,306,9,2,9,1100,0,1100,340,290,7.7,10,10,24.1,1220,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,5.6,-5.6,45,101000,262,1395,275,109,348,45,11400,26100,6500,820,300,7.2,3,3,24.1,77777,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,6.1,-5.6,43,101100,489,1395,271,292,680,58,31100,63100,8800,1200,300,8.2,3,1,24.1,77777,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,-5.6,43,101100,674,1395,288,367,424,164,39000,42200,18500,3410,290,7.7,7,7,24.1,1220,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,6.1,-5.6,43,101100,804,1395,298,343,59,309,37600,6000,34200,9320,290,8.8,9,9,24.1,1220,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,6.1,-5.6,43,101200,869,1395,292,343,214,211,37800,22900,23500,5220,290,7.7,8,8,24.1,1220,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,6.7,-5.6,42,101200,866,1395,284,510,522,187,55200,53800,21700,4510,290,8.2,5,5,24.1,77777,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,7.2,-5.6,40,101300,794,1395,270,576,892,72,60900,87900,10600,1720,290,7.2,0,0,24.1,77777,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,7.8,-5.0,40,101400,659,1395,273,457,841,63,48400,81400,9800,1440,270,7.7,0,0,24.1,77777,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,7.8,-5.0,40,101500,470,1395,282,251,486,89,26100,44100,11200,1660,290,7.7,3,2,24.1,77777,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,7.2,-5.0,42,101600,240,1395,280,99,262,56,10500,18300,7400,1010,310,8.2,7,2,24.1,77777,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,6.1,-5.0,45,101700,27,663,275,17,62,10,1400,2000,1300,170,290,5.7,2,2,24.1,77777,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1977,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,5.6,-5.0,47,101800,0,0,265,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,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,5.0,-5.0,49,101900,0,0,262,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,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,4.4,-5.0,51,102000,0,0,269,0,0,0,0,0,0,0,310,4.1,2,2,24.1,77777,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,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,4.4,-4.4,53,102100,0,0,292,0,0,0,0,0,0,0,310,3.1,10,9,24.1,3050,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,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,3.3,-4.4,57,102000,0,0,288,0,0,0,0,0,0,0,350,2.6,10,9,24.1,3050,9,999999999,80,0.1090,0,88,999.000,999.0,99.0 +1977,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,2.2,-3.9,64,102100,0,0,292,0,0,0,0,0,0,0,20,3.1,10,10,24.1,2440,9,999999999,89,0.1090,0,88,999.000,999.0,99.0 +1977,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,2.2,-3.9,64,102100,0,0,278,0,0,0,0,0,0,0,80,2.1,8,8,24.1,2440,9,999999999,89,0.1100,0,88,999.000,999.0,99.0 +1977,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,3.3,-2.8,65,102200,0,0,298,0,0,0,0,0,0,0,60,5.2,10,10,24.1,2440,9,999999999,89,0.1100,0,88,999.000,999.0,99.0 +1977,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,2.8,-1.7,73,102200,0,0,283,0,0,0,0,0,0,0,100,3.1,8,8,24.1,2440,9,999999999,100,0.1100,0,88,999.000,999.0,99.0 +1977,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,1.7,-2.2,76,102200,0,0,261,0,0,0,0,0,0,0,90,3.6,2,2,24.1,77777,9,999999999,100,0.1100,0,88,999.000,999.0,99.0 +1977,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,2.2,-1.7,76,102200,0,0,263,0,0,0,0,0,0,0,100,4.1,2,2,24.1,77777,9,999999999,100,0.1100,0,88,999.000,999.0,99.0 +1977,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,1.7,-2.2,76,102100,0,0,261,0,0,0,0,0,0,0,110,4.1,3,2,24.1,77777,9,999999999,100,0.1100,0,88,999.000,999.0,99.0 +1977,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,-1.7,79,102100,42,825,253,20,44,16,2000,1300,1900,270,110,3.6,4,0,24.1,77777,9,999999999,100,0.1040,0,88,999.000,999.0,99.0 +1977,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,2.8,-1.1,76,102100,269,1394,266,124,362,56,13300,26800,8100,1010,120,4.1,2,2,19.3,77777,9,999999999,100,0.1040,0,88,999.000,999.0,99.0 +1977,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,3.9,-0.6,73,102100,496,1394,274,261,437,108,27900,40800,13400,2050,110,4.6,7,3,19.3,77777,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1977,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,3.9,-0.6,73,102000,681,1394,303,126,5,124,14900,400,14700,5500,110,4.6,10,10,24.1,1520,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1977,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,4.4,0.0,73,101900,811,1394,306,224,11,218,25900,900,25300,9220,110,5.2,10,10,24.1,1520,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1977,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,4.4,-0.6,70,101800,876,1394,305,260,9,255,30000,800,29500,10760,120,6.7,10,10,24.1,1370,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1977,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,4.4,-0.6,70,101700,873,1394,305,216,10,209,25100,800,24600,9310,110,5.2,10,10,24.1,1220,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1977,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,3.9,-1.1,70,101600,801,1394,302,200,4,198,23200,300,23000,8540,100,5.7,10,10,24.1,910,9,999999999,100,0.1040,0,88,999.000,999.0,99.0 +1977,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,3.9,0.0,76,101500,665,1394,303,226,4,224,25300,400,25100,8260,90,5.7,10,10,16.1,610,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1977,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,3.9,0.0,76,101400,476,1394,303,130,5,128,14600,300,14500,4720,90,5.2,10,10,16.1,610,9,999999999,110,0.1040,0,88,999.000,999.0,99.0 +1977,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,3.9,2.8,93,101400,245,1394,306,32,2,32,3800,0,3800,1260,80,5.7,10,10,4.0,460,9,999999999,129,0.1040,0,88,999.000,999.0,99.0 +1977,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,3.9,2.8,93,101200,30,686,306,5,0,5,600,0,600,200,90,6.2,10,10,2.4,150,9,999999999,129,0.1040,0,88,999.000,999.0,99.0 +1977,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,3.3,3.3,100,101100,0,0,304,0,0,0,0,0,0,0,90,3.1,10,10,0.8,120,9,999999999,129,0.1100,0,88,999.000,999.0,99.0 +1977,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,3.9,3.3,96,101000,0,0,307,0,0,0,0,0,0,0,60,1.5,10,10,0.8,120,9,999999999,129,0.1100,0,88,999.000,999.0,99.0 +1977,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,3.9,3.3,96,100900,0,0,307,0,0,0,0,0,0,0,50,1.0,10,10,0.8,90,9,999999999,129,0.1100,0,88,999.000,999.0,99.0 +1977,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,4.4,4.4,100,100700,0,0,310,0,0,0,0,0,0,0,310,3.1,10,10,0.8,60,9,999999999,139,0.1100,0,88,999.000,999.0,99.0 +1977,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,4.4,4.4,100,100600,0,0,310,0,0,0,0,0,0,0,310,3.1,10,10,0.8,90,9,999999999,139,0.1100,0,88,999.000,999.0,99.0 +1977,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,5.0,3.9,93,100500,0,0,312,0,0,0,0,0,0,0,350,1.0,10,10,2.4,90,9,999999999,139,0.1100,0,88,999.000,999.0,99.0 +1977,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.9,1.1,82,100400,0,0,305,0,0,0,0,0,0,0,310,2.1,10,10,3.2,150,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1977,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,1.1,82,100400,0,0,305,0,0,0,0,0,0,0,310,2.6,10,10,4.0,180,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1977,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.3,0.6,82,100300,0,0,301,0,0,0,0,0,0,0,310,2.6,10,10,16.1,760,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1977,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,4.4,1.1,79,100400,0,0,307,0,0,0,0,0,0,0,300,3.1,10,10,16.1,760,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1977,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,4.4,1.1,79,100500,0,0,307,0,0,0,0,0,0,0,290,3.6,10,10,16.1,760,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1977,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,5.6,1.1,73,100500,0,0,312,0,0,0,0,0,0,0,290,5.7,10,10,19.3,910,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1977,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,5.0,0.6,73,100500,46,871,284,21,16,19,2200,900,2100,450,290,6.7,8,5,24.1,7620,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1977,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,4.4,-1.7,65,100700,276,1394,277,75,55,65,8300,4500,7400,1660,270,7.2,4,4,24.1,77777,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1977,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,4.4,-2.8,60,100600,503,1394,276,267,389,129,28100,36300,14900,2500,310,6.7,4,4,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1977,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,5.0,-3.3,55,100700,688,1394,273,430,612,131,45100,59900,15400,2710,300,8.2,2,2,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1977,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,5.0,-3.9,53,100700,818,1394,272,544,692,141,57700,69400,16800,3290,280,7.2,2,2,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1977,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,5.0,-3.9,53,100700,883,1394,272,621,758,144,66200,76700,17500,3610,290,7.2,2,2,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1977,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,5.0,-3.9,53,100700,879,1394,263,645,871,99,69200,87500,13800,2470,270,10.3,0,0,24.1,77777,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1977,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,5.6,-4.4,49,100700,807,1394,265,570,830,93,60900,82800,12800,2180,290,7.2,0,0,24.1,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1977,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,6.1,-5.6,43,100700,671,1394,266,461,795,81,48800,77700,11300,1740,280,9.3,0,0,24.1,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1977,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,6.1,-6.1,42,100800,481,1394,265,296,681,63,30900,62800,9200,1250,280,7.7,0,0,24.1,77777,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1977,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,5.0,-7.2,41,100900,251,1394,260,120,441,42,12500,32500,6700,770,300,8.8,0,0,24.1,77777,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1977,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,3.3,-7.2,46,101000,32,732,254,18,48,13,1700,1300,1600,220,290,7.7,0,0,24.1,77777,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1977,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,2.8,-7.8,46,101100,0,0,251,0,0,0,0,0,0,0,290,7.2,0,0,24.1,77777,9,999999999,69,0.1110,0,88,999.000,999.0,99.0 +1977,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,1.7,-7.8,50,101200,0,0,247,0,0,0,0,0,0,0,290,7.7,0,0,24.1,77777,9,999999999,69,0.1110,0,88,999.000,999.0,99.0 +1977,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,1.7,-8.3,48,101200,0,0,247,0,0,0,0,0,0,0,280,8.2,0,0,24.1,77777,9,999999999,69,0.1110,0,88,999.000,999.0,99.0 +1977,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,2.0,-6.8,52,101200,0,0,249,0,0,0,0,0,0,0,270,8.0,0,0,24.1,77777,9,999999999,69,0.1110,0,88,999.000,999.0,99.0 +1977,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.3,-5.3,56,101300,0,0,252,0,0,0,0,0,0,0,240,7.8,0,0,24.1,77777,9,999999999,69,0.1110,0,88,999.000,999.0,99.0 +1977,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,2.6,-3.9,64,101300,0,0,254,0,0,0,0,0,0,0,270,7.6,0,0,24.1,77777,9,999999999,69,0.1110,0,88,999.000,999.0,99.0 +1981,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,3.0,-2.5,96,100000,0,0,297,0,0,0,0,0,0,0,220,7.3,10,10,11.3,1160,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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,3.3,-1.1,93,100000,0,0,300,0,0,0,0,0,0,0,270,7.1,10,10,11.3,1400,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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,3.6,0.3,89,99900,0,0,302,0,0,0,0,0,0,0,270,6.9,10,10,12.9,1830,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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,3.9,1.7,86,99900,0,0,305,0,0,0,0,0,0,0,270,6.7,10,10,16.1,1980,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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,3.9,1.7,86,99900,0,0,305,0,0,0,0,0,0,0,280,6.7,10,10,19.3,1980,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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,3.9,1.1,82,99900,0,0,290,0,0,0,0,0,0,0,280,5.7,10,8,19.3,1980,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1981,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,3.9,0.6,79,100000,51,894,296,17,4,16,1900,0,1900,560,290,5.7,10,9,24.1,1980,9,999999999,110,0.0510,0,88,999.000,999.0,99.0 +1981,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,5.0,0.6,73,100000,283,1393,268,150,592,33,16000,47700,6300,690,280,6.2,0,0,24.1,77777,9,999999999,110,0.0510,0,88,999.000,999.0,99.0 +1981,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,5.6,0.6,71,100000,511,1393,289,215,296,108,23000,27800,12800,2050,280,6.7,7,6,24.1,1010,9,999999999,110,0.0510,0,88,999.000,999.0,99.0 +1981,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,7.2,0.6,63,100000,695,1393,319,169,1,169,19500,100,19500,7050,300,8.2,10,10,24.1,1010,9,999999999,110,0.0510,0,88,999.000,999.0,99.0 +1981,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,7.8,-0.6,56,100100,825,1393,320,231,0,231,26600,0,26600,9700,310,8.2,10,10,24.1,1070,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1981,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,6.7,0.0,63,100100,890,1393,307,424,190,303,46300,20000,33500,8530,290,7.2,9,9,24.1,1100,9,999999999,110,0.0510,0,88,999.000,999.0,99.0 +1981,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,8.3,-1.1,52,100100,886,1393,298,527,434,252,55500,44600,27000,6380,320,8.8,6,6,24.1,1100,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1981,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,9.4,-1.1,48,100100,813,1393,298,527,607,175,54900,60100,19700,3920,320,8.8,4,4,24.1,77777,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1981,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,8.9,-2.2,46,100200,677,1393,292,419,588,135,43700,57200,15700,2760,280,9.3,3,3,24.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,8.3,-1.7,50,100200,487,1393,290,276,585,74,29300,54100,10300,1450,320,7.2,3,3,24.1,77777,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1981,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,7.8,-3.3,46,100200,256,1393,284,131,432,53,13500,31700,7600,930,330,8.2,2,2,24.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,6.1,-3.3,51,100300,35,755,268,23,108,12,1800,4600,1600,220,310,5.2,0,0,24.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,6.1,-3.3,51,100400,0,0,268,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,89,0.1120,0,88,999.000,999.0,99.0 +1981,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,5.6,-3.9,51,100400,0,0,266,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,89,0.1120,0,88,999.000,999.0,99.0 +1981,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,5.0,-3.9,53,100500,0,0,263,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,89,0.1120,0,88,999.000,999.0,99.0 +1981,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,4.4,-2.8,60,100500,0,0,262,0,0,0,0,0,0,0,280,6.2,0,0,24.1,77777,9,999999999,89,0.1120,0,88,999.000,999.0,99.0 +1981,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,-3.3,60,100500,0,0,260,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,89,0.1120,0,88,999.000,999.0,99.0 +1981,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.3,-3.3,62,100500,0,0,258,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,89,0.1120,0,88,999.000,999.0,99.0 +1981,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,3.3,-3.3,62,100500,0,0,258,0,0,0,0,0,0,0,270,4.1,0,0,24.1,77777,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1981,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,2.8,-3.3,65,100500,0,0,261,0,0,0,0,0,0,0,290,5.2,1,1,24.1,77777,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1981,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,2.2,-3.3,67,100500,0,0,278,0,0,0,0,0,0,0,270,5.2,8,8,24.1,1070,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1981,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,2.2,-3.3,67,100500,0,0,293,0,0,0,0,0,0,0,270,5.2,10,10,24.1,1070,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1981,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,2.2,-3.9,64,100500,0,0,268,0,0,0,0,0,0,0,280,5.2,5,5,24.1,77777,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1981,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,2.2,-3.9,64,100500,0,0,261,0,0,0,0,0,0,0,270,5.2,2,2,24.1,77777,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1981,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,2.2,-4.4,62,100500,55,940,257,27,117,15,2400,4600,2100,260,280,4.6,2,1,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1981,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,2.8,-4.4,59,100400,290,1392,263,128,352,56,13800,27000,8100,1000,290,6.2,2,2,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1981,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,-5.6,51,100400,518,1392,279,255,163,195,27400,15700,21600,4510,300,6.2,9,7,24.1,1010,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1981,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,5.6,-4.4,49,100300,702,1392,274,470,738,101,50300,73300,13200,2210,300,5.7,3,2,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1981,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,6.7,-3.9,47,100300,832,1392,282,437,505,138,46500,50800,16100,3280,300,4.1,3,3,24.1,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1981,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,6.7,-3.3,49,100200,896,1392,297,393,263,225,43200,28200,25000,5750,280,6.2,8,8,24.1,1310,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1981,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,6.1,-3.3,51,100100,892,1392,309,305,6,301,34700,600,34300,12130,280,6.2,10,10,24.1,1490,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1981,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,-2.8,51,100100,820,1392,313,224,4,221,25800,300,25600,9370,270,6.2,10,10,24.1,1680,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1981,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.1,-2.8,53,100000,683,1392,310,189,12,183,21600,1000,21100,7400,250,5.2,10,10,24.1,1520,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1981,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,-2.2,56,100000,493,1392,311,111,1,111,12700,100,12700,4350,250,7.7,10,10,24.1,1160,9,999999999,100,0.0590,0,88,999.000,999.0,99.0 +1981,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.6,-2.8,55,100000,262,1392,308,82,6,81,9000,200,9000,2550,240,6.2,10,10,24.1,1400,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1981,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,5.6,-2.8,55,100000,38,777,308,10,1,10,1200,0,1200,370,250,6.2,10,10,19.3,1070,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1981,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,5.6,-1.7,60,100000,0,0,309,0,0,0,0,0,0,0,250,5.2,10,10,19.3,910,9,999999999,100,0.1130,0,88,999.000,999.0,99.0 +1981,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,4.4,-2.2,62,100000,0,0,303,0,0,0,0,0,0,0,300,5.2,10,10,19.3,1010,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1981,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,4.4,-3.9,55,100000,0,0,301,0,0,0,0,0,0,0,270,5.7,10,10,19.3,1310,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1981,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,3.9,-3.9,57,100000,0,0,299,0,0,0,0,0,0,0,270,7.7,10,10,19.3,1680,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1981,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,3.3,-3.9,60,100000,0,0,297,0,0,0,0,0,0,0,290,5.7,10,10,19.3,1980,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1981,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,2.8,-7.2,48,100000,0,0,267,0,0,0,0,0,0,0,280,7.7,6,5,20.9,2440,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1981,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,1.7,-7.8,50,100000,0,0,247,0,0,0,0,0,0,0,280,7.2,0,0,24.1,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1981,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.8,54,100000,0,0,244,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1981,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,0.6,-7.8,54,100000,0,0,244,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1981,3,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-7.8,56,100000,0,0,241,0,0,0,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1981,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,-0.6,-7.2,61,100000,0,0,240,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1981,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,-0.6,-7.8,59,100100,0,0,239,0,0,0,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1981,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,-0.6,-7.8,59,100200,60,986,239,25,79,18,2500,3100,2300,310,290,5.2,0,0,24.1,77777,9,999999999,69,0.1050,0,88,999.000,999.0,99.0 +1981,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,0.6,-7.8,54,100200,298,1392,244,149,486,48,15800,38400,7500,890,310,5.2,0,0,24.1,77777,9,999999999,69,0.1050,0,88,999.000,999.0,99.0 +1981,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,1.7,-10.6,40,100200,525,1392,253,315,649,74,33700,61300,10500,1480,310,9.3,2,2,24.1,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1981,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,1.7,-11.1,38,100300,709,1392,249,461,753,81,49300,74300,11300,1800,310,7.7,1,1,24.1,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1981,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,1.7,-10.0,42,100300,839,1392,250,566,805,85,59500,79600,11400,1910,300,5.7,1,1,24.1,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1981,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,2.2,-10.0,40,100200,903,1392,252,654,872,92,68500,86600,12200,2120,320,5.2,1,1,24.1,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1981,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,2.2,-10.6,39,100200,899,1392,257,578,612,185,60600,61300,20900,4580,330,7.7,3,3,24.1,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1981,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,2.2,-11.1,37,100200,826,1392,257,530,630,158,55700,62900,18200,3660,310,8.8,3,3,24.1,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1981,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,2.2,-11.1,37,100300,689,1392,257,445,635,133,46600,62100,15700,2750,310,7.7,3,3,24.1,77777,9,999999999,60,0.1050,0,88,999.000,999.0,99.0 +1981,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,1.7,-12.8,34,100400,499,1392,247,302,648,72,32100,60500,10300,1420,310,9.8,1,1,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1981,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,0.6,-13.3,35,100500,267,1392,243,123,361,55,13100,26700,8000,990,320,8.2,1,1,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1981,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,-0.6,-13.3,38,100600,41,800,234,20,54,15,1900,1600,1900,260,310,7.7,0,0,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1981,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,-1.1,-12.2,43,100800,0,0,234,0,0,0,0,0,0,0,320,8.8,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1981,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,-2.2,-12.8,45,100900,0,0,229,0,0,0,0,0,0,0,320,8.2,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1981,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,-2.2,-12.8,45,101000,0,0,229,0,0,0,0,0,0,0,310,7.2,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1981,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,-2.8,-12.8,47,101000,0,0,227,0,0,0,0,0,0,0,310,10.3,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1981,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,-3.3,-12.8,48,101100,0,0,226,0,0,0,0,0,0,0,310,8.2,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1981,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,-4.4,-13.9,48,101100,0,0,221,0,0,0,0,0,0,0,310,8.2,0,0,24.1,77777,9,999999999,50,0.1130,0,88,999.000,999.0,99.0 +1981,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,-5.0,-13.9,50,101200,0,0,219,0,0,0,0,0,0,0,300,7.7,0,0,24.1,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1981,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,-5.6,-13.9,52,101200,0,0,217,0,0,0,0,0,0,0,300,7.2,0,0,24.1,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1981,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,-5.6,-13.9,52,101200,0,0,217,0,0,0,0,0,0,0,300,7.2,0,0,24.1,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1981,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,-5.6,-13.9,52,101200,0,0,217,0,0,0,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1981,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,-5.6,-13.9,52,101300,0,0,217,0,0,0,0,0,0,0,300,6.2,0,0,24.1,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1981,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,-5.6,-13.9,52,101300,0,0,217,0,0,0,0,0,0,0,330,5.7,0,0,24.1,77777,9,999999999,50,0.1140,0,88,999.000,999.0,99.0 +1981,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,-6.1,-13.3,57,101300,65,1008,216,32,168,16,2800,8000,2300,290,320,4.6,0,0,24.1,77777,9,999999999,50,0.0580,0,88,999.000,999.0,99.0 +1981,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,-5.0,-12.8,55,101300,305,1391,220,169,621,36,18000,51200,6700,750,320,7.2,0,0,24.1,77777,9,999999999,50,0.0580,0,88,999.000,999.0,99.0 +1981,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,-3.3,-12.8,48,101400,532,1391,226,354,801,52,37800,75400,8900,1200,300,5.2,0,0,24.1,77777,9,999999999,50,0.0580,0,88,999.000,999.0,99.0 +1981,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,-1.7,-12.2,45,101300,717,1391,232,514,881,65,54600,86100,10100,1540,310,6.2,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1981,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,0.6,-11.7,40,101200,845,1391,240,633,928,73,66800,91900,10800,1830,270,6.7,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1981,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,1.7,-11.1,38,101200,910,1391,244,691,944,77,72700,93900,11100,2010,290,5.2,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1981,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,2.8,-11.1,36,101100,905,1391,248,687,944,76,72300,93900,11000,1980,290,4.1,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1981,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,4.4,-10.6,33,100900,832,1391,255,621,923,72,65500,91300,10700,1790,300,5.2,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1981,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,5.0,-11.7,29,100900,695,1391,256,500,879,63,52900,85700,9900,1500,290,6.2,0,0,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1981,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,5.6,-11.7,28,100900,504,1391,263,311,643,79,32700,59900,10900,1550,280,3.6,2,1,24.1,77777,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1981,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,4.4,-11.1,32,100900,273,1391,293,60,3,59,6700,100,6700,2120,280,5.2,10,10,24.1,2130,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1981,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,4.4,-11.1,32,101000,44,846,293,13,0,12,1400,0,1400,440,280,6.2,10,10,24.1,1980,9,999999999,60,0.0580,0,88,999.000,999.0,99.0 +1981,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,3.9,-10.6,34,100900,0,0,292,0,0,0,0,0,0,0,290,5.7,10,10,24.1,2130,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1981,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,3.3,-10.0,37,100900,0,0,290,0,0,0,0,0,0,0,290,5.2,10,10,24.1,2130,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1981,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,3.3,-8.3,43,100900,0,0,292,0,0,0,0,0,0,0,300,5.7,10,10,24.1,2130,9,999999999,69,0.1140,0,88,999.000,999.0,99.0 +1981,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,2.8,-7.8,46,100900,0,0,290,0,0,0,0,0,0,0,300,5.7,10,10,24.1,2740,9,999999999,69,0.1140,0,88,999.000,999.0,99.0 +1981,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,2.2,-7.2,50,100900,0,0,250,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,69,0.1140,0,88,999.000,999.0,99.0 +1981,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,1.1,-7.8,52,100900,0,0,245,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,69,0.1140,0,88,999.000,999.0,99.0 +1981,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,0.0,-7.8,56,100900,0,0,241,0,0,0,0,0,0,0,330,3.6,0,0,24.1,77777,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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,-0.6,-7.8,59,100900,0,0,239,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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,-1.1,-7.8,61,100800,0,0,238,0,0,0,0,0,0,0,320,4.6,2,0,24.1,77777,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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,-1.7,-7.8,63,100700,0,0,235,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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,-2.2,-8.3,63,100700,0,0,233,0,0,0,0,0,0,0,350,3.1,0,0,24.1,77777,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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,-2.2,-8.3,63,100700,0,0,238,0,0,0,0,0,0,0,360,3.1,1,1,24.1,77777,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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,-2.8,-8.3,66,100600,70,1054,231,28,69,21,2800,2500,2600,370,360,4.6,1,0,24.1,77777,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,-1.1,-8.9,56,100600,312,1390,237,149,427,56,15600,34200,7900,1020,20,5.2,1,0,24.1,77777,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,0.0,-9.4,49,100500,539,1390,248,309,438,141,32400,41700,16200,2770,10,3.6,6,2,24.1,77777,9,999999999,60,0.1270,0,88,999.000,999.0,99.0 +1981,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,0.6,-10.6,44,100400,724,1390,251,421,455,186,44600,45800,20600,4030,70,4.1,7,3,24.1,77777,9,999999999,60,0.1270,0,88,999.000,999.0,99.0 +1981,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,1.1,-6.7,57,100300,852,1390,261,530,450,256,55500,46100,27100,6300,70,4.6,8,5,24.1,3660,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,1.1,-6.1,59,100200,916,1390,264,432,166,323,47100,17500,35500,9300,70,4.1,10,6,24.1,3660,9,999999999,80,0.1270,0,88,999.000,999.0,99.0 +1981,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,1.1,-5.6,62,100200,912,1390,278,307,107,238,34200,11300,26700,6820,90,5.2,10,9,24.1,3660,9,999999999,80,0.1270,0,88,999.000,999.0,99.0 +1981,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,1.1,-5.6,62,100000,838,1390,267,472,246,325,51100,25600,35600,8820,80,4.6,10,7,24.1,3660,9,999999999,80,0.1270,0,88,999.000,999.0,99.0 +1981,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,1.1,-6.1,59,99900,701,1390,271,308,163,227,33600,16700,25200,5680,80,5.7,10,8,24.1,3050,9,999999999,80,0.1270,0,88,999.000,999.0,99.0 +1981,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.1,-6.7,57,99900,510,1390,271,196,64,173,21500,6100,19300,4560,70,6.2,10,8,24.1,3050,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,1.1,-7.2,54,99800,278,1390,284,51,2,51,5900,100,5900,1910,60,6.7,10,10,24.1,2740,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,0.6,-7.8,54,99700,47,869,281,11,0,11,1300,0,1300,410,40,6.2,10,10,24.1,2740,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,0.6,-6.7,59,99600,0,0,282,0,0,0,0,0,0,0,40,6.7,10,10,24.1,2740,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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,0.0,-7.2,59,99600,0,0,262,0,0,0,0,0,0,0,10,4.6,10,7,24.1,2740,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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,0.0,-6.7,61,99500,0,0,272,0,0,0,0,0,0,0,360,5.7,10,9,24.1,2740,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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,0.0,-6.7,61,99500,0,0,280,0,0,0,0,0,0,0,360,6.2,10,10,24.1,2740,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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,0.6,-8.3,52,99500,0,0,281,0,0,0,0,0,0,0,340,6.2,10,10,24.1,2740,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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.1,-8.9,48,99400,0,0,268,0,0,0,0,0,0,0,340,6.2,10,8,24.1,3050,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1981,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.1,-8.9,48,99400,0,0,282,0,0,0,0,0,0,0,360,7.2,10,10,24.1,3350,9,999999999,69,0.1160,0,88,999.000,999.0,99.0 +1981,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.1,-7.8,52,99400,0,0,283,0,0,0,0,0,0,0,360,7.2,10,10,24.1,1160,9,999999999,69,0.1160,0,88,999.000,999.0,99.0 +1981,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,-6.7,57,99400,0,0,284,0,0,0,0,0,0,0,360,7.2,10,10,24.1,1160,9,999999999,69,0.1160,0,88,999.000,999.0,99.0 +1981,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,1.1,-5.6,62,99400,0,0,285,0,0,0,0,0,0,0,340,6.7,10,10,24.1,1160,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1981,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,1.1,-6.1,59,99400,0,0,285,0,0,0,0,0,0,0,350,5.2,10,10,24.1,820,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1981,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,-7.2,54,99400,0,0,284,0,0,0,0,0,0,0,340,5.2,10,10,24.1,670,9,999999999,69,0.1160,0,88,999.000,999.0,99.0 +1981,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,-7.2,54,99500,76,1100,284,17,3,17,2000,0,2000,610,310,5.7,10,10,24.1,670,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1981,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.1,59,99500,319,1389,285,78,2,77,8700,100,8700,2740,340,6.2,10,10,24.1,520,9,999999999,80,0.0560,0,88,999.000,999.0,99.0 +1981,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,-5.0,64,99500,546,1389,286,135,7,132,15400,500,15200,5200,350,6.2,10,10,24.1,520,9,999999999,80,0.0560,0,88,999.000,999.0,99.0 +1981,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,1.7,-5.0,62,99500,731,1389,289,198,3,197,22800,200,22600,8100,310,6.2,10,10,16.1,580,9,999999999,80,0.0560,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,99500,859,1389,291,281,2,279,31900,200,31800,11290,310,6.2,10,10,11.3,580,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1981,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,2.2,-1.1,79,99500,923,1389,295,294,3,292,33700,300,33500,12180,330,6.2,10,10,8.0,730,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1981,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.2,0.0,85,99500,918,1389,296,297,1,297,34100,100,34000,12270,330,5.7,10,10,4.0,340,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,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,1.7,0.6,92,99500,844,1389,294,285,1,285,32400,100,32400,11310,320,7.7,10,10,6.4,270,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,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,1.7,0.6,92,99600,707,1389,294,231,0,231,26000,0,26000,8800,330,7.2,10,10,11.3,340,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,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,2.2,0.6,89,99600,516,1389,297,184,1,184,20300,100,20300,6180,310,5.7,10,10,11.3,670,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,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,0.0,82,99600,284,1389,299,83,1,83,9200,0,9200,2710,300,6.7,10,10,16.1,1070,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,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,2.8,-0.6,79,99700,50,892,298,19,0,19,2100,0,2100,640,310,7.2,10,10,16.1,1010,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1981,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,2.2,0.0,85,99700,0,0,296,0,0,0,0,0,0,0,310,7.2,10,10,16.1,910,9,999999999,110,0.1160,0,88,999.000,999.0,99.0 +1981,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,2.2,0.6,89,99800,0,0,297,0,0,0,0,0,0,0,300,6.2,10,10,11.3,610,9,999999999,110,0.1160,0,88,999.000,999.0,99.0 +1981,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,2.2,0.6,89,99800,0,0,297,0,0,0,0,0,0,0,300,6.7,10,10,9.7,610,9,999999999,110,0.1160,0,88,999.000,999.0,99.0 +1981,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,1.7,0.6,92,99800,0,0,294,0,0,0,0,0,0,0,310,7.2,10,10,6.4,370,9,999999999,110,0.1160,0,88,999.000,999.0,99.0 +1981,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,1.7,1.1,96,99800,0,0,295,0,0,0,0,0,0,0,310,6.2,10,10,8.0,820,9,999999999,110,0.1160,0,88,999.000,999.0,99.0 +1981,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,2.2,1.1,92,99800,0,0,297,0,0,0,0,0,0,0,320,5.2,10,10,8.0,580,9,999999999,110,0.1160,0,88,999.000,999.0,99.0 +1981,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,2.2,1.1,92,99900,0,0,297,0,0,0,0,0,0,0,340,5.7,10,10,6.4,370,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1981,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,1.7,1.1,96,99800,0,0,295,0,0,0,0,0,0,0,340,5.2,10,10,6.4,370,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1981,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,1.7,1.1,96,99900,0,0,295,0,0,0,0,0,0,0,360,5.2,10,10,6.4,3660,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1981,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,1.7,1.1,96,99900,0,0,295,0,0,0,0,0,0,0,340,5.2,10,10,8.0,370,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1981,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,1.7,1.1,96,100000,0,0,295,0,0,0,0,0,0,0,340,6.2,10,10,8.0,400,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1981,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,1.7,0.6,92,100000,0,0,294,0,0,0,0,0,0,0,350,6.7,10,10,8.0,400,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1981,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,1.7,1.1,96,100100,81,1122,295,14,0,14,1600,0,1600,520,350,6.2,10,10,16.1,340,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1981,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,1.7,1.1,96,100100,327,1389,295,55,1,55,6400,0,6400,2140,360,6.7,10,10,11.3,240,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1981,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,1.7,1.1,96,100200,554,1389,295,96,1,96,11300,100,11300,4100,360,7.2,10,10,11.3,240,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1981,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,1.7,1.1,96,100300,738,1389,295,143,1,142,16800,100,16700,6360,30,7.2,10,10,6.4,240,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1981,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,1.1,92,100300,866,1389,297,170,1,169,20100,100,20100,7870,10,7.2,10,10,11.3,270,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1981,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,1.1,92,100400,930,1389,297,207,0,207,24400,0,24400,9550,360,7.2,10,10,9.7,270,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1981,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.3,1.7,89,100400,924,1389,303,176,1,175,21000,100,20900,8330,10,7.2,10,10,11.3,340,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1981,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,2.2,1.7,96,100500,850,1389,298,176,0,176,20800,0,20800,8060,30,7.2,10,10,11.3,270,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1981,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,2.8,1.7,92,100600,713,1389,300,147,1,146,17100,100,17100,6400,30,7.7,10,10,11.3,270,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1981,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,2.2,1.7,96,100700,521,1389,298,101,0,101,11700,0,11700,4160,20,7.7,10,10,11.3,310,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1981,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,2.2,1.7,96,100900,289,1389,298,44,1,44,5100,0,5100,1720,20,8.2,10,10,9.7,310,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1981,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.2,1.7,96,101000,53,914,298,12,0,12,1400,0,1400,440,10,7.7,10,10,9.7,310,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1981,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,2.2,1.7,96,101100,0,0,298,0,0,0,0,0,0,0,20,6.7,10,10,12.9,430,9,999999999,120,0.1170,0,88,999.000,999.0,99.0 +1981,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,2.8,1.1,89,101200,0,0,300,0,0,0,0,0,0,0,20,7.2,10,10,16.1,910,9,999999999,120,0.1170,0,88,999.000,999.0,99.0 +1981,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,2.2,1.1,92,101200,0,0,297,0,0,0,0,0,0,0,20,7.2,10,10,16.1,1070,9,999999999,120,0.1170,0,88,999.000,999.0,99.0 +1981,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,2.2,0.6,89,101300,0,0,297,0,0,0,0,0,0,0,20,7.2,10,10,19.3,1070,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1981,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,2.2,-0.6,82,101400,0,0,295,0,0,0,0,0,0,0,20,6.7,10,10,17.7,1070,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1981,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,2.2,-1.1,79,101400,0,0,295,0,0,0,0,0,0,0,30,6.2,10,10,19.3,1160,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1981,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,2.2,-1.7,76,101500,0,0,294,0,0,0,0,0,0,0,20,5.2,10,10,19.3,1160,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1981,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,2.2,-1.7,76,101500,0,0,294,0,0,0,0,0,0,0,30,5.2,10,10,19.3,1070,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-1.7,79,101500,0,0,292,0,0,0,0,0,0,0,20,5.2,10,10,19.3,1160,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.2,76,101500,0,0,292,0,0,0,0,0,0,0,30,6.2,10,10,19.3,1100,9,999999999,100,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,101600,0,0,291,0,0,0,0,0,0,0,40,6.2,10,10,19.3,1070,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.3,70,101700,0,0,290,0,0,0,0,0,0,0,20,3.1,10,10,19.3,820,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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.7,-2.8,73,101700,87,1168,291,24,0,24,2700,0,2700,810,20,5.2,10,10,19.3,1010,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.9,67,101800,334,1388,290,98,0,98,10800,0,10800,3280,30,6.2,10,10,19.3,940,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.9,67,101800,561,1388,290,189,0,189,21000,0,21000,6670,10,4.6,10,10,19.3,910,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.9,67,101900,745,1388,290,248,1,247,27900,100,27900,9510,50,7.7,10,10,19.3,790,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.9,67,101900,873,1388,290,327,1,327,36900,100,36900,12550,40,7.7,10,10,19.3,790,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,2.8,-3.9,62,101900,936,1388,294,350,1,350,39700,100,39700,13730,70,5.2,10,10,19.3,790,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,2.2,-3.9,64,101900,930,1388,292,307,1,307,35200,100,35100,12650,50,5.7,10,10,19.3,790,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,2.2,-4.4,62,101900,856,1388,291,316,0,316,35600,0,35600,12140,50,5.2,10,10,19.3,820,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1981,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,2.2,-3.3,67,101900,718,1388,293,247,0,247,27700,0,27700,9270,80,4.1,10,10,19.3,820,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.3,70,101900,527,1388,290,169,0,169,18800,0,18800,5990,90,4.1,10,10,20.9,1010,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.3,70,102000,294,1388,290,82,0,82,9100,0,9100,2740,120,3.1,10,10,24.1,1010,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.3,70,102000,56,937,290,22,0,22,2500,0,2500,720,140,2.6,10,10,24.1,910,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.3,70,102100,0,0,290,0,0,0,0,0,0,0,170,3.1,10,10,24.1,910,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,102100,0,0,291,0,0,0,0,0,0,0,170,2.6,10,10,24.1,910,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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.1,-2.8,76,102100,0,0,288,0,0,0,0,0,0,0,170,2.6,10,10,24.1,910,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,102000,0,0,291,0,0,0,0,0,0,0,210,3.1,10,10,24.1,1070,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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,-2.8,73,102000,0,0,291,0,0,0,0,0,0,0,240,4.1,10,10,24.1,1070,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,102000,0,0,291,0,0,0,0,0,0,0,240,3.1,10,10,24.1,1070,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,102000,0,0,291,0,0,0,0,0,0,0,310,3.1,10,10,24.1,1070,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.9,67,102000,0,0,290,0,0,0,0,0,0,0,320,3.6,10,10,24.1,1070,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.9,67,101900,0,0,290,0,0,0,0,0,0,0,310,4.1,10,10,24.1,1070,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-4.4,64,101900,0,0,289,0,0,0,0,0,0,0,310,3.6,10,10,24.1,1070,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1981,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,1.7,-4.4,64,101900,0,0,289,0,0,0,0,0,0,0,330,3.6,10,10,24.1,1070,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1981,3,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-4.4,64,101900,0,0,289,0,0,0,0,0,0,0,340,5.2,10,10,24.1,1070,9,999999999,80,0.1180,0,88,999.000,999.0,99.0 +1981,3,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-4.4,67,101900,93,1214,287,24,0,24,2700,0,2700,810,70,3.1,10,10,24.1,1160,9,999999999,80,0.1350,0,88,999.000,999.0,99.0 +1981,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,2.8,-4.4,59,102000,341,1387,294,91,0,91,10200,0,10200,3160,310,1.5,10,10,24.1,1490,9,999999999,80,0.1350,0,88,999.000,999.0,99.0 +1981,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.3,-4.4,57,101900,568,1387,296,176,0,176,19700,0,19700,6450,310,1.5,10,10,24.1,1490,9,999999999,80,0.1350,0,88,999.000,999.0,99.0 +1981,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,3.9,-4.4,55,102000,752,1387,299,257,1,256,28900,100,28900,9790,290,2.6,10,10,24.1,1310,9,999999999,80,0.1350,0,88,999.000,999.0,99.0 +1981,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,4.4,-3.9,55,101900,880,1387,301,296,1,295,33700,100,33600,11890,260,4.1,10,10,24.1,1070,9,999999999,89,0.1350,0,88,999.000,999.0,99.0 +1981,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,5.0,-4.4,51,101900,943,1387,303,310,1,309,35500,100,35400,12810,290,3.6,10,10,24.1,1070,9,999999999,80,0.1350,0,88,999.000,999.0,99.0 +1981,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,6.1,-3.3,51,101800,937,1387,309,339,2,338,38600,200,38400,13470,270,3.6,10,10,24.1,940,9,999999999,89,0.1350,0,88,999.000,999.0,99.0 +1981,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,6.7,-2.8,51,101700,862,1387,304,367,82,316,40300,8400,35100,10070,250,2.6,10,9,24.1,1370,9,999999999,89,0.1350,0,88,999.000,999.0,99.0 +1981,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,7.8,-1.7,52,101700,724,1387,319,107,0,107,12800,0,12800,4990,270,5.7,10,10,24.1,1680,9,999999999,100,0.1350,0,88,999.000,999.0,99.0 +1981,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,7.2,-1.7,54,101700,532,1387,316,107,5,105,12400,300,12300,4330,270,4.6,10,10,24.1,1250,9,999999999,100,0.1350,0,88,999.000,999.0,99.0 +1981,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,7.2,-0.6,58,101700,300,1387,317,59,1,59,6800,0,6700,2200,280,4.6,10,10,24.1,1400,9,999999999,110,0.1350,0,88,999.000,999.0,99.0 +1981,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,6.1,0.6,68,101700,60,983,314,13,0,13,1500,0,1500,480,290,4.6,10,10,24.1,1400,9,999999999,110,0.1350,0,88,999.000,999.0,99.0 +1981,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,5.6,0.0,68,101700,0,0,311,0,0,0,0,0,0,0,290,5.2,10,10,24.1,2740,9,999999999,110,0.1180,0,88,999.000,999.0,99.0 +1981,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,5.0,0.0,70,101700,0,0,308,0,0,0,0,0,0,0,280,5.7,10,10,24.1,1400,9,999999999,110,0.1180,0,88,999.000,999.0,99.0 +1981,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,4.4,-0.6,70,101700,0,0,305,0,0,0,0,0,0,0,290,5.2,10,10,24.1,1400,9,999999999,110,0.1180,0,88,999.000,999.0,99.0 +1981,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,3.9,-0.6,73,101700,0,0,303,0,0,0,0,0,0,0,280,5.2,10,10,24.1,1310,9,999999999,110,0.1180,0,88,999.000,999.0,99.0 +1981,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,3.9,0.0,76,101700,0,0,303,0,0,0,0,0,0,0,290,4.6,10,10,24.1,1310,9,999999999,110,0.1180,0,88,999.000,999.0,99.0 +1981,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,3.3,0.0,79,101600,0,0,301,0,0,0,0,0,0,0,310,4.6,10,10,20.9,1400,9,999999999,110,0.1180,0,88,999.000,999.0,99.0 +1981,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,3.3,-0.6,76,101600,0,0,300,0,0,0,0,0,0,0,270,4.1,10,10,20.9,790,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1981,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,3.3,-0.6,76,101600,0,0,300,0,0,0,0,0,0,0,280,4.1,10,10,20.9,1070,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1981,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,2.8,-0.6,79,101500,0,0,298,0,0,0,0,0,0,0,310,3.6,10,10,20.9,1100,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1981,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,2.8,-0.6,79,101500,0,0,298,0,0,0,0,0,0,0,310,4.1,10,10,20.9,1100,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1981,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,2.8,-1.7,73,101500,0,0,297,0,0,0,0,0,0,0,300,4.6,10,10,20.9,1100,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1981,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,2.8,-1.7,73,101500,0,0,297,0,0,0,0,0,0,0,300,5.2,10,10,24.1,1520,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1981,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,2.2,-1.7,76,101500,99,1236,294,21,1,21,2400,0,2400,740,310,4.1,10,10,24.1,1520,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1981,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,3.9,-1.7,67,101500,349,1386,273,184,470,68,19100,39000,9300,1230,300,4.1,4,3,24.1,77777,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1981,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,3.9,-2.8,62,101500,576,1386,292,223,61,199,24600,6000,22100,5420,300,5.2,10,9,24.1,2440,9,999999999,89,0.0550,0,88,999.000,999.0,99.0 +1981,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,5.6,-4.4,49,101500,759,1386,306,229,14,222,26200,1200,25600,9000,310,6.7,10,10,24.1,3050,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,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,6.1,-3.9,49,101400,886,1386,309,286,7,282,32800,600,32400,11620,310,6.7,10,10,24.1,3050,9,999999999,89,0.0550,0,88,999.000,999.0,99.0 +1981,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,7.8,-4.4,42,101400,949,1386,316,319,12,311,36600,1100,35800,12920,310,7.2,10,10,24.1,1310,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,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,6.7,-5.6,42,101300,943,1386,301,348,104,277,38300,11000,30800,8180,310,6.7,9,9,24.1,1400,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,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,7.2,-5.6,40,101300,868,1386,312,237,9,232,27500,800,27000,10050,300,6.2,10,10,24.1,1490,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,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,7.2,-5.6,40,101300,730,1386,312,165,3,164,19300,200,19100,7090,310,5.7,10,10,24.1,1490,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,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,6.7,-5.6,42,101300,538,1386,309,167,4,165,18600,300,18500,5990,310,4.6,10,10,24.1,1980,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,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,6.1,-5.0,45,101300,305,1386,308,78,7,77,8800,300,8700,2680,280,5.2,10,10,24.1,1980,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,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,6.1,-5.0,45,101300,63,1005,308,15,0,15,1700,0,1700,540,280,4.6,10,10,24.1,1980,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,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,6.1,-4.4,47,101400,0,0,308,0,0,0,0,0,0,0,300,5.2,10,10,24.1,2130,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1981,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,5.6,-3.3,53,101400,0,0,307,0,0,0,0,0,0,0,320,5.2,10,10,24.1,1680,9,999999999,89,0.1190,0,88,999.000,999.0,99.0 +1981,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,5.0,-2.8,58,101400,0,0,290,0,0,0,0,0,0,0,310,3.6,9,8,24.1,2130,9,999999999,89,0.1190,0,88,999.000,999.0,99.0 +1981,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,3.9,-2.8,62,101500,0,0,272,0,0,0,0,0,0,0,300,3.6,4,3,24.1,77777,9,999999999,89,0.1190,0,88,999.000,999.0,99.0 +1981,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,2.8,-2.8,67,101400,0,0,265,0,0,0,0,0,0,0,310,3.1,2,2,24.1,77777,9,999999999,89,0.1190,0,88,999.000,999.0,99.0 +1981,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,2.8,-2.2,70,101400,0,0,270,0,0,0,0,0,0,0,290,3.6,4,4,24.1,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1981,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,2.2,-2.8,70,101400,0,0,267,0,0,0,0,0,0,0,260,3.6,4,4,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,101300,0,0,252,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,101300,0,0,252,0,0,0,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,101200,0,0,252,0,0,0,0,0,0,0,280,5.7,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.3,70,101200,0,0,252,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,101200,0,0,252,0,0,0,0,0,0,0,280,6.2,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1981,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,2.2,-2.8,70,101200,106,1282,262,35,33,31,3700,1700,3500,640,270,5.7,8,2,20.9,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,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,2.8,-2.8,67,101200,356,1386,277,129,66,112,14100,5800,12600,2790,280,6.7,10,7,16.1,6100,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,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,3.9,-2.8,62,101200,583,1386,278,252,160,186,27500,15900,20800,4410,280,6.7,10,6,16.1,6100,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,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,5.6,-4.4,49,101100,766,1386,306,217,2,215,24800,200,24700,8860,290,5.2,10,10,19.3,1830,9,999999999,80,0.1650,0,88,999.000,999.0,99.0 +1981,3,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-4.4,49,101100,893,1386,306,270,30,251,29800,3000,27800,8640,290,6.2,10,10,19.3,1830,9,999999999,80,0.1650,0,88,999.000,999.0,99.0 +1981,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,5.6,-3.9,51,101000,956,1386,307,245,3,243,28700,300,28500,10940,260,7.2,10,10,19.3,1830,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,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,5.0,-3.3,55,101000,949,1386,305,252,6,248,29400,500,29100,11070,280,6.7,10,10,11.3,1160,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,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,5.0,-0.6,68,100800,874,1386,308,277,8,272,31700,700,31300,11250,210,2.1,10,10,19.3,3050,9,999999999,110,0.1650,0,88,999.000,999.0,99.0 +1981,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,5.6,-3.9,51,100800,735,1386,307,192,4,189,22000,300,21800,7910,240,4.6,10,10,19.3,1680,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,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,5.6,-5.0,47,100700,543,1386,305,135,0,135,15400,0,15400,5270,280,4.6,10,10,19.3,1680,9,999999999,80,0.1650,0,88,999.000,999.0,99.0 +1981,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,5.6,-5.6,45,100700,310,1386,305,64,2,64,7300,100,7300,2370,300,5.7,10,10,19.3,1490,9,999999999,80,0.1650,0,88,999.000,999.0,99.0 +1981,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,5.0,-5.0,49,100800,67,1028,274,18,19,16,1900,900,1900,330,300,5.2,4,3,24.1,77777,9,999999999,80,0.1650,0,88,999.000,999.0,99.0 +1981,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,5.0,-5.0,49,100800,0,0,271,0,0,0,0,0,0,0,270,5.7,2,2,24.1,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1981,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,4.4,-5.0,51,100800,0,0,269,0,0,0,0,0,0,0,280,4.6,2,2,24.1,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1981,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,-2.8,67,100900,0,0,274,0,0,0,0,0,0,0,320,5.7,6,6,24.1,1400,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1981,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,2.8,-3.3,65,100900,0,0,281,0,0,0,0,0,0,0,320,5.7,8,8,24.1,2130,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1981,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,2.2,-3.9,64,100800,0,0,270,0,0,0,0,0,0,0,330,6.2,6,6,24.1,2130,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1981,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,1.1,-4.4,67,100800,0,0,253,0,0,0,0,0,0,0,320,5.2,1,1,24.1,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1981,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,0.0,-5.0,69,100800,0,0,249,0,0,0,0,0,0,0,320,6.2,1,1,24.1,77777,9,999999999,80,0.1210,0,88,999.000,999.0,99.0 +1981,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,0.0,-5.6,67,100800,0,0,243,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,80,0.1210,0,88,999.000,999.0,99.0 +1981,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,-6.1,66,100900,0,0,241,0,0,0,0,0,0,0,320,6.7,0,0,24.1,77777,9,999999999,80,0.1210,0,88,999.000,999.0,99.0 +1981,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.6,-6.1,66,100900,0,0,241,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,80,0.1210,0,88,999.000,999.0,99.0 +1981,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,-1.1,-6.1,69,100900,0,0,244,0,0,0,0,0,0,0,300,5.7,1,1,24.1,77777,9,999999999,80,0.1210,0,88,999.000,999.0,99.0 +1981,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,-0.6,-6.1,66,101000,0,0,278,0,0,0,0,0,0,0,310,6.2,10,10,24.1,1310,9,999999999,80,0.1210,0,88,999.000,999.0,99.0 +1981,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,0.0,-6.7,61,101000,113,1327,280,28,4,28,3200,0,3200,930,310,5.2,10,10,24.1,1680,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,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,1.1,-6.7,57,101000,364,1385,284,100,0,100,11200,0,11200,3480,290,5.7,10,10,24.1,1830,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,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,2.2,-7.2,50,101000,590,1385,280,217,82,183,23900,8000,20500,5170,320,4.6,10,9,24.1,1830,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,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,3.3,-7.8,44,101000,773,1385,271,471,537,173,50700,54700,20100,3850,300,4.1,6,6,24.1,1830,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,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,4.4,-7.2,43,100900,900,1385,276,527,400,269,57300,42800,29400,7120,290,6.2,6,6,24.1,1520,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,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,4.4,-7.2,43,100900,962,1385,289,460,213,313,50500,22500,34800,9420,300,6.2,9,9,24.1,1520,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,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,4.4,-6.7,45,100800,955,1385,298,299,2,297,34400,200,34200,12600,280,6.2,10,10,24.1,1310,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,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,4.4,-5.6,49,100700,880,1385,291,383,79,333,42100,8100,36900,10670,260,5.7,9,9,24.1,1310,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,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,5.0,-6.7,43,100700,741,1385,301,186,3,185,21500,200,21400,7820,270,6.7,10,10,24.1,1520,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,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,5.6,-6.1,43,100600,548,1385,289,153,79,122,17000,7800,13900,2850,260,6.2,9,8,24.1,1400,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,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,4.4,-7.2,43,100600,316,1385,269,148,392,60,15300,31400,8100,1080,260,5.7,3,3,24.1,77777,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,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,-8.3,41,100600,71,1050,255,38,197,17,3200,9600,2500,310,270,5.2,0,0,24.1,77777,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,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,3.9,-7.8,43,100600,0,0,255,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,69,0.1210,0,88,999.000,999.0,99.0 +1981,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,3.3,-7.8,44,100700,0,0,268,0,0,0,0,0,0,0,300,2.6,5,5,24.1,77777,9,999999999,69,0.1210,0,88,999.000,999.0,99.0 +1981,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,3.9,-8.3,41,100700,0,0,280,0,0,0,0,0,0,0,300,3.6,9,8,24.1,2440,9,999999999,69,0.1210,0,88,999.000,999.0,99.0 +1981,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,3.3,-3.9,60,100700,0,0,297,0,0,0,0,0,0,0,190,4.1,10,10,24.1,1980,9,999999999,89,0.1210,0,88,999.000,999.0,99.0 +1981,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,3.3,-4.4,57,100600,0,0,296,0,0,0,0,0,0,0,180,3.1,10,10,24.1,1160,9,999999999,80,0.1210,0,88,999.000,999.0,99.0 +1981,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,2.8,-5.6,55,100500,0,0,293,0,0,0,0,0,0,0,190,4.1,10,10,24.1,1520,9,999999999,80,0.1210,0,88,999.000,999.0,99.0 +1981,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,2.8,-5.0,57,100500,0,0,275,0,0,0,0,0,0,0,180,4.6,7,7,24.1,1830,9,999999999,80,0.1220,0,88,999.000,999.0,99.0 +1981,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,-4.4,62,100500,0,0,283,0,0,0,0,0,0,0,210,5.7,9,9,24.1,1520,9,999999999,80,0.1220,0,88,999.000,999.0,99.0 +1981,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.2,-3.3,67,100400,0,0,284,0,0,0,0,0,0,0,230,6.2,10,9,24.1,2440,9,999999999,89,0.1220,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,100300,0,0,260,0,0,0,0,0,0,0,220,7.2,2,2,24.1,77777,9,999999999,89,0.1220,0,88,999.000,999.0,99.0 +1981,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,2.2,-2.8,70,100200,0,0,275,0,0,0,0,0,0,0,230,7.2,7,7,24.1,2440,9,999999999,89,0.1220,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,100200,0,0,269,0,0,0,0,0,0,0,270,3.1,6,6,24.1,2440,9,999999999,89,0.1220,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.2,76,100300,120,1349,278,42,103,32,4400,4700,4000,580,240,3.6,8,8,24.1,1830,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1981,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,-2.2,65,100300,371,1384,272,169,382,68,18300,32600,9600,1230,240,5.2,4,3,24.1,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1981,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,6.1,-2.2,56,100300,597,1384,269,404,822,54,43100,78800,9000,1300,240,4.1,0,0,24.1,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1981,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,8.9,-1.1,50,100300,780,1384,281,565,895,66,60000,88200,10100,1650,240,6.2,0,0,24.1,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1981,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,10.6,-1.1,45,100200,907,1384,288,674,905,85,70800,90000,11700,2090,260,4.1,2,0,24.1,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1981,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,11.7,-2.8,37,100100,968,1384,296,686,885,71,72500,88400,10400,2070,240,5.2,1,1,24.1,77777,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1981,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,12.8,-3.9,31,100100,961,1384,304,633,736,124,67000,73900,15500,3270,260,8.2,2,2,24.1,77777,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1981,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,11.7,-5.6,30,100100,885,1384,332,267,8,262,30700,700,30300,11070,280,8.8,10,10,24.1,1980,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1981,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,12.8,-4.4,30,100000,746,1384,314,246,104,191,27300,10800,21500,4900,250,7.2,6,6,24.1,1980,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1981,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,11.7,-5.0,31,99900,554,1384,312,242,198,163,26400,19500,18600,3820,250,7.7,7,7,24.1,1980,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1981,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,11.1,-5.6,31,100000,321,1384,314,101,94,80,11100,7800,9300,1740,260,7.2,8,8,24.1,1830,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1981,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,10.6,-2.8,39,100000,75,1073,330,21,3,21,2400,0,2400,720,360,6.7,10,10,24.1,2130,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1981,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,8.9,-1.7,48,100100,0,0,315,0,0,0,0,0,0,0,290,6.2,10,9,24.1,2440,9,999999999,100,0.1220,0,88,999.000,999.0,99.0 +1981,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,8.9,-2.2,46,100100,0,0,314,0,0,0,0,0,0,0,330,4.6,10,9,24.1,2440,9,999999999,89,0.1220,0,88,999.000,999.0,99.0 +1981,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,5.6,1.1,73,100100,0,0,312,0,0,0,0,0,0,0,100,5.2,10,10,24.1,1830,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1981,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,4.4,1.7,82,100100,0,0,307,0,0,0,0,0,0,0,100,2.6,10,10,24.1,1830,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1981,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,4.4,1.1,79,100000,0,0,307,0,0,0,0,0,0,0,110,2.6,10,10,24.1,1830,9,999999999,110,0.1220,0,88,999.000,999.0,99.0 +1981,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,4.4,1.7,82,100000,0,0,307,0,0,0,0,0,0,0,130,2.1,10,10,24.1,1160,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1981,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,5.0,0.6,73,100000,0,0,309,0,0,0,0,0,0,0,360,2.1,10,10,24.1,1160,9,999999999,110,0.1230,0,88,999.000,999.0,99.0 +1981,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,3.9,0.6,79,99900,0,0,304,0,0,0,0,0,0,0,310,5.2,10,10,19.3,820,9,999999999,110,0.1230,0,88,999.000,999.0,99.0 +1981,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,3.9,0.0,76,99800,0,0,303,0,0,0,0,0,0,0,300,7.2,10,10,24.1,1160,9,999999999,110,0.1230,0,88,999.000,999.0,99.0 +1981,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,3.3,-2.2,67,99800,0,0,298,0,0,0,0,0,0,0,300,7.2,10,10,24.1,1680,9,999999999,89,0.1230,0,88,999.000,999.0,99.0 +1981,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,-5.6,55,99800,0,0,293,0,0,0,0,0,0,0,300,8.2,10,10,24.1,1830,9,999999999,80,0.1230,0,88,999.000,999.0,99.0 +1981,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,1.7,-8.9,46,99800,0,12,277,0,0,0,0,0,0,0,280,7.7,9,9,24.1,1830,9,999999999,69,0.1230,0,88,999.000,999.0,99.0 +1981,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,0.6,-9.4,48,99800,127,1383,272,22,6,22,2600,0,2600,780,300,7.2,9,9,24.1,4270,9,999999999,60,0.1570,0,88,999.000,999.0,99.0 +1981,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,0.0,-10.0,47,99800,379,1383,254,139,148,100,15400,13100,11800,2210,290,7.7,6,5,24.1,7620,9,999999999,60,0.1570,0,88,999.000,999.0,99.0 +1981,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.7,-10.0,42,99800,604,1383,245,382,650,102,40400,62800,12900,2060,290,7.2,1,0,24.1,77777,9,999999999,60,0.1570,0,88,999.000,999.0,99.0 +1981,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,2.2,-10.6,39,99700,787,1383,259,558,682,174,58100,67300,19700,3800,320,7.2,4,4,24.1,77777,9,999999999,60,0.1570,0,88,999.000,999.0,99.0 +1981,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,2.2,-11.1,37,99600,913,1383,266,653,557,288,68300,57300,30300,7660,300,9.8,7,7,24.1,1490,9,999999999,60,0.1570,0,88,999.000,999.0,99.0 +1981,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,0.0,-11.1,43,99600,975,1383,255,509,345,268,55900,37200,29600,7610,290,9.8,6,6,24.1,1490,9,999999999,60,0.1570,0,88,999.000,999.0,99.0 +1981,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,0.6,-12.2,38,99600,967,1383,256,587,434,285,61900,44900,30400,8100,310,8.8,6,6,24.1,1490,9,999999999,50,0.1570,0,88,999.000,999.0,99.0 +1981,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,0.0,-12.8,38,99600,891,1383,260,338,146,244,37400,15400,27400,6900,310,10.3,8,8,24.1,1490,9,999999999,50,0.1570,0,88,999.000,999.0,99.0 +1981,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,0.0,-13.3,36,99600,752,1383,256,347,220,228,38100,22800,25600,5870,310,11.3,7,7,24.1,1520,9,999999999,50,0.1570,0,88,999.000,999.0,99.0 +1981,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,-1.1,-14.4,36,99700,559,1383,250,239,145,181,26000,14300,20200,4250,310,11.3,7,7,24.1,1490,9,999999999,50,0.1570,0,88,999.000,999.0,99.0 +1981,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,-1.1,-16.1,31,99700,326,1383,234,160,425,61,16600,34500,8400,1110,320,11.3,1,1,24.1,77777,9,999999999,40,0.1570,0,88,999.000,999.0,99.0 +1981,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,-1.1,-19.4,24,99800,78,1095,234,22,42,18,2300,1700,2200,300,320,11.3,2,2,24.1,77777,9,999999999,40,0.1570,0,88,999.000,999.0,99.0 +1981,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,-18.9,26,99900,0,0,233,0,0,0,0,0,0,0,320,11.3,3,2,24.1,77777,9,999999999,40,0.1230,0,88,999.000,999.0,99.0 +1981,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,-2.8,-18.3,29,100000,0,0,230,0,0,0,0,0,0,0,320,11.8,3,2,24.1,77777,9,999999999,40,0.1230,0,88,999.000,999.0,99.0 +1981,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,-3.9,-17.8,33,100100,0,0,219,0,0,0,0,0,0,0,320,12.4,0,0,24.1,77777,9,999999999,40,0.1230,0,88,999.000,999.0,99.0 +1981,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,-3.9,-16.7,37,100100,0,0,220,0,0,0,0,0,0,0,320,11.8,0,0,24.1,77777,9,999999999,40,0.1230,0,88,999.000,999.0,99.0 +1981,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,-4.4,-16.1,40,100100,0,0,219,0,0,0,0,0,0,0,320,10.3,0,0,24.1,77777,9,999999999,50,0.1230,0,88,999.000,999.0,99.0 +1981,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,-3.9,-16.1,38,100000,0,0,221,0,0,0,0,0,0,0,310,12.4,0,0,24.1,77777,9,999999999,40,0.1230,0,88,999.000,999.0,99.0 +1981,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,-3.9,-15.6,40,100100,0,0,221,0,0,0,0,0,0,0,290,11.8,0,0,24.1,77777,9,999999999,50,0.1240,0,88,999.000,999.0,99.0 +1981,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,-3.9,-15.0,42,100100,0,0,222,0,0,0,0,0,0,0,290,8.8,0,0,24.1,77777,9,999999999,50,0.1240,0,88,999.000,999.0,99.0 +1981,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,-3.3,-13.9,44,100000,0,0,225,0,0,0,0,0,0,0,300,8.8,0,0,24.1,77777,9,999999999,50,0.1240,0,88,999.000,999.0,99.0 +1981,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,-3.3,-12.2,51,100000,0,0,226,0,0,0,0,0,0,0,270,7.7,0,0,24.1,77777,9,999999999,60,0.1240,0,88,999.000,999.0,99.0 +1981,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.8,-10.6,55,100100,0,0,229,0,0,0,0,0,0,0,280,6.2,0,0,24.1,77777,9,999999999,60,0.1240,0,88,999.000,999.0,99.0 +1981,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,-8.9,61,100100,0,58,233,0,0,0,0,0,0,0,260,6.2,0,0,24.1,77777,9,999999999,69,0.1240,0,88,999.000,999.0,99.0 +1981,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,-2.8,-8.3,66,100100,134,1383,231,49,234,26,5000,12900,3700,460,240,5.7,0,0,24.1,77777,9,999999999,69,0.0920,0,88,999.000,999.0,99.0 +1981,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,1.1,-6.7,57,100100,386,1383,246,217,602,53,22700,52700,8000,1030,260,5.7,0,0,24.1,77777,9,999999999,69,0.0920,0,88,999.000,999.0,99.0 +1981,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,3.3,-6.7,48,100100,612,1383,254,407,765,73,43300,74000,10500,1550,280,6.2,0,0,24.1,77777,9,999999999,69,0.0920,0,88,999.000,999.0,99.0 +1981,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,5.6,-6.7,41,100000,794,1383,263,571,848,88,61300,84700,12600,2080,280,6.2,0,0,24.1,77777,9,999999999,69,0.0920,0,88,999.000,999.0,99.0 +1981,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,7.2,-6.7,37,100000,920,1383,269,686,889,98,71700,88300,12700,2230,270,7.2,0,0,24.1,77777,9,999999999,69,0.0920,0,88,999.000,999.0,99.0 +1981,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,8.3,-6.7,34,99900,981,1383,273,743,908,103,77600,90500,13200,2500,280,5.7,0,0,24.1,77777,9,999999999,69,0.0920,0,88,999.000,999.0,99.0 +1981,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,10.6,-6.1,31,99800,973,1383,283,733,902,102,76500,89900,13100,2460,280,6.2,0,0,24.1,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1981,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,11.7,-6.1,29,99700,897,1383,287,667,884,97,69700,87700,12600,2150,270,6.7,0,0,24.1,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1981,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,11.7,-7.2,26,99700,757,1383,286,544,822,96,57400,81300,12700,2120,270,6.7,2,0,24.1,77777,9,999999999,69,0.0920,0,88,999.000,999.0,99.0 +1981,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,11.7,-6.1,29,99600,564,1383,287,373,706,88,39600,67500,11900,1770,270,7.2,4,0,24.1,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1981,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,11.1,-6.1,30,99600,331,1383,290,170,420,71,18100,34200,9900,1290,240,7.2,7,1,24.1,77777,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1981,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,9.4,-5.6,35,99500,82,1141,298,23,18,21,2500,1100,2400,520,230,4.1,8,6,24.1,7620,9,999999999,80,0.0920,0,88,999.000,999.0,99.0 +1981,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,8.3,-4.4,41,99500,0,0,303,0,0,0,0,0,0,0,230,6.7,10,8,24.1,6100,9,999999999,80,0.1240,0,88,999.000,999.0,99.0 +1981,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,7.8,-4.4,42,99500,0,0,307,0,0,0,0,0,0,0,220,7.7,10,9,24.1,6100,9,999999999,80,0.1240,0,88,999.000,999.0,99.0 +1981,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,7.8,-5.0,40,99500,0,0,295,0,0,0,0,0,0,0,230,7.7,10,7,24.1,6100,9,999999999,80,0.1240,0,88,999.000,999.0,99.0 +1981,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,7.8,-5.0,40,99500,0,0,282,0,0,0,0,0,0,0,230,7.2,6,2,24.1,77777,9,999999999,80,0.1240,0,88,999.000,999.0,99.0 +1981,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,6.7,-5.6,42,99400,0,0,273,0,0,0,0,0,0,0,230,7.2,4,1,24.1,77777,9,999999999,80,0.1240,0,88,999.000,999.0,99.0 +1981,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,5.6,-5.6,45,99400,0,0,264,0,0,0,0,0,0,0,220,6.2,1,0,24.1,77777,9,999999999,80,0.1240,0,88,999.000,999.0,99.0 +1981,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,5.0,-6.1,45,99400,0,0,261,0,0,0,0,0,0,0,240,5.7,0,0,24.1,77777,9,999999999,80,0.1250,0,88,999.000,999.0,99.0 +1981,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,5.0,-5.6,47,99300,0,0,262,0,0,0,0,0,0,0,240,6.7,0,0,24.1,77777,9,999999999,80,0.1250,0,88,999.000,999.0,99.0 +1981,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,5.0,-5.0,49,99200,0,0,262,0,0,0,0,0,0,0,220,4.1,0,0,24.1,77777,9,999999999,80,0.1250,0,88,999.000,999.0,99.0 +1981,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,4.4,-5.0,51,99100,0,0,260,0,0,0,0,0,0,0,240,4.1,0,0,24.1,77777,9,999999999,80,0.1250,0,88,999.000,999.0,99.0 +1981,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,3.9,-4.4,55,99100,0,0,264,0,0,0,0,0,0,0,210,3.6,6,1,24.1,77777,9,999999999,80,0.1250,0,88,999.000,999.0,99.0 +1981,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,57,99100,1,104,273,0,0,0,0,0,0,0,250,3.6,10,4,24.1,77777,9,999999999,89,0.1250,0,88,999.000,999.0,99.0 +1981,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,4.4,-3.9,55,99100,142,1382,287,31,10,30,3400,600,3300,740,230,4.1,10,8,24.1,5490,9,999999999,89,0.1550,0,88,999.000,999.0,99.0 +1981,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,6.7,-3.9,47,99100,393,1382,311,89,6,87,10100,300,10000,3290,240,4.1,10,10,24.1,5490,9,999999999,89,0.1550,0,88,999.000,999.0,99.0 +1981,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,-4.4,41,99100,619,1382,318,118,8,114,13800,500,13500,4940,260,4.6,10,10,19.3,5490,9,999999999,80,0.1550,0,88,999.000,999.0,99.0 +1981,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,9.4,-2.2,44,99100,801,1382,326,238,7,234,27300,600,26900,9660,260,4.6,10,10,16.1,4570,9,999999999,89,0.1550,0,88,999.000,999.0,99.0 +1981,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,10.0,-1.7,44,99100,926,1382,329,263,7,258,30500,600,30100,11250,280,4.6,10,10,16.1,3660,9,999999999,100,0.1550,0,88,999.000,999.0,99.0 +1981,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,11.1,-1.1,43,99000,987,1382,335,309,7,304,35700,600,35300,13060,280,3.1,10,10,16.1,3050,9,999999999,100,0.1550,0,88,999.000,999.0,99.0 +1981,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,9.4,0.6,54,99000,979,1382,329,289,3,288,33600,300,33400,12530,360,5.2,10,10,19.3,1160,9,999999999,110,0.1550,0,88,999.000,999.0,99.0 +1981,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,7.8,-1.7,52,99000,902,1382,319,247,3,245,28700,300,28500,10690,360,7.7,10,10,19.3,1160,9,999999999,100,0.1550,0,88,999.000,999.0,99.0 +1981,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,7.2,-3.9,46,99000,763,1382,314,141,3,139,16700,200,16600,6360,360,8.8,10,10,19.3,1160,9,999999999,89,0.1550,0,88,999.000,999.0,99.0 +1981,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,5.6,-6.7,41,99100,569,1382,303,152,1,151,17200,100,17200,5860,320,5.7,10,10,19.3,1280,9,999999999,69,0.1550,0,88,999.000,999.0,99.0 +1981,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,4.4,-7.2,43,99100,336,1382,298,87,0,87,9700,0,9700,3050,320,7.7,10,10,16.1,730,9,999999999,69,0.1550,0,88,999.000,999.0,99.0 +1981,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,1.1,-3.3,73,99200,86,1163,288,24,0,24,2700,0,2700,810,360,9.8,10,10,4.0,730,9,999999999,89,0.1550,0,88,999.000,999.0,99.0 +1981,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,1.1,-5.6,62,99200,0,0,285,0,0,0,0,0,0,0,340,7.2,10,10,6.4,760,9,999999999,80,0.1250,0,88,999.000,999.0,99.0 +1981,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,-10.0,45,99200,0,0,279,0,0,0,0,0,0,0,330,7.2,10,10,16.1,2440,9,999999999,60,0.1250,0,88,999.000,999.0,99.0 +1981,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,-0.6,-11.7,43,99200,0,0,272,0,0,0,0,0,0,0,340,9.3,10,10,16.1,2440,9,999999999,60,0.1250,0,88,999.000,999.0,99.0 +1981,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.1,-12.2,43,99100,0,0,270,0,0,0,0,0,0,0,340,8.8,10,10,16.1,1400,9,999999999,50,0.1250,0,88,999.000,999.0,99.0 +1981,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,-1.7,-12.8,43,99200,0,0,267,0,0,0,0,0,0,0,350,9.8,10,10,16.1,1490,9,999999999,50,0.1250,0,88,999.000,999.0,99.0 +1981,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,-13.9,43,99100,0,0,261,0,0,0,0,0,0,0,330,9.8,10,10,16.1,1980,9,999999999,50,0.1250,0,88,999.000,999.0,99.0 +1981,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,-3.9,-14.4,44,99100,0,0,256,0,0,0,0,0,0,0,330,9.3,10,10,24.1,2440,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-4.4,-14.4,46,99000,0,0,254,0,0,0,0,0,0,0,330,10.3,10,10,24.1,2440,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-5.0,-13.9,50,99000,0,0,253,0,0,0,0,0,0,0,320,10.3,10,10,24.1,2740,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-6.1,-15.0,50,98900,0,0,241,0,0,0,0,0,0,0,320,11.3,10,9,24.1,3050,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-6.7,-16.1,47,98900,0,0,216,0,0,0,0,0,0,0,310,8.2,6,1,24.1,77777,9,999999999,40,0.1260,0,88,999.000,999.0,99.0 +1981,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.7,-16.7,45,98800,1,127,211,2,3,1,0,0,0,0,320,9.8,3,0,24.1,77777,9,999999999,40,0.0520,0,88,999.000,999.0,99.0 +1981,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,-6.7,-17.2,43,98800,149,1381,211,60,342,26,6500,20000,4300,470,310,9.8,3,0,24.1,77777,9,999999999,40,0.0520,0,88,999.000,999.0,99.0 +1981,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,-4.4,-16.7,38,98700,401,1381,219,242,650,57,25200,57300,8500,1090,310,11.3,6,0,24.1,77777,9,999999999,40,0.0520,0,88,999.000,999.0,99.0 +1981,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,-3.3,-16.7,35,98700,626,1381,222,444,751,108,46900,72900,13800,2200,310,11.8,9,0,24.1,77777,9,999999999,40,0.0520,0,88,999.000,999.0,99.0 +1981,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,-1.7,-16.7,31,98700,808,1381,227,604,837,118,62900,82700,14400,2530,300,11.3,8,0,24.1,77777,9,999999999,40,0.0520,0,88,999.000,999.0,99.0 +1981,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,0.6,-18.9,22,98400,933,1381,233,725,911,114,77400,91600,15300,2970,320,11.8,5,0,24.1,77777,9,999999999,40,0.0520,0,88,999.000,999.0,99.0 +1981,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,2.2,-17.2,22,98400,993,1381,240,779,951,99,81400,94900,12900,2520,310,11.3,3,0,24.1,77777,9,999999999,40,0.0520,0,88,999.000,999.0,99.0 +1981,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,3.3,-16.1,23,98300,985,1381,245,769,976,77,81000,97500,11200,2220,300,11.8,0,0,24.1,77777,9,999999999,40,0.0520,0,88,999.000,999.0,99.0 +1981,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,4.4,-15.0,23,98200,908,1381,250,699,958,72,73600,95400,10800,1950,300,12.4,0,0,24.1,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1981,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,5.0,-15.0,22,98200,768,1381,252,572,918,64,60500,90400,10000,1610,290,11.3,0,0,24.1,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1981,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,5.0,-15.6,21,98200,574,1381,252,400,842,52,42500,80300,9000,1250,300,10.8,0,0,24.1,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1981,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,4.4,-15.0,23,98200,341,1381,250,203,681,37,21700,58600,7200,850,290,10.3,0,0,24.1,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1981,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,3.9,-15.0,24,98300,91,1185,248,46,263,19,4200,13500,3100,350,310,7.7,0,0,24.1,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1981,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,2.8,-13.9,28,98400,0,0,246,0,0,0,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,1.7,-10.0,42,98400,0,0,245,0,0,0,0,0,0,0,270,6.2,0,0,24.1,77777,9,999999999,60,0.1260,0,88,999.000,999.0,99.0 +1981,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,1.7,-8.3,48,98400,0,0,260,0,0,0,0,0,0,0,300,9.3,4,4,24.1,77777,9,999999999,69,0.1260,0,88,999.000,999.0,99.0 +1981,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,-2.2,-11.1,51,98600,0,0,238,0,0,0,0,0,0,0,290,10.8,2,2,24.1,77777,9,999999999,60,0.1260,0,88,999.000,999.0,99.0 +1981,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,-3.3,-12.8,48,98600,0,0,226,0,0,0,0,0,0,0,280,10.8,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-4.4,-16.1,40,98700,0,0,219,0,0,0,0,0,0,0,280,10.3,0,0,24.1,77777,9,999999999,40,0.1260,0,88,999.000,999.0,99.0 +1981,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,-5.0,-15.6,44,98800,0,0,218,0,0,0,0,0,0,0,270,12.9,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-6.1,-15.0,50,98800,0,0,214,0,0,0,0,0,0,0,280,10.8,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-6.1,-14.4,52,98800,0,0,215,0,0,0,0,0,0,0,270,11.8,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-6.7,-14.4,54,98900,0,0,213,0,0,0,0,0,0,0,270,12.4,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-6.7,-14.4,54,98900,0,0,213,0,0,0,0,0,0,0,270,13.4,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-6.1,-14.4,52,99000,2,173,215,1,0,1,0,0,0,0,270,12.4,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,-5.6,-13.9,52,99100,156,1380,217,52,167,34,5500,9300,4500,600,270,12.9,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,-4.4,-14.4,46,99200,408,1380,221,222,520,72,23400,45700,9800,1340,270,12.4,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,-2.8,-15.0,39,99200,633,1380,225,415,693,101,44100,67600,13000,2090,270,13.9,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,-1.7,-15.6,34,99200,814,1380,228,580,781,122,62100,78900,15400,2910,290,11.8,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,0.0,-15.0,32,99200,939,1380,235,695,828,136,72900,82600,16400,3350,270,10.3,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,0.6,-15.0,30,99200,999,1380,237,752,848,142,79100,85000,17400,3840,270,11.3,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,1.7,-14.4,29,99200,990,1380,241,745,845,141,78100,84600,17200,3760,290,11.8,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,2.8,-13.9,28,99100,913,1380,246,673,820,133,70300,81700,16000,3170,280,9.3,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,2.8,-15.0,26,99200,773,1380,245,544,765,118,58100,76800,14900,2710,300,10.3,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,2.2,-14.4,28,99200,580,1380,243,370,661,94,39000,63500,12300,1890,280,11.3,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,1.7,-15.0,28,99400,346,1380,241,177,456,64,18400,37900,8800,1170,270,10.3,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,1.1,-15.0,29,99500,95,1208,239,35,85,26,3500,3600,3200,460,290,9.3,0,0,24.1,77777,9,999999999,50,0.1540,0,88,999.000,999.0,99.0 +1981,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,0.6,-15.0,30,99500,0,0,237,0,0,0,0,0,0,0,280,9.3,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-0.6,-14.4,35,99600,0,0,233,0,0,0,0,0,0,0,280,8.2,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-1.1,-14.4,36,99700,0,0,232,0,0,0,0,0,0,0,280,6.7,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-1.7,-14.4,37,99700,0,0,230,0,0,0,0,0,0,0,280,6.7,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-2.8,-13.9,43,99700,0,0,226,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-3.3,-13.9,44,99700,0,0,225,0,0,0,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,50,0.1260,0,88,999.000,999.0,99.0 +1981,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,-13.9,46,99600,0,0,223,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,50,0.1270,0,88,999.000,999.0,99.0 +1981,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,-4.4,-13.9,48,99600,0,0,221,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,50,0.1270,0,88,999.000,999.0,99.0 +1981,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.6,-13.9,52,99500,0,0,217,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,50,0.1270,0,88,999.000,999.0,99.0 +1981,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,-5.6,-13.9,52,99600,0,0,217,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,50,0.1270,0,88,999.000,999.0,99.0 +1981,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,-6.1,-13.9,55,99600,0,0,215,0,0,0,0,0,0,0,320,4.1,2,0,24.1,77777,9,999999999,50,0.1270,0,88,999.000,999.0,99.0 +1981,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,-6.1,-14.4,52,99500,3,218,215,1,0,1,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,50,0.1620,0,88,999.000,999.0,99.0 +1981,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,-5.6,-13.9,52,99500,164,1379,217,55,167,37,5900,9500,4800,660,320,5.2,0,0,24.1,77777,9,999999999,50,0.1620,0,88,999.000,999.0,99.0 +1981,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,-13.3,48,99500,416,1379,223,226,511,75,23700,45100,10100,1400,290,5.2,0,0,24.1,77777,9,999999999,50,0.1620,0,88,999.000,999.0,99.0 +1981,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,-2.2,-12.8,45,99500,640,1379,229,418,683,105,44400,66700,13300,2180,340,6.2,0,0,24.1,77777,9,999999999,50,0.1620,0,88,999.000,999.0,99.0 +1981,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,-1.7,-12.8,43,99400,821,1379,231,584,772,127,62400,77900,15900,3040,320,4.1,0,0,24.1,77777,9,999999999,50,0.1620,0,88,999.000,999.0,99.0 +1981,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,0.0,-12.8,38,99400,946,1379,237,699,818,141,72900,81600,16800,3470,40,4.1,0,0,24.1,77777,9,999999999,50,0.1620,0,88,999.000,999.0,99.0 +1981,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,1.7,-12.2,35,99300,1005,1379,243,756,839,148,79100,83900,17800,3990,280,3.1,0,0,24.1,77777,9,999999999,50,0.1620,0,88,999.000,999.0,99.0 +1981,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,0.0,-10.0,47,99300,996,1379,239,745,832,147,77900,83200,17600,3910,120,6.2,0,0,24.1,77777,9,999999999,60,0.1620,0,88,999.000,999.0,99.0 +1981,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,0.6,-8.9,50,99300,919,1379,243,675,775,161,71700,78500,19300,4230,90,5.7,3,0,24.1,77777,9,999999999,69,0.1620,0,88,999.000,999.0,99.0 +1981,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,0.6,-8.9,50,99400,778,1379,253,485,523,191,51700,53300,21500,4310,90,6.7,4,3,24.1,77777,9,999999999,69,0.1620,0,88,999.000,999.0,99.0 +1981,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,0.6,-7.2,56,99400,585,1379,255,343,506,130,36600,49200,15700,2560,90,7.7,3,3,24.1,77777,9,999999999,69,0.1620,0,88,999.000,999.0,99.0 +1981,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,0.0,-8.3,54,99400,351,1379,249,159,317,80,16900,26400,10100,1470,130,5.7,2,2,24.1,77777,9,999999999,69,0.1620,0,88,999.000,999.0,99.0 +1981,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,-1.1,-7.8,61,99400,99,1230,250,32,47,28,3500,2400,3300,580,140,7.2,4,4,24.1,77777,9,999999999,69,0.1620,0,88,999.000,999.0,99.0 +1981,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,-1.7,-8.3,61,99500,0,0,243,0,0,0,0,0,0,0,130,6.2,2,2,24.1,77777,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,-1.1,-7.8,61,99500,0,0,245,0,0,0,0,0,0,0,150,6.2,2,2,24.1,77777,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,-3.3,-7.2,75,99600,0,0,249,0,0,0,0,0,0,0,150,5.2,7,7,24.1,1520,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,-2.2,-7.8,66,99600,0,0,244,0,0,0,0,0,0,0,170,3.6,3,3,24.1,77777,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,-2.2,-7.8,66,99600,0,0,241,0,0,0,0,0,0,0,180,3.1,2,2,24.1,77777,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,-2.2,-6.7,72,99600,0,0,254,0,0,0,0,0,0,0,170,3.1,7,7,24.1,2440,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1981,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,-2.2,-7.2,69,99500,0,0,270,0,0,0,0,0,0,0,170,3.6,10,10,24.1,2440,9,999999999,69,0.1280,0,88,999.000,999.0,99.0 +1981,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,-2.2,-6.7,72,99500,0,0,271,0,0,0,0,0,0,0,180,1.0,10,10,24.1,2440,9,999999999,69,0.1280,0,88,999.000,999.0,99.0 +1981,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,-2.2,-7.2,69,99400,0,0,239,0,0,0,0,0,0,0,220,1.5,1,1,24.1,77777,9,999999999,69,0.1280,0,88,999.000,999.0,99.0 +1981,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,-2.8,-7.8,69,99500,0,0,232,0,0,0,0,0,0,0,300,3.6,0,0,24.1,77777,9,999999999,69,0.1280,0,88,999.000,999.0,99.0 +1981,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,-3.3,-7.8,72,99500,0,0,230,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,69,0.1280,0,88,999.000,999.0,99.0 +1981,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,-3.3,-7.2,75,99500,4,264,230,2,2,1,0,0,0,0,300,2.6,0,0,19.3,77777,9,999999999,69,0.1190,0,88,999.000,999.0,99.0 +1981,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,-1.7,-6.1,72,99600,171,1379,237,64,223,38,6900,13000,5300,680,310,2.1,3,0,14.5,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1981,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,-0.6,-6.1,66,99600,423,1379,249,221,467,80,23000,41300,10300,1480,360,2.1,3,2,14.5,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1981,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,1.7,-6.7,54,99600,647,1379,259,368,489,141,39600,48600,16800,2870,170,2.1,5,3,14.5,77777,9,999999999,69,0.1190,0,88,999.000,999.0,99.0 +1981,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,1.1,-7.2,54,99600,828,1379,276,292,74,248,32200,7500,27700,8110,130,3.1,10,9,16.1,6100,9,999999999,69,0.1190,0,88,999.000,999.0,99.0 +1981,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,2.2,-8.9,44,99600,952,1379,279,301,35,277,33200,3600,30700,9910,90,2.1,10,9,16.1,6100,9,999999999,60,0.1190,0,88,999.000,999.0,99.0 +1981,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,3.3,-9.4,39,99600,1011,1379,277,501,216,343,54900,22900,38100,10920,130,4.1,9,8,16.1,6100,9,999999999,60,0.1190,0,88,999.000,999.0,99.0 +1981,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,3.3,-8.3,43,99600,1002,1379,273,563,400,274,60000,41500,29700,8200,60,6.2,9,7,16.1,6100,9,999999999,69,0.1190,0,88,999.000,999.0,99.0 +1981,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,2.2,-5.6,57,99600,924,1379,282,357,59,317,39200,6000,35200,10770,60,6.7,10,9,16.1,6100,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,99700,783,1379,291,218,4,215,25000,300,24800,9010,60,7.7,10,10,16.1,2440,9,999999999,89,0.1190,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,99700,590,1379,291,107,7,104,12600,500,12400,4500,60,7.2,10,10,19.3,3050,9,999999999,89,0.1190,0,88,999.000,999.0,99.0 +1981,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,1.1,-3.3,73,99700,356,1379,280,85,6,83,9600,300,9500,3040,60,4.1,10,9,19.3,6100,9,999999999,89,0.1190,0,88,999.000,999.0,99.0 +1981,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,0.6,-4.4,70,99800,103,1252,267,36,16,34,3900,1000,3800,780,360,5.2,10,7,19.3,6100,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1981,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,0.0,-4.4,72,99800,0,0,274,0,0,0,0,0,0,0,360,4.1,10,9,19.3,6100,9,999999999,80,0.1280,0,88,999.000,999.0,99.0 +1981,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,-0.6,-3.9,78,99800,0,0,280,0,0,0,0,0,0,0,350,3.6,10,10,19.3,6100,9,999999999,89,0.1280,0,88,999.000,999.0,99.0 +1981,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,0.0,-3.9,75,99800,0,0,283,0,0,0,0,0,0,0,350,3.6,10,10,19.3,6100,9,999999999,89,0.1280,0,88,999.000,999.0,99.0 +1981,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,0.6,-3.9,72,99900,0,0,277,0,0,0,0,0,0,0,340,2.1,10,9,19.3,4270,9,999999999,89,0.1280,0,88,999.000,999.0,99.0 +1981,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,0.0,-3.9,75,99900,0,0,283,0,0,0,0,0,0,0,320,4.1,10,10,19.3,4270,9,999999999,89,0.1280,0,88,999.000,999.0,99.0 +1981,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,-0.6,-2.8,85,99900,0,0,281,0,0,0,0,0,0,0,300,4.6,10,10,4.8,610,9,999999999,89,0.1280,0,88,999.000,999.0,99.0 +1981,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.0,-2.8,82,99900,0,0,284,0,0,0,0,0,0,0,300,5.7,10,10,6.4,2440,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1981,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.0,-2.8,82,99800,0,0,284,0,0,0,0,0,0,0,290,6.2,10,10,6.4,2440,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1981,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,-0.6,-2.8,85,99800,0,0,281,0,0,0,0,0,0,0,290,5.7,10,10,4.8,2130,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1981,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,-0.6,-2.2,89,99800,0,0,282,0,0,0,0,0,0,0,300,4.6,10,10,4.8,1160,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1981,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.6,-2.2,89,99900,0,0,282,0,0,0,0,0,0,0,300,5.2,10,10,6.4,1070,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1981,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,-1.1,-2.2,92,99900,5,287,280,3,0,3,0,0,0,0,310,5.2,10,10,4.8,340,9,999999999,89,0.0960,0,88,999.000,999.0,99.0 +1981,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.6,-1.7,92,100000,179,1378,282,35,2,35,4000,0,4000,1240,300,6.2,10,10,6.4,910,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1981,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,0.0,-1.1,92,100000,430,1378,286,101,1,101,11500,100,11500,3820,310,6.2,10,10,3.2,910,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1981,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,0.6,-0.6,92,100000,654,1378,289,149,7,145,17200,500,16900,6130,310,5.7,10,10,2.4,910,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1981,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,1.7,0.6,92,100100,834,1378,294,271,7,266,30800,600,30400,10810,350,5.7,10,10,2.4,910,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1981,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,2.2,1.1,92,100200,958,1378,297,177,4,174,21300,300,21000,8440,20,5.7,10,10,6.4,430,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1981,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,2.8,1.1,89,100300,1017,1378,300,188,6,183,22600,500,22300,9000,30,6.2,10,10,6.4,430,9,999999999,120,0.0960,0,88,999.000,999.0,99.0 +1981,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,2.2,0.6,89,100300,1007,1378,297,192,4,189,23100,300,22900,9210,10,7.2,10,10,8.0,430,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1981,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,3.9,0.6,79,100400,929,1378,304,345,1,344,39100,100,39000,13590,360,7.7,10,10,11.3,520,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1981,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,3.9,0.0,76,100500,788,1378,303,255,1,254,28900,100,28900,10110,360,7.7,10,10,24.1,1070,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1981,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,5.0,-1.7,62,100700,595,1378,306,191,1,191,21400,100,21400,7020,10,5.2,10,10,24.1,1310,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1981,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,4.4,-2.2,62,100800,361,1378,303,100,1,99,11100,100,11100,3450,20,5.2,10,10,24.1,1400,9,999999999,89,0.0960,0,88,999.000,999.0,99.0 +1981,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,3.3,-1.1,73,101000,108,1274,300,30,0,30,3300,0,3300,980,40,6.7,10,10,24.1,1520,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1981,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,3.3,-1.1,73,101100,0,0,300,0,0,0,0,0,0,0,30,4.1,10,10,24.1,1830,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1981,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,3.3,-1.7,70,101300,0,0,299,0,0,0,0,0,0,0,360,6.7,10,10,24.1,1980,9,999999999,100,0.1290,0,88,999.000,999.0,99.0 +1981,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,2.8,-2.8,67,101400,0,0,296,0,0,0,0,0,0,0,360,6.7,10,10,24.1,1980,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1981,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,3.3,-2.8,65,101500,0,0,290,0,0,0,0,0,0,0,360,5.7,10,9,24.1,1980,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1981,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.3,-3.3,62,101600,0,0,297,0,0,0,0,0,0,0,360,6.2,10,10,24.1,1160,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1981,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.8,-3.9,62,101700,0,0,294,0,0,0,0,0,0,0,360,5.2,10,10,24.1,1160,9,999999999,89,0.1290,0,88,999.000,999.0,99.0 +1981,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,-5.0,57,101800,0,0,293,0,0,0,0,0,0,0,20,6.2,10,10,24.1,1160,9,999999999,80,0.1300,0,88,999.000,999.0,99.0 +1981,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.2,-4.4,61,101800,0,0,291,0,0,0,0,0,0,0,20,5.7,10,10,24.1,1250,9,999999999,80,0.1300,0,88,999.000,999.0,99.0 +1981,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.2,-5.6,57,101900,0,0,290,0,0,0,0,0,0,0,10,4.1,10,10,24.1,1250,9,999999999,80,0.1300,0,88,999.000,999.0,99.0 +1981,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,1.7,-7.2,52,101900,0,0,261,0,0,0,0,0,0,0,350,4.6,4,4,24.1,77777,9,999999999,69,0.1300,0,88,999.000,999.0,99.0 +1981,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,1.1,-7.2,54,102000,0,0,246,0,0,0,0,0,0,0,340,4.6,0,0,24.1,77777,9,999999999,69,0.1300,0,88,999.000,999.0,99.0 +1981,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,0.6,-7.2,56,102100,7,333,244,3,1,3,0,0,0,0,340,4.6,3,0,24.1,77777,9,999999999,69,0.1830,0,88,999.000,999.0,99.0 +1981,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,1.7,-7.2,52,102200,186,1377,248,66,156,46,7100,9300,5800,850,350,6.7,3,0,24.1,77777,9,999999999,69,0.1830,0,88,999.000,999.0,99.0 +1981,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.3,-7.2,46,102200,437,1377,254,234,483,83,24400,43100,10600,1540,30,6.2,0,0,24.1,77777,9,999999999,69,0.1830,0,88,999.000,999.0,99.0 +1981,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.0,-6.7,43,102200,661,1377,261,424,642,119,44700,62800,14400,2460,40,6.2,1,0,24.1,77777,9,999999999,69,0.1830,0,88,999.000,999.0,99.0 +1981,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,5.6,-6.7,41,102300,841,1377,268,565,696,144,60100,70100,17200,3470,60,5.2,1,1,24.1,77777,9,999999999,69,0.1830,0,88,999.000,999.0,99.0 +1981,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,5.0,-5.0,49,102300,964,1377,262,700,776,159,74800,79000,19300,4490,70,7.2,1,0,24.1,77777,9,999999999,80,0.1830,0,88,999.000,999.0,99.0 +1981,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,5.6,-5.0,47,102300,1023,1377,265,729,761,166,78200,77700,20300,5150,90,7.2,1,0,24.1,77777,9,999999999,80,0.1830,0,88,999.000,999.0,99.0 +1981,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,5.0,-3.9,53,102200,1013,1377,263,745,790,165,79700,80700,20200,5030,90,7.7,1,0,24.1,77777,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1981,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,5.6,-5.0,47,102200,935,1377,265,687,726,196,72000,72900,22400,5140,110,6.7,6,0,24.1,77777,9,999999999,80,0.1830,0,88,999.000,999.0,99.0 +1981,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,-4.4,51,102100,793,1377,263,561,670,176,58200,66200,19900,3890,110,6.7,6,0,24.1,77777,9,999999999,80,0.1830,0,88,999.000,999.0,99.0 +1981,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,4.4,-3.9,55,102100,599,1377,261,372,611,108,39000,58800,13300,2160,130,6.2,0,0,24.1,77777,9,999999999,89,0.1830,0,88,999.000,999.0,99.0 +1981,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,3.9,-4.4,55,102100,366,1377,259,183,418,73,19600,35500,10200,1320,130,5.7,0,0,24.1,77777,9,999999999,80,0.1830,0,88,999.000,999.0,99.0 +1981,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,3.3,-4.4,57,102100,112,1320,257,38,75,30,3900,3300,3600,540,130,5.2,1,0,24.1,77777,9,999999999,80,0.1830,0,88,999.000,999.0,99.0 +1981,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,2.8,-5.0,57,102100,0,0,254,0,0,0,0,0,0,0,160,4.6,0,0,24.1,77777,9,999999999,80,0.1300,0,88,999.000,999.0,99.0 +1981,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,2.2,-5.0,59,102200,0,0,252,0,0,0,0,0,0,0,180,4.1,0,0,24.1,77777,9,999999999,80,0.1300,0,88,999.000,999.0,99.0 +1981,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,2.2,-5.0,59,102200,0,0,252,0,0,0,0,0,0,0,210,0.5,0,0,24.1,77777,9,999999999,80,0.1300,0,88,999.000,999.0,99.0 +1981,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,2.2,-3.9,64,102100,0,0,253,0,0,0,0,0,0,0,220,5.7,0,0,24.1,77777,9,999999999,89,0.1300,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.3,70,102100,0,0,252,0,0,0,0,0,0,0,240,3.1,3,0,24.1,77777,9,999999999,89,0.1300,0,88,999.000,999.0,99.0 +1981,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,1.7,-3.9,67,102000,0,0,251,0,0,0,0,0,0,0,250,4.6,8,0,24.1,77777,9,999999999,89,0.1300,0,88,999.000,999.0,99.0 +1981,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,1.1,-3.3,73,102000,0,0,249,0,0,0,0,0,0,0,230,5.2,10,0,24.1,77777,9,999999999,89,0.1310,0,88,999.000,999.0,99.0 +1981,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,0.6,-3.9,72,101900,0,0,247,0,0,0,0,0,0,0,250,6.2,10,0,24.1,77777,9,999999999,89,0.1310,0,88,999.000,999.0,99.0 +1981,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,1.1,-4.4,67,101900,0,0,257,0,0,0,0,0,0,0,250,4.1,10,2,24.1,77777,9,999999999,80,0.1310,0,88,999.000,999.0,99.0 +1981,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,1.1,-4.4,67,101900,0,0,266,0,0,0,0,0,0,0,280,4.1,10,6,24.1,7620,9,999999999,80,0.1310,0,88,999.000,999.0,99.0 +1981,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,0.6,-3.9,72,101900,0,0,264,0,0,0,0,0,0,0,310,2.6,10,6,24.1,7620,9,999999999,89,0.1310,0,88,999.000,999.0,99.0 +1981,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,0.0,-4.4,72,101900,9,378,282,2,0,2,0,0,0,0,260,1.5,10,10,19.3,4570,9,999999999,80,0.2030,0,88,999.000,999.0,99.0 +1981,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,0.0,-3.9,75,101800,194,1376,283,25,1,25,3000,0,3000,960,0,0.0,10,10,19.3,3660,9,999999999,89,0.2030,0,88,999.000,999.0,99.0 +1981,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,2.2,-2.8,70,101800,445,1376,293,117,2,116,13100,100,13100,4290,160,2.1,10,10,19.3,3660,9,999999999,89,0.2030,0,88,999.000,999.0,99.0 +1981,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,4.4,-3.9,55,101800,668,1376,293,258,49,234,28300,4900,25900,6720,20,3.1,10,9,19.3,7620,9,999999999,89,0.2030,0,88,999.000,999.0,99.0 +1981,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,5.6,-2.2,58,101800,848,1376,286,439,216,308,47900,22600,33900,8460,150,4.6,10,6,19.3,7620,9,999999999,100,0.2030,0,88,999.000,999.0,99.0 +1981,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,5.0,-2.8,58,101800,971,1376,283,446,215,295,49200,22800,33100,9010,130,5.7,10,6,19.3,7620,9,999999999,89,0.2030,0,88,999.000,999.0,99.0 +1981,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,5.6,-2.2,58,101700,1029,1376,286,644,443,314,67800,46000,33400,9970,140,5.2,10,6,20.9,7620,9,999999999,100,0.2030,0,88,999.000,999.0,99.0 +1981,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,5.6,-3.3,53,101700,1018,1376,285,657,499,290,69800,51800,31400,8980,110,5.2,10,6,20.9,7620,9,999999999,89,0.2030,0,88,999.000,999.0,99.0 +1981,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,5.0,-3.9,53,101600,940,1376,285,357,94,293,39400,9600,32800,10280,100,5.7,10,7,20.9,7620,9,999999999,89,0.2030,0,88,999.000,999.0,99.0 +1981,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,5.0,-3.3,55,101500,798,1376,285,440,325,252,47300,34400,27300,6200,110,6.2,10,7,20.9,7620,9,999999999,89,0.2030,0,88,999.000,999.0,99.0 +1981,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,4.4,-1.7,65,101500,604,1376,285,281,224,184,30800,22500,20900,4410,120,6.2,10,7,20.9,7620,9,999999999,100,0.2030,0,88,999.000,999.0,99.0 +1981,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,3.3,-0.6,76,101500,371,1376,273,151,210,95,16100,18200,11200,1840,110,5.2,10,4,19.3,77777,9,999999999,110,0.2030,0,88,999.000,999.0,99.0 +1981,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,2.2,0.0,85,101400,117,1342,265,42,21,40,4600,1300,4500,900,100,3.1,9,2,19.3,77777,9,999999999,110,0.2030,0,88,999.000,999.0,99.0 +1981,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,1.7,0.0,89,101400,0,0,263,0,0,0,0,0,0,0,100,3.6,6,2,19.3,77777,9,999999999,110,0.1310,0,88,999.000,999.0,99.0 +1981,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,1.1,0.6,96,101400,0,0,258,0,0,0,0,0,0,0,120,2.6,5,1,16.1,77777,9,999999999,110,0.1310,0,88,999.000,999.0,99.0 +1981,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,1.1,-0.6,89,101400,0,0,260,0,0,0,0,0,0,0,110,2.1,8,2,12.9,77777,9,999999999,110,0.1310,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.8,73,101400,0,0,257,0,0,0,0,0,0,0,190,1.5,6,1,12.9,77777,9,999999999,89,0.1310,0,88,999.000,999.0,99.0 +1981,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,1.1,-3.9,70,101400,0,0,249,0,0,0,0,0,0,0,220,2.1,2,0,16.1,77777,9,999999999,89,0.1310,0,88,999.000,999.0,99.0 +1981,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.1,-3.9,70,101300,0,0,249,0,0,0,0,0,0,0,240,1.5,2,0,16.1,77777,9,999999999,89,0.1310,0,88,999.000,999.0,99.0 +1981,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,1.7,-5.0,62,101300,0,0,250,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,80,0.1320,0,88,999.000,999.0,99.0 +1981,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,1.1,-5.6,62,101200,0,0,247,0,0,0,0,0,0,0,300,2.1,0,0,19.3,77777,9,999999999,80,0.1320,0,88,999.000,999.0,99.0 +1981,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,-5.0,67,101200,0,0,246,0,0,0,0,0,0,0,250,1.0,0,0,19.3,77777,9,999999999,80,0.1320,0,88,999.000,999.0,99.0 +1981,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,1.1,-5.6,62,101100,0,0,247,0,0,0,0,0,0,0,300,2.6,0,0,19.3,77777,9,999999999,80,0.1320,0,88,999.000,999.0,99.0 +1981,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,0.6,-5.0,67,101100,0,0,246,0,0,0,0,0,0,0,300,2.1,0,0,19.3,77777,9,999999999,80,0.1320,0,88,999.000,999.0,99.0 +1981,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,0.0,-4.4,72,101100,11,424,244,7,29,4,0,0,0,0,300,2.6,0,0,16.1,77777,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1981,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,1.1,-2.8,76,101100,201,1375,250,92,444,30,9600,31600,5000,570,20,2.1,0,0,9.7,77777,9,999999999,89,0.0630,0,88,999.000,999.0,99.0 +1981,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,2.2,-2.2,73,101100,452,1375,254,280,720,48,30200,66300,8300,1040,360,3.1,0,0,8.0,77777,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1981,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,4.4,-2.2,62,101100,675,1375,263,473,841,64,50100,81800,9900,1490,360,2.1,0,0,9.7,77777,9,999999999,89,0.0630,0,88,999.000,999.0,99.0 +1981,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,5.0,-2.2,60,101100,854,1375,265,629,896,76,66200,88900,10900,1890,90,4.1,0,0,16.1,77777,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1981,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,5.6,-3.3,53,101200,977,1375,266,744,935,84,78100,93300,11700,2310,90,4.6,0,0,20.9,77777,9,999999999,89,0.0630,0,88,999.000,999.0,99.0 +1981,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,7.2,-3.9,46,101100,1035,1375,277,765,897,93,79900,89700,12300,2660,120,4.6,1,1,24.1,77777,9,999999999,89,0.0630,0,88,999.000,999.0,99.0 +1981,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,9.4,-3.9,39,101100,1024,1375,286,737,879,85,77200,87900,11600,2490,140,5.2,1,1,24.1,77777,9,999999999,89,0.0630,0,88,999.000,999.0,99.0 +1981,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,7.2,-4.4,44,101100,945,1375,280,679,828,112,72500,83400,15000,3000,120,5.2,2,2,24.1,77777,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1981,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,6.7,-3.9,47,101100,803,1375,282,559,715,144,59100,71600,17100,3330,140,5.7,3,3,24.1,77777,9,999999999,89,0.0630,0,88,999.000,999.0,99.0 +1981,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,5.0,0.0,70,101200,609,1375,283,401,628,125,41600,60200,14900,2450,120,5.2,5,5,24.1,77777,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1981,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,4.4,0.0,73,101000,376,1375,283,186,338,94,19400,28900,11500,1750,120,5.2,7,6,24.1,2740,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1981,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,3.3,0.0,79,101200,121,1364,276,36,38,32,3900,2000,3700,670,120,3.6,6,5,24.1,3050,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1981,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,3.9,-1.7,67,101300,0,0,277,0,0,0,0,0,0,0,120,2.1,6,5,24.1,2740,9,999999999,100,0.1320,0,88,999.000,999.0,99.0 +1981,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,3.3,0.6,82,101300,0,0,275,0,0,0,0,0,0,0,130,2.1,5,4,24.1,77777,9,999999999,110,0.1320,0,88,999.000,999.0,99.0 +1981,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,4.4,-1.1,68,101300,0,0,279,0,0,0,0,0,0,0,200,2.6,6,5,24.1,2440,9,999999999,100,0.1320,0,88,999.000,999.0,99.0 +1981,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,5.0,-3.9,53,101300,0,0,289,0,0,0,0,0,0,0,240,3.1,8,8,24.1,1680,9,999999999,89,0.1320,0,88,999.000,999.0,99.0 +1981,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,4.4,-3.3,57,101300,0,0,287,0,0,0,0,0,0,0,220,3.6,8,8,24.1,2440,9,999999999,89,0.1320,0,88,999.000,999.0,99.0 +1981,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,5.0,-3.3,55,101300,0,0,290,0,0,0,0,0,0,0,260,3.6,8,8,24.1,2440,9,999999999,89,0.1320,0,88,999.000,999.0,99.0 +1981,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,4.4,-3.9,55,101300,0,0,282,0,0,0,0,0,0,0,280,3.6,7,7,24.1,2740,9,999999999,89,0.1330,0,88,999.000,999.0,99.0 +1981,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,4.4,-3.3,57,101300,0,0,283,0,0,0,0,0,0,0,300,4.1,7,7,24.1,1680,9,999999999,89,0.1330,0,88,999.000,999.0,99.0 +1981,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,3.3,-2.2,67,101300,0,0,298,0,0,0,0,0,0,0,300,4.6,10,10,24.1,1520,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1981,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,2.8,-2.2,70,101400,0,0,296,0,0,0,0,0,0,0,310,3.1,10,10,24.1,1520,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1981,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,2.2,-2.2,73,101400,0,0,280,0,0,0,0,0,0,0,340,3.6,8,8,24.1,2440,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1981,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,1.1,-1.7,82,101500,13,447,266,6,8,5,0,0,0,0,340,3.1,5,5,14.5,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1981,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,1.7,-1.7,79,101500,208,1375,274,76,65,67,8300,4400,7600,1420,340,2.6,7,7,14.5,3660,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1981,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,4.4,-0.6,70,101600,459,1375,280,231,255,147,24400,23900,16400,3070,360,3.1,5,5,14.5,77777,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1981,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,5.6,0.6,71,101700,682,1375,292,256,228,144,28300,23700,16500,3050,40,5.7,7,7,14.5,2440,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1981,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,5.0,1.7,79,101700,861,1375,310,209,3,206,24300,200,24200,9200,70,5.7,10,10,14.5,460,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1981,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,4.4,1.1,79,101800,983,1375,307,359,38,332,39600,3900,36800,11860,110,5.2,10,10,14.5,460,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1981,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,2.8,1.7,92,101900,1040,1375,300,226,2,224,26900,200,26800,10710,60,6.7,10,10,8.0,210,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1981,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,1.7,1.1,96,101900,1029,1375,295,189,10,181,22800,800,22300,8960,50,6.7,10,10,4.0,270,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1981,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,1.7,0.6,92,102000,950,1375,294,155,6,151,18800,400,18500,7470,60,7.2,10,10,4.8,670,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1981,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,2.2,0.0,85,102000,808,1375,296,240,8,236,27600,700,27200,9800,40,6.7,10,10,11.3,670,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1981,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,2.2,-0.6,82,102100,614,1375,295,187,5,185,21100,400,20900,7030,60,6.2,10,10,16.1,730,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1981,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,1.7,-1.1,82,102100,380,1375,293,107,1,106,11900,100,11800,3710,70,5.2,10,10,20.9,790,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1981,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,1.7,-1.1,82,102200,126,1375,293,30,1,30,3400,0,3400,990,70,4.1,10,10,20.9,820,9,999999999,100,0.0770,0,88,999.000,999.0,99.0 +1981,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,1.7,-1.7,79,102200,0,11,292,0,0,0,0,0,0,0,80,3.6,10,10,20.9,820,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1981,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,1.7,-1.7,79,102300,0,0,292,0,0,0,0,0,0,0,100,2.1,10,10,20.9,820,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1981,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,1.7,-2.2,76,102300,0,0,292,0,0,0,0,0,0,0,110,2.1,10,10,20.9,760,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1981,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,1.1,-2.2,79,102400,0,0,289,0,0,0,0,0,0,0,110,2.6,10,10,20.9,670,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1981,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,1.1,-2.2,79,102400,0,0,261,0,0,0,0,0,0,0,110,2.1,3,3,20.9,77777,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1981,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,1.1,-1.7,82,102400,0,0,259,0,0,0,0,0,0,0,200,2.1,2,2,24.1,77777,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1981,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,0.0,-1.7,89,102400,0,0,247,0,0,0,0,0,0,0,240,3.6,0,0,20.9,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1981,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,0.0,-1.7,89,102400,0,0,247,0,0,0,0,0,0,0,240,3.1,0,0,20.9,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1981,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,0.0,-1.7,89,102300,0,0,247,0,0,0,0,0,0,0,250,5.7,0,0,24.1,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1981,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,1.1,-1.1,85,102400,0,0,290,0,0,0,0,0,0,0,250,3.6,10,10,24.1,460,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1981,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,0.6,-1.1,89,102400,0,0,262,0,0,0,0,0,0,0,240,4.6,4,4,24.1,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1981,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,0.6,-1.1,89,102400,15,492,260,5,0,5,0,0,0,0,240,4.1,8,3,24.1,77777,9,999999999,100,0.2630,0,88,999.000,999.0,99.0 +1981,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,1.1,-0.6,89,102500,216,1374,260,63,57,54,6900,4000,6300,1150,240,3.6,8,2,14.5,77777,9,999999999,110,0.2630,0,88,999.000,999.0,99.0 +1981,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,2.2,0.0,85,102500,466,1374,265,231,292,134,24700,27500,15400,2740,240,4.1,8,2,11.3,77777,9,999999999,110,0.2630,0,88,999.000,999.0,99.0 +1981,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,5.0,0.0,70,102500,689,1374,272,422,446,200,44000,44600,21600,4310,230,2.6,10,1,12.9,77777,9,999999999,110,0.2630,0,88,999.000,999.0,99.0 +1981,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,6.1,0.6,68,102500,867,1374,272,599,564,246,63300,57900,26600,6170,220,4.1,10,0,16.1,77777,9,999999999,110,0.2630,0,88,999.000,999.0,99.0 +1981,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,9.4,0.6,54,102400,989,1374,285,722,648,258,77300,67300,28800,7570,220,2.6,7,0,19.3,77777,9,999999999,110,0.2630,0,88,999.000,999.0,99.0 +1981,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,9.4,0.0,52,102400,1046,1374,294,690,574,255,74600,59800,28900,8230,140,4.6,4,2,19.3,77777,9,999999999,110,0.2630,0,88,999.000,999.0,99.0 +1981,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,8.3,1.7,63,102200,1034,1374,294,692,521,302,73400,54100,32500,9670,120,6.7,4,3,19.3,77777,9,999999999,120,0.2630,0,88,999.000,999.0,99.0 +1981,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,8.9,1.1,59,102100,955,1374,296,623,497,279,65700,51400,29900,7850,120,6.7,4,3,19.3,77777,9,999999999,120,0.2630,0,88,999.000,999.0,99.0 +1981,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,8.9,1.1,59,102100,813,1374,289,519,519,214,55100,53100,23600,5030,110,6.2,8,1,19.3,77777,9,999999999,120,0.2630,0,88,999.000,999.0,99.0 +1981,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,10.6,1.1,52,102000,619,1374,303,338,349,181,36100,35500,20100,3940,130,3.6,8,3,20.9,77777,9,999999999,120,0.2630,0,88,999.000,999.0,99.0 +1981,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,10.6,0.6,50,102000,385,1374,299,170,224,108,18100,19700,12500,2140,200,8.2,8,2,24.1,77777,9,999999999,110,0.2630,0,88,999.000,999.0,99.0 +1981,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,7.8,1.1,63,102000,131,1374,284,35,30,32,3800,1900,3600,760,200,7.7,6,1,24.1,77777,9,999999999,120,0.2630,0,88,999.000,999.0,99.0 +1981,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,7.2,1.1,65,102100,0,34,277,0,0,0,0,0,0,0,200,8.2,3,0,24.1,77777,9,999999999,120,0.1340,0,88,999.000,999.0,99.0 +1981,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,6.1,1.1,71,102100,0,0,272,0,0,0,0,0,0,0,200,7.7,2,0,24.1,77777,9,999999999,120,0.1340,0,88,999.000,999.0,99.0 +1981,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,4.4,0.6,76,102100,0,0,265,0,0,0,0,0,0,0,200,6.7,0,0,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1981,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,-1.1,70,102100,0,0,262,0,0,0,0,0,0,0,220,7.2,0,0,24.1,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1981,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,3.3,-1.1,73,102100,0,0,260,0,0,0,0,0,0,0,220,5.7,0,0,24.1,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1981,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,2.8,0.0,82,102000,0,0,259,0,0,0,0,0,0,0,230,6.2,0,0,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1981,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,2.2,0.6,89,102000,0,0,257,0,0,0,0,0,0,0,230,6.7,3,0,24.1,77777,9,999999999,110,0.1350,0,88,999.000,999.0,99.0 +1981,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,2.2,0.6,89,101900,0,0,257,0,0,0,0,0,0,0,200,4.6,4,0,24.1,77777,9,999999999,110,0.1350,0,88,999.000,999.0,99.0 +1981,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,2.2,0.6,89,101800,0,0,282,0,0,0,0,0,0,0,200,4.6,10,8,16.1,3050,9,999999999,110,0.1350,0,88,999.000,999.0,99.0 +1981,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,2.8,0.6,85,101800,0,0,299,0,0,0,0,0,0,0,210,6.7,10,10,16.1,2440,9,999999999,110,0.1350,0,88,999.000,999.0,99.0 +1981,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,2.8,1.7,92,101600,0,0,300,0,0,0,0,0,0,0,200,5.2,10,10,16.1,2440,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1981,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,2.8,2.2,96,101600,18,538,301,1,1,0,0,0,0,0,180,3.1,10,10,12.9,1160,9,999999999,120,0.1480,0,88,999.000,999.0,99.0 +1981,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,3.3,2.8,96,101400,223,1373,304,27,0,27,3200,0,3200,1060,160,3.1,10,10,11.3,1160,9,999999999,129,0.1480,0,88,999.000,999.0,99.0 +1981,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,3.3,3.3,100,101200,473,1373,304,53,2,53,6500,100,6400,2350,120,2.6,10,10,8.0,1010,9,999999999,129,0.1480,0,88,999.000,999.0,99.0 +1981,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,3.9,3.9,100,101000,695,1373,308,139,8,135,16300,600,16000,5980,160,5.2,10,10,6.4,610,9,999999999,139,0.1480,0,88,999.000,999.0,99.0 +1981,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,5.0,5.0,100,100900,873,1373,314,194,5,191,22900,400,22600,8750,240,6.7,10,10,4.8,460,9,999999999,150,0.1480,0,88,999.000,999.0,99.0 +1981,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,5.0,4.4,96,100900,995,1373,313,204,1,203,24400,100,24300,9730,260,6.7,10,10,16.1,520,9,999999999,139,0.1480,0,88,999.000,999.0,99.0 +1981,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,5.6,3.9,89,100800,1051,1373,315,225,3,222,26800,200,26700,10680,280,8.2,10,10,16.1,430,9,999999999,139,0.1480,0,88,999.000,999.0,99.0 +1981,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,5.0,3.9,93,100900,1039,1373,312,205,1,204,24600,100,24600,9930,290,8.8,10,10,9.7,460,9,999999999,139,0.1480,0,88,999.000,999.0,99.0 +1981,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,5.0,3.9,93,100900,960,1373,312,199,1,198,23700,100,23600,9400,290,8.2,10,10,12.9,1520,9,999999999,139,0.1480,0,88,999.000,999.0,99.0 +1981,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,5.6,3.3,86,101000,818,1373,315,151,1,150,17900,100,17900,7000,300,9.8,10,10,16.1,580,9,999999999,129,0.1480,0,88,999.000,999.0,99.0 +1981,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,6.1,2.8,79,101100,623,1373,316,205,1,205,23000,100,23000,7570,300,6.7,10,10,20.9,790,9,999999999,129,0.1480,0,88,999.000,999.0,99.0 +1981,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,7.2,2.2,71,101200,390,1373,321,97,0,97,10900,0,10900,3550,300,6.7,10,10,24.1,910,9,999999999,120,0.1480,0,88,999.000,999.0,99.0 +1981,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,6.1,2.2,76,101400,135,1373,300,17,12,15,1800,800,1700,400,340,6.7,8,8,24.1,910,9,999999999,120,0.1480,0,88,999.000,999.0,99.0 +1981,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,5.6,1.7,76,101500,0,57,298,0,0,0,0,0,0,0,350,4.6,8,8,24.1,1400,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1981,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,6.1,2.2,76,101700,0,0,282,0,0,0,0,0,0,0,320,4.6,2,2,24.1,77777,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1981,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,5.6,1.7,76,101800,0,0,283,0,0,0,0,0,0,0,320,4.6,3,3,24.1,77777,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1981,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,5.0,1.7,79,101900,0,0,280,0,0,0,0,0,0,0,340,4.6,3,3,24.1,77777,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1981,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.9,1.1,82,102000,0,0,264,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,120,0.1350,0,88,999.000,999.0,99.0 +1981,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,3.9,0.6,79,102000,0,0,263,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,110,0.1350,0,88,999.000,999.0,99.0 +1981,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,3.3,-1.1,73,102100,0,0,260,0,0,0,0,0,0,0,330,5.7,0,0,24.1,77777,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1981,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,2.8,-2.8,67,102100,0,0,256,0,0,0,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1981,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,2.2,-1.7,76,102300,0,0,255,0,0,0,0,0,0,0,360,4.1,0,0,24.1,77777,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1981,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.7,-3.9,67,102400,0,0,251,0,0,0,0,0,0,0,360,5.2,0,0,24.1,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1981,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,-4.4,67,102500,0,0,248,0,0,0,0,0,0,0,360,3.6,0,0,24.1,77777,9,999999999,80,0.1360,0,88,999.000,999.0,99.0 +1981,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,0.6,-4.4,70,102600,21,560,247,9,10,8,0,0,0,0,340,3.6,0,0,24.1,77777,9,999999999,89,0.1440,0,88,999.000,999.0,99.0 +1981,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,1.7,-4.4,64,102700,231,1372,251,95,301,47,10300,20800,6800,840,320,2.6,0,0,24.1,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1981,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,4.4,-5.6,49,102800,481,1372,259,284,540,98,29500,49300,12200,1820,170,2.1,5,0,24.1,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1981,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,4.4,-6.1,47,102800,702,1372,259,480,630,161,49700,61300,18300,3280,170,3.1,9,0,24.1,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1981,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,5.6,-6.1,43,102900,880,1372,263,637,775,143,68000,78500,17500,3640,160,4.1,3,0,24.1,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1981,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,5.6,-5.0,47,102800,1000,1372,265,748,810,160,77500,80700,18500,4190,140,4.6,3,0,24.1,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1981,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,7.2,-3.9,46,102700,1057,1372,272,814,792,206,86200,80300,24200,6720,130,4.6,7,0,24.1,77777,9,999999999,89,0.1440,0,88,999.000,999.0,99.0 +1981,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,9.4,-3.3,41,102600,1044,1372,281,807,788,209,85300,79800,24400,6640,120,5.2,7,0,24.1,77777,9,999999999,89,0.1440,0,88,999.000,999.0,99.0 +1981,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,8.3,-1.7,50,102400,965,1372,284,693,614,263,73700,63600,28900,7470,120,6.2,10,1,24.1,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1981,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,8.3,-1.1,52,102400,822,1372,284,555,644,170,57900,64200,19400,3920,130,5.7,10,1,24.1,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1981,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,7.8,-1.1,54,102200,628,1372,282,395,553,144,42200,54600,17200,2910,110,5.7,10,1,24.1,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1981,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,8.3,0.0,56,102200,394,1372,285,204,332,110,21200,28800,12800,2090,130,3.6,8,1,24.1,77777,9,999999999,110,0.1440,0,88,999.000,999.0,99.0 +1981,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,10.0,-1.1,46,102100,140,1372,298,37,53,32,4100,3000,3800,670,200,6.2,8,3,24.1,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1981,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,8.9,-1.1,50,102100,0,80,293,0,0,0,0,0,0,0,210,5.2,7,3,24.1,77777,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1981,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,8.9,-3.3,42,102200,0,0,291,0,0,0,0,0,0,0,200,6.2,8,3,24.1,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1981,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.8,-3.3,46,102100,0,0,294,0,0,0,0,0,0,0,220,5.2,10,6,24.1,7620,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1981,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,7.8,-2.8,48,102000,0,0,302,0,0,0,0,0,0,0,230,7.2,10,8,24.1,3050,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1981,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,7.2,-1.7,54,102000,0,0,301,0,0,0,0,0,0,0,230,6.2,10,8,24.1,3050,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1981,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,6.1,-1.1,60,101900,0,0,312,0,0,0,0,0,0,0,180,4.1,10,10,24.1,3050,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1981,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,6.1,-1.1,60,101900,0,0,312,0,0,0,0,0,0,0,190,4.1,10,10,24.1,3050,9,999999999,100,0.1370,0,88,999.000,999.0,99.0 +1981,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,6.7,-1.7,56,101700,0,0,305,0,0,0,0,0,0,0,240,7.2,10,9,24.1,7620,9,999999999,100,0.1370,0,88,999.000,999.0,99.0 +1981,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,6.7,-1.1,58,101600,0,0,306,0,0,0,0,0,0,0,240,8.2,10,9,24.1,7620,9,999999999,100,0.1370,0,88,999.000,999.0,99.0 +1981,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,7.2,-1.1,56,101500,0,0,291,0,0,0,0,0,0,0,230,8.8,9,5,24.1,7620,9,999999999,100,0.1370,0,88,999.000,999.0,99.0 +1981,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,7.2,-1.1,56,101500,0,0,291,0,0,0,0,0,0,0,230,7.7,9,5,24.1,7620,9,999999999,100,0.1370,0,88,999.000,999.0,99.0 +1981,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,6.7,-1.1,58,101500,24,606,315,8,0,8,0,0,0,0,240,6.7,10,10,16.1,3050,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1981,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,7.2,-1.1,56,101400,238,1371,317,44,0,44,5000,0,5000,1620,230,7.7,10,10,16.1,3050,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1981,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,8.3,-1.1,52,101400,488,1371,322,112,4,110,12700,300,12700,4330,220,9.8,10,10,19.3,3050,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1981,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,10.0,-1.1,46,101300,709,1371,330,192,5,190,22100,400,21900,7820,240,9.3,10,10,24.1,3050,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1981,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,12.8,0.0,42,101200,886,1371,335,400,82,348,44000,8400,38600,11180,220,8.8,10,9,24.1,3050,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1981,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,16.7,1.1,35,101100,1006,1371,355,256,11,248,30200,900,29500,11440,220,8.8,10,9,24.1,3660,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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,20.6,1.7,29,101000,1062,1371,357,418,126,321,46300,13400,35800,10960,230,8.8,8,6,24.1,3660,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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.9,2.2,24,100900,1049,1371,350,754,799,144,79500,80400,17800,4360,250,8.2,3,0,19.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,3,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,2.2,23,100700,969,1371,355,715,825,134,75200,82700,16600,3540,270,10.3,3,0,19.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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.0,2.2,23,100700,827,1371,362,571,656,177,59500,65300,20100,4080,260,9.8,9,1,19.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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,25.0,2.2,23,100600,632,1371,362,382,558,126,39700,53900,14800,2520,260,7.7,8,1,19.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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,23.9,2.2,24,100600,399,1371,362,202,395,88,21400,34600,11300,1630,240,7.7,8,2,19.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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,21.1,2.2,29,100700,145,1371,352,49,78,42,5400,4400,5000,880,220,8.2,9,3,19.3,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1981,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,20.0,2.8,32,100700,1,126,353,1,0,1,0,0,0,0,240,8.2,10,5,19.3,77777,9,999999999,129,0.1120,0,88,999.000,999.0,99.0 +1981,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,18.9,3.3,36,100800,0,0,345,0,0,0,0,0,0,0,220,7.2,10,4,19.3,77777,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1981,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,18.3,3.9,39,100800,0,0,343,0,0,0,0,0,0,0,240,6.2,10,4,19.3,77777,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1981,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,18.3,3.9,39,100800,0,0,346,0,0,0,0,0,0,0,240,8.2,10,5,19.3,77777,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1981,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,18.3,4.4,40,100900,0,0,338,0,0,0,0,0,0,0,240,8.8,8,2,19.3,77777,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1981,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,17.8,4.4,42,100900,0,0,335,0,0,0,0,0,0,0,240,8.2,6,2,19.3,77777,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1981,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,17.2,4.4,43,100900,0,0,333,0,0,0,0,0,0,0,240,6.7,6,2,19.3,77777,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1981,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,16.1,4.4,46,100800,0,0,328,0,0,0,0,0,0,0,230,8.2,4,2,19.3,77777,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1981,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,15.0,3.9,48,100800,0,0,322,0,0,0,0,0,0,0,230,6.7,4,2,19.3,77777,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1981,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,13.9,4.4,53,100800,0,0,323,0,0,0,0,0,0,0,230,5.7,10,4,19.3,77777,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1981,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,13.3,5.0,57,100800,0,0,331,0,0,0,0,0,0,0,230,5.7,10,7,19.3,7620,9,999999999,150,0.1380,0,88,999.000,999.0,99.0 +1981,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,12.2,5.6,64,100800,27,651,317,16,21,14,1700,800,1600,290,230,6.2,8,4,19.3,77777,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1981,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,12.8,6.1,64,100900,245,1371,305,116,451,38,12300,33300,6400,710,210,6.2,4,0,16.1,77777,9,999999999,160,0.0570,0,88,999.000,999.0,99.0 +1981,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,14.4,6.7,60,100700,494,1371,328,193,215,117,21000,20700,13500,2320,220,7.2,9,4,16.1,77777,9,999999999,160,0.0570,0,88,999.000,999.0,99.0 +1981,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.3,6.7,47,100700,715,1371,344,441,512,176,47000,51600,20000,3790,220,8.8,10,3,16.1,77777,9,999999999,160,0.0570,0,88,999.000,999.0,99.0 +1981,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,7.2,44,100600,892,1371,344,608,770,110,64700,77300,14300,2750,210,8.2,7,1,16.1,77777,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1981,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,21.1,8.3,44,100500,1012,1371,351,747,850,122,79900,85900,16300,3600,230,11.3,7,1,16.1,77777,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1981,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,22.2,8.9,43,100400,1067,1371,368,694,610,221,73300,61700,25100,7340,230,12.4,10,4,16.1,77777,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1981,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,20.6,8.3,46,100300,1054,1371,376,640,461,287,68400,48000,31400,9540,220,11.3,10,8,19.3,4570,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1981,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,18.9,9.4,54,100200,974,1371,376,513,205,368,55900,21600,40400,11330,220,8.2,10,9,19.3,6100,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1981,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,18.3,10.0,59,100200,832,1371,385,215,13,207,25000,1100,24400,9090,220,9.8,10,10,16.1,4570,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1981,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,17.2,10.6,65,100200,637,1371,379,159,10,154,18200,800,17900,6340,220,9.3,10,10,16.1,1830,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1981,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.0,11.7,81,100100,404,1371,369,69,2,68,8000,100,8000,2750,230,11.3,10,10,14.5,1830,9,999999999,220,0.0570,0,88,999.000,999.0,99.0 +1981,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,13.3,11.7,90,100100,149,1371,361,16,0,16,1900,0,1900,620,210,9.3,10,10,9.7,520,9,999999999,220,0.0570,0,88,999.000,999.0,99.0 +1981,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,12.2,11.7,96,100000,1,148,355,0,0,0,0,0,0,0,200,8.8,10,10,9.7,340,9,999999999,209,0.0570,0,88,999.000,999.0,99.0 +1981,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,12.2,11.7,96,99900,0,0,355,0,0,0,0,0,0,0,220,8.2,10,10,12.9,340,9,999999999,209,0.1380,0,88,999.000,999.0,99.0 +1981,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,13.3,12.2,93,99900,0,0,361,0,0,0,0,0,0,0,220,8.2,10,10,19.3,340,9,999999999,220,0.1380,0,88,999.000,999.0,99.0 +1981,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,13.3,12.2,93,99800,0,0,361,0,0,0,0,0,0,0,210,6.2,10,10,19.3,340,9,999999999,220,0.1380,0,88,999.000,999.0,99.0 +1981,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,12.8,11.7,93,99700,0,0,358,0,0,0,0,0,0,0,200,6.2,10,10,19.3,340,9,999999999,220,0.1380,0,88,999.000,999.0,99.0 +1981,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,12.8,12.2,96,99700,0,0,359,0,0,0,0,0,0,0,240,7.2,10,10,16.1,2440,9,999999999,220,0.1380,0,88,999.000,999.0,99.0 +1981,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,12.8,12.2,96,99700,0,0,349,0,0,0,0,0,0,0,220,7.2,10,9,16.1,2440,9,999999999,220,0.1390,0,88,999.000,999.0,99.0 +1981,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,13.3,11.7,90,99800,0,0,338,0,0,0,0,0,0,0,250,6.2,7,7,19.3,2440,9,999999999,220,0.1390,0,88,999.000,999.0,99.0 +1981,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,13.3,8.9,75,99800,0,0,310,0,0,0,0,0,0,0,260,8.2,0,0,24.1,77777,9,999999999,179,0.1390,0,88,999.000,999.0,99.0 +1981,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,12.8,7.2,69,99900,0,0,306,0,0,0,0,0,0,0,250,8.8,0,0,24.1,77777,9,999999999,170,0.1390,0,88,999.000,999.0,99.0 +1981,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,12.8,6.1,64,100000,0,0,320,0,0,0,0,0,0,0,270,6.2,4,4,24.1,77777,9,999999999,150,0.1390,0,88,999.000,999.0,99.0 +1981,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,12.8,6.1,64,100100,30,696,335,10,1,10,1200,0,1200,360,260,7.2,9,8,24.1,1400,9,999999999,160,0.1330,0,88,999.000,999.0,99.0 +1981,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,13.9,6.7,62,100200,252,1370,326,75,60,65,8300,4500,7500,1390,280,9.3,4,4,24.1,77777,9,999999999,160,0.1330,0,88,999.000,999.0,99.0 +1981,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,13.9,7.2,64,100400,501,1370,336,205,168,145,22500,16200,16600,3340,270,9.8,7,7,24.1,1010,9,999999999,170,0.1330,0,88,999.000,999.0,99.0 +1981,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,16.7,7.8,56,100500,722,1370,338,440,555,151,47800,56100,18100,3220,290,9.3,3,3,24.1,77777,9,999999999,170,0.1330,0,88,999.000,999.0,99.0 +1981,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,16.7,7.2,54,100600,898,1370,362,242,1,241,28100,100,28000,10590,300,9.8,9,9,24.1,1070,9,999999999,170,0.1330,0,88,999.000,999.0,99.0 +1981,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,19.4,6.7,44,100600,1018,1370,346,735,783,157,76700,78200,18400,4310,300,10.3,2,2,24.1,77777,9,999999999,160,0.1330,0,88,999.000,999.0,99.0 +1981,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,18.9,7.2,47,100700,1073,1370,373,444,114,355,48800,12100,39300,12320,290,8.8,9,9,24.1,1400,9,999999999,170,0.1330,0,88,999.000,999.0,99.0 +1981,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,19.4,6.7,44,100900,1059,1370,349,699,649,199,74300,66000,23100,6580,300,8.2,3,3,24.1,77777,9,999999999,160,0.1330,0,88,999.000,999.0,99.0 +1981,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,21.1,6.7,39,100900,979,1370,357,653,641,197,68800,64700,22500,5590,280,8.2,3,3,24.1,77777,9,999999999,160,0.1330,0,88,999.000,999.0,99.0 +1981,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,20.0,6.1,41,101000,836,1370,357,382,301,199,42100,32100,22400,4810,290,7.7,5,5,24.1,77777,9,999999999,160,0.1330,0,88,999.000,999.0,99.0 +1981,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,20.0,6.1,41,101100,641,1370,357,235,157,162,26000,16000,18500,3950,310,6.7,5,5,24.1,77777,9,999999999,160,0.1330,0,88,999.000,999.0,99.0 +1981,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,19.4,5.6,40,101300,408,1370,348,190,323,95,20100,28500,11600,1770,290,5.2,3,3,24.1,77777,9,999999999,150,0.1330,0,88,999.000,999.0,99.0 +1981,3,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,101400,154,1370,342,47,146,31,5000,8100,4100,550,110,5.2,3,3,24.1,77777,9,999999999,150,0.1330,0,88,999.000,999.0,99.0 +1981,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,10.6,6.1,74,101600,2,171,341,1,0,1,0,0,0,0,80,4.1,10,10,24.1,1400,9,999999999,160,0.1330,0,88,999.000,999.0,99.0 +1981,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,5.6,66,101700,0,0,320,0,0,0,0,0,0,0,60,4.6,6,6,24.1,1400,9,999999999,150,0.1390,0,88,999.000,999.0,99.0 +1981,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.2,5.6,64,101900,0,0,322,0,0,0,0,0,0,0,60,6.2,6,6,24.1,1400,9,999999999,150,0.1390,0,88,999.000,999.0,99.0 +1981,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,10.8,4.9,77,102000,0,0,315,0,0,0,0,0,0,0,90,5.8,6,6,24.1,1160,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1981,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,9.3,4.2,80,102100,0,0,333,0,0,0,0,0,0,0,120,5.5,10,10,20.9,1100,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1981,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,7.9,3.5,80,102100,0,0,325,0,0,0,0,0,0,0,150,5.1,10,10,19.3,1010,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1990,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,6.5,2.7,86,101700,0,0,318,0,0,0,0,0,0,0,20,4.7,10,10,24.1,400,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1990,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,5.1,2.0,86,101800,0,0,311,0,0,0,0,0,0,0,10,4.3,10,10,24.1,400,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1990,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,3.6,1.3,89,101700,0,0,303,0,0,0,0,0,0,0,360,4.0,10,10,24.1,340,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1990,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,2.2,0.6,89,101700,0,0,297,0,0,0,0,0,0,0,30,3.6,10,10,24.1,340,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1990,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,1.7,0.0,89,101700,0,0,294,0,0,0,0,0,0,0,20,4.1,10,10,24.1,310,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1990,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,1.7,0.6,92,101800,33,719,294,12,0,12,1400,0,1400,430,350,5.7,10,10,14.5,270,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1990,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,1.7,0.0,89,101800,258,1369,294,67,0,67,7500,0,7500,2270,360,4.6,10,10,14.5,270,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1990,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,2.2,0.0,85,101700,507,1369,296,172,0,172,19100,0,19100,5950,10,3.1,10,10,14.5,310,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1990,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,2.2,0.6,89,101800,727,1369,297,260,0,260,29200,0,29200,9720,40,4.6,10,10,16.1,310,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1990,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,2.8,0.6,86,101700,903,1369,299,309,0,309,35200,0,35200,12560,30,5.2,10,10,16.1,340,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1990,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,2.8,0.0,82,101700,1022,1369,299,350,1,349,40300,100,40200,14640,30,3.6,10,10,19.3,460,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1990,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,3.3,0.0,79,101700,1077,1369,301,382,1,382,44100,100,44000,15940,30,4.6,10,10,19.3,520,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1990,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,3.3,0.6,82,101700,1063,1369,301,375,0,375,43200,0,43200,15660,80,4.1,10,10,24.1,580,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1990,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,3.9,0.6,79,101600,982,1369,304,332,1,331,38100,100,38000,13840,110,4.6,10,10,24.1,640,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1990,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,4.4,1.1,79,101500,840,1369,282,525,495,223,55700,50800,24500,5410,90,6.2,10,5,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1990,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,3.9,1.1,82,101500,645,1369,282,317,223,213,34600,22600,23900,5210,100,5.2,10,6,24.1,700,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1990,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,3.9,1.1,82,101500,412,1369,285,167,117,132,18100,10600,14900,2950,110,5.7,10,7,24.1,670,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1990,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,3.3,1.1,86,101600,158,1369,287,46,70,38,5000,4200,4600,800,110,4.6,10,8,24.1,760,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1990,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,2.8,0.6,86,101500,2,194,271,1,3,0,0,0,0,0,100,6.2,3,3,19.3,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1990,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,2.8,0.6,86,101600,0,0,271,0,0,0,0,0,0,0,120,5.2,3,3,19.3,77777,9,999999999,110,0.1400,0,88,999.000,999.0,99.0 +1990,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,2.8,1.1,89,101600,0,0,285,0,0,0,0,0,0,0,110,3.6,10,8,16.1,2740,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1990,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,3.3,1.1,86,101500,0,0,302,0,0,0,0,0,0,0,110,3.1,10,10,12.9,520,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1990,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,1.1,86,101600,0,0,302,0,0,0,0,0,0,0,100,3.1,10,10,12.9,460,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1990,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.3,1.7,89,101500,0,0,303,0,0,0,0,0,0,0,110,2.6,10,10,16.1,370,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1990,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,3.3,1.7,89,101400,0,0,303,0,0,0,0,0,0,0,140,3.1,10,10,16.1,430,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1990,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,3.3,1.1,86,101400,0,0,302,0,0,0,0,0,0,0,170,2.1,10,10,16.1,400,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1990,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,3.3,1.7,89,101500,0,0,303,0,0,0,0,0,0,0,210,2.1,10,10,16.1,700,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1990,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,3.3,1.7,89,101400,0,0,303,0,0,0,0,0,0,0,190,2.6,10,10,16.1,760,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1990,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,3.3,1.7,89,101400,0,0,303,0,0,0,0,0,0,0,220,2.1,10,10,16.1,730,9,999999999,120,0.1400,0,88,999.000,999.0,99.0 +1990,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,3.3,1.7,89,101500,37,764,303,6,0,6,700,0,700,230,190,4.1,10,10,12.9,700,9,999999999,120,0.0980,0,88,999.000,999.0,99.0 +1990,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,3.3,1.7,89,101500,265,1368,303,55,5,54,6200,100,6200,1970,180,2.6,10,10,11.3,880,9,999999999,120,0.0980,0,88,999.000,999.0,99.0 +1990,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,3.9,2.2,89,101500,514,1368,306,174,8,171,19300,600,19100,5980,160,2.1,10,10,12.9,760,9,999999999,120,0.0980,0,88,999.000,999.0,99.0 +1990,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,3.9,2.2,89,101500,733,1368,306,190,2,189,21900,200,21800,7950,150,3.1,10,10,12.9,700,9,999999999,120,0.0980,0,88,999.000,999.0,99.0 +1990,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,4.4,2.2,86,101500,909,1368,308,153,8,148,18500,600,18100,7240,140,3.6,10,10,12.9,700,9,999999999,120,0.0980,0,88,999.000,999.0,99.0 +1990,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,5.0,2.8,86,101500,1027,1368,311,338,3,335,39000,300,38800,14310,130,3.6,10,10,16.1,520,9,999999999,129,0.0980,0,88,999.000,999.0,99.0 +1990,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,5.0,3.3,89,101400,1082,1368,312,409,3,406,46900,300,46600,16580,90,4.6,10,10,16.1,520,9,999999999,129,0.0980,0,88,999.000,999.0,99.0 +1990,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,5.0,2.8,86,101400,1068,1368,311,332,4,329,38700,400,38400,14420,100,5.2,10,10,14.5,520,9,999999999,129,0.0980,0,88,999.000,999.0,99.0 +1990,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,4.4,2.8,89,101400,987,1368,309,371,0,371,42300,0,42300,14870,110,5.7,10,10,14.5,460,9,999999999,129,0.0980,0,88,999.000,999.0,99.0 +1990,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,4.4,3.3,93,101400,844,1368,309,278,1,277,31600,100,31600,11220,110,5.7,10,10,16.1,430,9,999999999,129,0.0980,0,88,999.000,999.0,99.0 +1990,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,3.3,93,101300,649,1368,309,216,1,216,24300,100,24300,8060,100,6.2,10,10,16.1,580,9,999999999,129,0.0980,0,88,999.000,999.0,99.0 +1990,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,3.3,93,101400,416,1368,309,118,1,117,13100,100,13100,4170,100,6.7,10,10,16.1,610,9,999999999,129,0.0980,0,88,999.000,999.0,99.0 +1990,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,4.4,3.3,93,101400,162,1368,309,40,0,40,4500,0,4500,1320,90,5.2,10,10,14.5,580,9,999999999,129,0.0980,0,88,999.000,999.0,99.0 +1990,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,4.4,3.3,93,101500,3,217,309,1,0,1,0,0,0,0,110,5.7,10,10,9.7,610,9,999999999,129,0.0980,0,88,999.000,999.0,99.0 +1990,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,4.4,3.9,96,101500,0,0,310,0,0,0,0,0,0,0,110,5.2,10,10,9.7,580,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1990,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,4.4,3.9,96,101500,0,0,310,0,0,0,0,0,0,0,120,3.6,10,10,9.7,580,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1990,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,4.4,3.3,93,101400,0,0,309,0,0,0,0,0,0,0,100,3.1,10,10,11.3,910,9,999999999,129,0.1400,0,88,999.000,999.0,99.0 +1990,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,4.4,3.9,96,101400,0,0,310,0,0,0,0,0,0,0,110,2.1,10,10,16.1,520,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1990,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,4.4,3.9,96,101300,0,0,310,0,0,0,0,0,0,0,90,4.1,10,10,12.9,460,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1990,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,3.9,3.9,100,101300,0,0,308,0,0,0,0,0,0,0,100,5.2,10,10,12.9,550,9,999999999,139,0.1410,0,88,999.000,999.0,99.0 +1990,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,3.9,3.3,96,101200,0,0,307,0,0,0,0,0,0,0,100,6.2,10,10,11.3,1130,9,999999999,129,0.1410,0,88,999.000,999.0,99.0 +1990,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,3.9,3.3,96,101100,0,0,307,0,0,0,0,0,0,0,90,5.2,10,10,19.3,640,9,999999999,129,0.1410,0,88,999.000,999.0,99.0 +1990,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,3.9,3.3,96,101100,0,0,307,0,0,0,0,0,0,0,80,7.2,10,10,19.3,180,9,999999999,129,0.1410,0,88,999.000,999.0,99.0 +1990,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,3.9,3.3,96,101200,0,0,307,0,0,0,0,0,0,0,80,6.2,10,10,19.3,180,9,999999999,129,0.1410,0,88,999.000,999.0,99.0 +1990,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,3.9,3.3,96,101100,41,809,307,18,0,18,2000,0,2000,600,70,7.7,10,10,24.1,210,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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,3.9,3.3,96,101100,272,1367,307,62,0,61,6900,0,6900,2180,70,7.2,10,10,24.1,180,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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,4.4,3.3,93,101100,520,1367,309,148,0,148,16700,0,16700,5520,60,8.2,10,10,19.3,180,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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,3.3,96,101100,740,1367,307,135,1,134,16000,100,15900,6120,80,7.2,10,10,12.9,210,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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.9,3.3,96,101000,914,1367,307,194,0,194,23000,0,23000,9070,60,8.2,10,10,1.6,150,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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.9,3.3,96,100900,1033,1367,307,212,0,212,25400,0,25400,10240,70,9.3,10,10,1.6,150,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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,3.9,3.3,96,100800,1087,1367,307,239,1,238,28600,100,28500,11420,60,8.8,10,10,3.2,150,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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,3.9,3.9,100,100700,1073,1367,308,238,1,237,28400,100,28400,11340,60,9.8,10,10,3.2,150,9,999999999,139,0.1560,0,88,999.000,999.0,99.0 +1990,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.9,3.9,100,100600,991,1367,308,191,1,190,22900,100,22900,9220,50,9.3,10,10,3.2,150,9,999999999,139,0.1560,0,88,999.000,999.0,99.0 +1990,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.9,3.3,96,100500,848,1367,307,180,1,179,21200,100,21200,8220,60,11.3,10,10,4.8,150,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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.9,3.3,96,100300,654,1367,307,116,1,116,13700,100,13700,5150,60,12.4,10,10,4.8,180,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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,3.9,3.3,96,100300,421,1367,307,75,0,75,8700,0,8700,3030,50,9.8,10,10,4.8,180,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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,3.9,3.3,96,100200,167,1367,307,23,0,23,2700,0,2700,870,70,9.8,10,10,4.8,180,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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,3.9,3.3,96,100100,3,239,307,1,0,1,0,0,0,0,60,10.3,10,10,6.4,180,9,999999999,129,0.1560,0,88,999.000,999.0,99.0 +1990,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,3.9,3.9,100,100100,0,0,308,0,0,0,0,0,0,0,60,9.8,10,10,6.4,180,9,999999999,139,0.1410,0,88,999.000,999.0,99.0 +1990,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,4.4,3.9,96,100000,0,0,310,0,0,0,0,0,0,0,60,8.8,10,10,6.4,180,9,999999999,129,0.1410,0,88,999.000,999.0,99.0 +1990,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,4.4,3.9,96,99900,0,0,310,0,0,0,0,0,0,0,70,5.7,10,10,4.8,210,9,999999999,129,0.1410,0,88,999.000,999.0,99.0 +1990,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,4.4,3.9,96,99700,0,0,310,0,0,0,0,0,0,0,50,5.7,10,10,4.8,240,9,999999999,129,0.1410,0,88,999.000,999.0,99.0 +1990,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,4.4,3.9,96,99500,0,0,310,0,0,0,0,0,0,0,60,10.3,10,10,4.8,180,9,999999999,129,0.1410,0,88,999.000,999.0,99.0 +1990,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,4.4,4.4,100,99200,0,0,310,0,0,0,0,0,0,0,40,11.8,10,10,4.8,180,9,999999999,139,0.1420,0,88,999.000,999.0,99.0 +1990,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,5.0,4.4,96,99000,0,0,313,0,0,0,0,0,0,0,50,11.8,10,10,4.8,210,9,999999999,139,0.1420,0,88,999.000,999.0,99.0 +1990,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,5.0,5.0,100,98900,0,0,314,0,0,0,0,0,0,0,50,10.3,10,10,4.8,120,9,999999999,139,0.1420,0,88,999.000,999.0,99.0 +1990,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,5.6,5.6,100,98800,0,0,317,0,0,0,0,0,0,0,50,8.8,10,10,1.6,90,9,999999999,150,0.1420,0,88,999.000,999.0,99.0 +1990,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,5.6,5.6,100,98700,0,0,317,0,0,0,0,0,0,0,70,6.2,10,10,0.0,30,9,999999999,150,0.1420,0,88,999.000,999.0,99.0 +1990,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.6,5.6,100,98700,45,831,317,9,0,9,1100,0,1100,340,80,4.1,10,10,0.0,30,9,999999999,150,0.1530,0,88,999.000,999.0,99.0 +1990,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,6.1,6.1,100,98700,279,1367,320,42,0,41,4800,0,4800,1610,150,2.6,10,10,0.8,90,9,999999999,150,0.1530,0,88,999.000,999.0,99.0 +1990,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,7.2,7.2,100,98700,527,1367,326,147,1,147,16600,100,16600,5540,200,5.2,10,10,1.6,210,9,999999999,160,0.1530,0,88,999.000,999.0,99.0 +1990,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,8.9,7.8,93,98700,746,1367,319,289,122,223,31700,12700,24800,5750,240,6.2,10,8,11.3,340,9,999999999,170,0.1530,0,88,999.000,999.0,99.0 +1990,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,8.3,6.7,89,98800,920,1367,315,394,120,314,43100,12700,34600,9190,230,8.8,10,8,12.9,340,9,999999999,160,0.1530,0,88,999.000,999.0,99.0 +1990,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.8,6.1,89,98800,1038,1367,328,241,3,239,28700,200,28500,11280,230,7.7,10,10,16.1,430,9,999999999,150,0.1530,0,88,999.000,999.0,99.0 +1990,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,7.8,5.0,83,98700,1092,1367,326,304,14,293,35900,1200,34900,13410,240,7.7,10,10,19.3,430,9,999999999,139,0.1530,0,88,999.000,999.0,99.0 +1990,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,7.8,5.0,83,98800,1077,1367,326,342,12,333,39900,1100,39000,14600,200,9.8,10,10,19.3,550,9,999999999,139,0.1530,0,88,999.000,999.0,99.0 +1990,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,7.8,4.4,80,98900,996,1367,326,319,3,316,36800,300,36600,13550,230,9.8,10,10,19.3,580,9,999999999,139,0.1530,0,88,999.000,999.0,99.0 +1990,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,7.8,4.4,80,98900,853,1367,326,254,4,251,29200,400,28900,10590,200,7.7,10,10,19.3,610,9,999999999,139,0.1530,0,88,999.000,999.0,99.0 +1990,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,7.8,3.3,74,98900,658,1367,325,172,4,170,19700,300,19600,6940,220,8.8,10,10,19.3,670,9,999999999,129,0.1530,0,88,999.000,999.0,99.0 +1990,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,7.2,3.3,77,99000,425,1367,322,117,3,116,13100,200,13100,4200,200,8.2,10,10,19.3,640,9,999999999,129,0.1530,0,88,999.000,999.0,99.0 +1990,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,6.7,3.3,80,99000,172,1367,320,32,1,32,3700,0,3700,1140,210,7.7,10,10,19.3,610,9,999999999,129,0.1530,0,88,999.000,999.0,99.0 +1990,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,6.1,3.3,83,99100,4,262,317,1,0,1,0,0,0,0,190,8.8,10,10,24.1,880,9,999999999,129,0.1530,0,88,999.000,999.0,99.0 +1990,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,6.1,3.3,83,99100,0,0,317,0,0,0,0,0,0,0,190,7.7,10,10,24.1,2740,9,999999999,129,0.1420,0,88,999.000,999.0,99.0 +1990,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,6.1,2.8,80,99200,0,0,316,0,0,0,0,0,0,0,190,8.2,10,10,24.1,640,9,999999999,129,0.1420,0,88,999.000,999.0,99.0 +1990,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,5.6,2.8,83,99200,0,0,314,0,0,0,0,0,0,0,200,8.2,10,10,24.1,1250,9,999999999,129,0.1420,0,88,999.000,999.0,99.0 +1990,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,5.6,2.2,79,99300,0,0,313,0,0,0,0,0,0,0,200,8.2,10,10,24.1,1250,9,999999999,120,0.1420,0,88,999.000,999.0,99.0 +1990,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,5.6,2.2,79,99300,0,0,313,0,0,0,0,0,0,0,210,7.7,10,10,24.1,1490,9,999999999,120,0.1420,0,88,999.000,999.0,99.0 +1990,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,5.0,2.2,83,99200,0,0,311,0,0,0,0,0,0,0,200,6.7,10,10,24.1,1370,9,999999999,120,0.1430,0,88,999.000,999.0,99.0 +1990,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,5.0,1.7,79,99300,0,0,310,0,0,0,0,0,0,0,210,7.2,10,10,24.1,1680,9,999999999,120,0.1430,0,88,999.000,999.0,99.0 +1990,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,5.0,1.7,79,99300,0,0,310,0,0,0,0,0,0,0,230,7.2,10,10,24.1,1250,9,999999999,120,0.1430,0,88,999.000,999.0,99.0 +1990,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,5.6,1.7,76,99400,0,0,313,0,0,0,0,0,0,0,230,8.8,10,10,24.1,1250,9,999999999,120,0.1430,0,88,999.000,999.0,99.0 +1990,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,5.0,1.1,76,99500,0,0,290,0,0,0,0,0,0,0,230,8.8,8,7,24.1,1830,9,999999999,110,0.1430,0,88,999.000,999.0,99.0 +1990,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,5.0,1.1,76,99600,49,876,273,24,81,16,2200,3100,2000,280,230,8.2,3,1,24.1,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1990,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,5.6,1.1,73,99700,286,1366,282,130,291,70,13600,22300,8900,1280,230,9.8,6,3,24.1,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1990,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,7.2,0.6,63,99800,534,1366,288,322,578,99,33700,54400,12400,1920,240,8.8,4,3,24.1,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1990,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,8.9,0.0,54,99900,752,1366,297,510,669,144,53500,66400,16900,3170,230,9.3,4,4,24.1,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1990,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.0,0.0,50,100000,926,1366,299,619,656,176,65400,66300,20300,4680,230,9.3,3,3,24.1,77777,9,999999999,110,0.0740,0,88,999.000,999.0,99.0 +1990,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,10.6,-1.7,43,100000,1043,1366,300,781,773,193,83100,78600,22900,6230,230,10.3,7,3,24.1,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1990,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,11.7,-1.7,40,100000,1096,1366,307,611,491,218,67600,51400,26200,7850,250,9.8,5,4,24.1,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1990,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,12.8,-1.7,37,100000,1082,1366,309,750,731,173,80700,74900,21200,6130,260,10.3,4,3,24.1,77777,9,999999999,100,0.0740,0,88,999.000,999.0,99.0 +1990,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,11.7,-2.2,38,100000,1000,1366,315,503,257,315,54600,27700,34300,9580,270,9.8,8,7,24.1,2740,9,999999999,89,0.0740,0,88,999.000,999.0,99.0 +1990,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,12.2,-2.8,35,100100,857,1366,329,388,96,328,42600,9800,36500,10430,300,9.3,9,9,24.1,2130,9,999999999,89,0.0740,0,88,999.000,999.0,99.0 +1990,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,-3.3,37,100200,662,1366,316,342,209,241,37000,21200,26700,5950,280,8.2,8,8,24.1,1980,9,999999999,89,0.0740,0,88,999.000,999.0,99.0 +1990,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.7,-2.8,37,100300,430,1366,308,238,468,92,25400,42100,12100,1710,300,7.2,5,5,24.1,77777,9,999999999,89,0.0740,0,88,999.000,999.0,99.0 +1990,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,10.0,-3.9,38,100500,176,1366,300,62,110,48,6500,6300,5700,900,260,8.2,6,5,24.1,1980,9,999999999,89,0.0740,0,88,999.000,999.0,99.0 +1990,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,9.4,-4.4,38,100700,5,285,289,3,10,1,0,0,0,0,280,8.8,3,2,24.1,77777,9,999999999,80,0.0740,0,88,999.000,999.0,99.0 +1990,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,8.9,-4.4,39,100900,0,0,278,0,0,0,0,0,0,0,280,7.7,0,0,24.1,77777,9,999999999,80,0.1430,0,88,999.000,999.0,99.0 +1990,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,7.8,-5.0,40,100900,0,0,273,0,0,0,0,0,0,0,270,5.7,0,0,24.1,77777,9,999999999,80,0.1430,0,88,999.000,999.0,99.0 +1990,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,6.7,-4.4,45,101000,0,0,269,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,80,0.1430,0,88,999.000,999.0,99.0 +1990,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,6.1,-4.4,47,101000,0,0,267,0,0,0,0,0,0,0,170,2.1,0,0,24.1,77777,9,999999999,80,0.1430,0,88,999.000,999.0,99.0 +1990,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,3.9,-0.6,73,100900,0,0,280,0,0,0,0,0,0,0,170,4.1,8,6,24.1,3660,9,999999999,100,0.1430,0,88,999.000,999.0,99.0 +1990,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,3.9,-1.7,67,100900,0,0,270,0,0,0,0,0,0,0,180,4.6,2,2,24.1,77777,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1990,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,4.4,-1.7,65,101000,0,0,304,0,0,0,0,0,0,0,210,5.7,10,10,24.1,2440,9,999999999,100,0.1440,0,88,999.000,999.0,99.0 +1990,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,5.6,0.0,68,101000,0,0,311,0,0,0,0,0,0,0,250,5.7,10,10,24.1,2900,9,999999999,110,0.1440,0,88,999.000,999.0,99.0 +1990,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,5.6,0.0,68,101000,0,0,311,0,0,0,0,0,0,0,220,4.6,10,10,24.1,2740,9,999999999,110,0.1440,0,88,999.000,999.0,99.0 +1990,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,5.6,0.0,68,101000,0,0,311,0,0,0,0,0,0,0,190,5.2,10,10,24.1,3660,9,999999999,110,0.1440,0,88,999.000,999.0,99.0 +1990,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,5.6,1.1,73,101100,54,921,312,14,9,14,1600,500,1600,350,210,6.7,10,10,24.1,1830,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1990,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,7.2,0.0,61,101100,293,1365,318,72,7,71,8100,300,8100,2510,240,7.2,10,10,24.1,1830,9,999999999,110,0.1050,0,88,999.000,999.0,99.0 +1990,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,8.3,-1.1,52,101200,540,1365,306,160,82,128,17700,8100,14500,2990,240,7.7,10,8,24.1,2130,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1990,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,8.9,0.0,54,101200,758,1365,305,377,177,279,40800,18300,30600,7250,250,8.2,10,7,24.1,4270,9,999999999,110,0.1050,0,88,999.000,999.0,99.0 +1990,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,8.9,-0.6,52,101200,931,1365,325,260,20,246,30300,1700,29100,10980,240,6.2,10,10,24.1,2130,9,999999999,110,0.1050,0,88,999.000,999.0,99.0 +1990,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,9.4,-0.6,50,101200,1048,1365,303,617,417,298,65600,43400,32200,9900,250,6.2,9,6,24.1,6100,9,999999999,110,0.1050,0,88,999.000,999.0,99.0 +1990,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,10.0,-2.2,43,101100,1101,1365,304,463,185,314,51500,19800,35500,11440,290,6.2,8,6,24.1,2900,9,999999999,100,0.1050,0,88,999.000,999.0,99.0 +1990,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,10.6,-3.3,38,101100,1086,1365,306,544,333,279,60300,36200,31400,9500,240,7.2,10,6,24.1,6100,9,999999999,89,0.1050,0,88,999.000,999.0,99.0 +1990,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,11.1,-5.0,32,101000,1004,1365,309,478,114,394,52600,11800,43900,13980,260,7.2,10,7,24.1,6100,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1990,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,10.6,-5.0,34,101100,861,1365,328,233,11,227,27200,900,26600,9930,280,7.7,10,10,24.1,4270,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1990,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,10.6,-7.2,28,101100,666,1365,325,159,12,153,18400,900,18000,6470,300,7.7,10,10,24.1,4270,9,999999999,69,0.1050,0,88,999.000,999.0,99.0 +1990,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,10.0,-6.1,32,101100,434,1365,324,107,6,105,12100,400,12000,3970,300,6.7,10,10,24.1,4270,9,999999999,80,0.1050,0,88,999.000,999.0,99.0 +1990,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,9.4,-7.2,30,101200,181,1365,320,36,0,36,4100,0,4100,1270,290,6.2,10,10,24.1,3050,9,999999999,69,0.1050,0,88,999.000,999.0,99.0 +1990,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,8.9,-6.7,33,101200,6,307,318,2,0,2,0,0,0,0,290,6.2,10,10,24.1,3050,9,999999999,69,0.1050,0,88,999.000,999.0,99.0 +1990,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,7.8,-7.8,33,101300,0,0,312,0,0,0,0,0,0,0,320,7.7,10,10,24.1,3350,9,999999999,69,0.1440,0,88,999.000,999.0,99.0 +1990,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,6.7,-7.8,35,101400,0,0,307,0,0,0,0,0,0,0,290,6.2,10,10,24.1,3350,9,999999999,69,0.1440,0,88,999.000,999.0,99.0 +1990,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.1,-12.2,26,101400,0,0,299,0,0,0,0,0,0,0,300,6.2,10,10,24.1,3350,9,999999999,60,0.1440,0,88,999.000,999.0,99.0 +1990,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,5.6,-13.3,25,101400,0,0,296,0,0,0,0,0,0,0,290,6.2,10,10,24.1,2900,9,999999999,50,0.1440,0,88,999.000,999.0,99.0 +1990,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,-11.7,29,101500,0,0,295,0,0,0,0,0,0,0,320,6.2,10,10,24.1,2290,9,999999999,60,0.1440,0,88,999.000,999.0,99.0 +1990,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,5.0,-10.0,33,101400,0,0,297,0,0,0,0,0,0,0,350,5.2,10,10,24.1,2740,9,999999999,60,0.1450,0,88,999.000,999.0,99.0 +1990,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,4.4,-10.0,35,101300,0,0,295,0,0,0,0,0,0,0,360,5.7,10,10,24.1,2590,9,999999999,60,0.1450,0,88,999.000,999.0,99.0 +1990,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,3.9,-10.0,36,101300,0,0,292,0,0,0,0,0,0,0,10,6.2,10,10,24.1,2440,9,999999999,60,0.1450,0,88,999.000,999.0,99.0 +1990,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,-9.4,38,101300,0,0,293,0,0,0,0,0,0,0,10,5.2,10,10,24.1,2440,9,999999999,60,0.1450,0,88,999.000,999.0,99.0 +1990,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,1.7,-5.0,62,101400,0,0,289,0,0,0,0,0,0,0,350,9.3,10,10,9.7,910,9,999999999,80,0.1450,0,88,999.000,999.0,99.0 +1990,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,0.0,-1.7,89,101400,58,943,285,12,1,12,1400,0,1400,440,340,6.2,10,10,2.8,790,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1990,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,-0.6,-1.1,96,101400,300,1364,283,78,3,77,8700,100,8700,2680,350,6.7,10,10,1.6,270,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1990,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,-0.6,-0.6,100,101400,547,1364,284,162,4,160,18200,300,18100,5990,360,6.7,10,10,1.6,210,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1990,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,0.0,-0.6,96,101400,764,1364,286,236,1,235,26800,100,26800,9480,340,6.2,10,10,3.2,340,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1990,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,0.6,-1.1,89,101300,937,1364,270,534,331,308,57800,35600,33300,8730,350,4.6,10,7,3.2,310,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1990,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,0.6,-0.6,92,101300,1054,1364,275,559,280,344,60900,30300,37400,11430,350,5.7,10,8,3.2,400,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1990,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,2.2,-1.7,76,101200,1106,1364,276,637,334,368,69500,36200,40100,13470,350,4.1,10,7,24.1,2440,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1990,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,2.8,-0.6,79,101000,1090,1364,276,728,544,295,78100,56700,32600,10690,70,5.7,8,6,24.1,2440,9,999999999,110,0.0790,0,88,999.000,999.0,99.0 +1990,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,3.3,-1.7,70,101000,1008,1364,272,686,577,260,73500,60000,29000,7960,130,6.2,8,4,24.1,3050,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1990,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,3.9,-1.1,70,100900,865,1364,271,617,856,76,64800,85000,10800,1930,130,6.2,2,2,24.1,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1990,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,5.0,-0.6,68,100900,671,1364,280,385,518,132,41900,51900,16300,2700,120,5.7,4,4,24.1,77777,9,999999999,110,0.0790,0,88,999.000,999.0,99.0 +1990,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,5.6,-1.7,60,101000,438,1364,294,137,91,108,15100,8500,12400,2440,110,4.1,8,8,24.1,3050,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1990,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,7.8,-13.9,20,101100,185,1364,278,68,139,50,7200,8300,6100,940,310,7.7,6,4,24.1,3050,9,999999999,50,0.0790,0,88,999.000,999.0,99.0 +1990,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,6.1,-12.2,26,101200,7,330,268,4,13,3,0,0,0,0,320,6.7,2,2,24.1,77777,9,999999999,60,0.0790,0,88,999.000,999.0,99.0 +1990,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,5.6,-10.6,31,101300,0,0,259,0,0,0,0,0,0,0,310,7.2,0,0,24.1,77777,9,999999999,60,0.1450,0,88,999.000,999.0,99.0 +1990,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,4.4,-10.0,35,101400,0,0,255,0,0,0,0,0,0,0,300,8.8,0,0,24.1,77777,9,999999999,60,0.1450,0,88,999.000,999.0,99.0 +1990,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,3.9,-8.9,39,101500,0,0,254,0,0,0,0,0,0,0,300,7.7,0,0,24.1,77777,9,999999999,69,0.1450,0,88,999.000,999.0,99.0 +1990,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,3.3,-8.3,43,101500,0,0,253,0,0,0,0,0,0,0,290,8.2,0,0,24.1,77777,9,999999999,69,0.1450,0,88,999.000,999.0,99.0 +1990,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,2.8,-8.9,42,101600,0,0,250,0,0,0,0,0,0,0,290,7.2,0,0,24.1,77777,9,999999999,69,0.1450,0,88,999.000,999.0,99.0 +1990,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,2.2,-9.4,42,101700,0,0,248,0,0,0,0,0,0,0,270,8.2,0,0,24.1,77777,9,999999999,60,0.1460,0,88,999.000,999.0,99.0 +1990,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,1.7,-10.6,40,101700,0,0,245,0,0,0,0,0,0,0,280,6.2,0,0,24.1,77777,9,999999999,60,0.1460,0,88,999.000,999.0,99.0 +1990,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,1.7,-10.0,42,101700,0,0,245,0,0,0,0,0,0,0,250,5.7,0,0,24.1,77777,9,999999999,60,0.1460,0,88,999.000,999.0,99.0 +1990,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,1.1,-9.4,46,101700,0,0,244,0,0,0,0,0,0,0,260,7.2,0,0,24.1,77777,9,999999999,60,0.1460,0,88,999.000,999.0,99.0 +1990,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,0.0,-8.3,54,101800,0,0,241,0,0,0,0,0,0,0,250,6.2,0,0,24.1,77777,9,999999999,69,0.1460,0,88,999.000,999.0,99.0 +1990,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,0.6,-8.3,52,101900,63,988,243,21,8,20,2300,500,2200,490,280,8.2,0,0,24.1,77777,9,999999999,69,0.2770,0,88,999.000,999.0,99.0 +1990,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,1.7,-7.8,50,102000,307,1363,247,125,225,75,13400,18000,9300,1420,280,8.2,0,0,24.1,77777,9,999999999,69,0.2770,0,88,999.000,999.0,99.0 +1990,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,2.8,-8.9,42,102000,553,1363,263,278,323,148,29900,32100,16900,3070,300,6.7,8,4,24.1,77777,9,999999999,69,0.2770,0,88,999.000,999.0,99.0 +1990,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,4.4,-8.9,38,102000,770,1363,272,408,269,256,43600,28300,27500,6260,290,8.2,9,5,24.1,6100,9,999999999,69,0.2770,0,88,999.000,999.0,99.0 +1990,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,3.9,-9.4,38,102000,942,1363,275,634,452,323,68400,48600,34700,9290,310,6.2,9,7,24.1,1680,9,999999999,60,0.2770,0,88,999.000,999.0,99.0 +1990,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,6.1,-8.9,34,102000,1058,1363,288,394,36,366,43400,3700,40500,14050,290,8.2,9,8,24.1,1830,9,999999999,69,0.2770,0,88,999.000,999.0,99.0 +1990,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,6.7,-8.3,34,101900,1110,1363,287,644,311,391,69800,33700,42300,14580,290,7.2,8,7,24.1,1980,9,999999999,69,0.2770,0,88,999.000,999.0,99.0 +1990,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,7.2,-8.9,31,101800,1095,1363,293,522,214,350,57600,22800,39200,12650,290,8.8,10,8,24.1,1980,9,999999999,69,0.2770,0,88,999.000,999.0,99.0 +1990,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,6.7,-10.6,28,101800,1012,1363,295,369,56,328,40700,5700,36500,12210,290,7.7,10,9,24.1,2290,9,999999999,60,0.2770,0,88,999.000,999.0,99.0 +1990,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,7.2,-9.4,30,101800,869,1363,307,252,9,247,29200,800,28700,10610,290,7.2,10,10,24.1,2290,9,999999999,60,0.2770,0,88,999.000,999.0,99.0 +1990,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,7.2,-10.0,29,101900,675,1363,284,331,281,193,35700,29100,21200,4310,290,7.7,8,6,24.1,2440,9,999999999,60,0.2770,0,88,999.000,999.0,99.0 +1990,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,6.7,-8.9,32,101900,443,1363,283,159,121,120,17400,11300,13700,2710,280,6.2,8,6,24.1,2900,9,999999999,69,0.2770,0,88,999.000,999.0,99.0 +1990,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,6.1,-8.3,35,102000,190,1363,275,58,46,52,6400,3300,5900,1240,310,5.7,8,3,24.1,77777,9,999999999,69,0.2770,0,88,999.000,999.0,99.0 +1990,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,5.6,-7.8,38,102100,8,375,262,3,0,3,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,69,0.2770,0,88,999.000,999.0,99.0 +1990,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,-7.8,38,102200,0,0,262,0,0,0,0,0,0,0,290,7.2,0,0,24.1,77777,9,999999999,69,0.1460,0,88,999.000,999.0,99.0 +1990,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,5.6,-7.8,38,102300,0,0,262,0,0,0,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,69,0.1460,0,88,999.000,999.0,99.0 +1990,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,4.4,-7.8,41,102400,0,0,257,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,69,0.1460,0,88,999.000,999.0,99.0 +1990,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,3.9,-8.9,39,102500,0,0,254,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,69,0.1460,0,88,999.000,999.0,99.0 +1990,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,3.3,-9.4,39,102600,0,0,252,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,60,0.1460,0,88,999.000,999.0,99.0 +1990,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,3.3,-9.4,39,102600,0,0,252,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,60,0.1470,0,88,999.000,999.0,99.0 +1990,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,2.8,-9.4,41,102600,0,0,250,0,0,0,0,0,0,0,260,4.1,0,0,24.1,77777,9,999999999,60,0.1470,0,88,999.000,999.0,99.0 +1990,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,3.3,-9.4,39,102700,0,0,252,0,0,0,0,0,0,0,270,5.2,0,0,24.1,77777,9,999999999,60,0.1470,0,88,999.000,999.0,99.0 +1990,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,2.8,-9.4,41,102700,0,0,250,0,0,0,0,0,0,0,270,5.2,0,0,24.1,77777,9,999999999,60,0.1470,0,88,999.000,999.0,99.0 +1990,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,2.8,-8.9,42,102800,0,0,250,0,0,0,0,0,0,0,270,6.2,0,0,24.1,77777,9,999999999,69,0.1470,0,88,999.000,999.0,99.0 +1990,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,3.3,-7.8,44,102900,68,1033,253,23,24,21,2500,1100,2400,430,290,5.7,0,0,24.1,77777,9,999999999,69,0.2090,0,88,999.000,999.0,99.0 +1990,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,4.4,-7.8,41,103000,314,1362,257,141,319,68,14900,25500,9000,1230,280,6.7,0,0,24.1,77777,9,999999999,69,0.2090,0,88,999.000,999.0,99.0 +1990,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,5.6,-6.7,41,102900,559,1362,263,334,552,109,34700,52300,13200,2120,270,6.2,0,0,24.1,77777,9,999999999,69,0.2090,0,88,999.000,999.0,99.0 +1990,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,8.3,-6.7,34,102900,776,1362,278,508,637,147,53400,63500,17100,3310,270,4.1,2,1,24.1,77777,9,999999999,69,0.2090,0,88,999.000,999.0,99.0 +1990,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,10.0,-7.8,28,102900,948,1362,279,682,744,166,72500,75600,19800,4610,260,4.1,0,0,24.1,77777,9,999999999,69,0.2090,0,88,999.000,999.0,99.0 +1990,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,11.1,-6.7,28,102800,1063,1362,284,794,788,181,85000,80500,22000,6170,260,4.6,0,0,24.1,77777,9,999999999,69,0.2090,0,88,999.000,999.0,99.0 +1990,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,12.2,-5.6,29,102800,1115,1362,290,836,794,187,89700,81300,23000,7160,240,5.7,0,0,24.1,77777,9,999999999,80,0.2090,0,88,999.000,999.0,99.0 +1990,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,13.9,-5.0,27,102700,1099,1362,298,825,794,185,88400,81300,22700,6820,230,8.2,0,0,24.1,77777,9,999999999,80,0.2090,0,88,999.000,999.0,99.0 +1990,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,14.4,-5.0,26,102600,1016,1362,309,730,682,222,76500,68700,25100,6710,240,9.8,2,2,24.1,77777,9,999999999,80,0.2090,0,88,999.000,999.0,99.0 +1990,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,14.4,-4.4,27,102500,873,1362,313,572,560,215,61300,57700,24200,5390,250,6.2,4,3,24.1,77777,9,999999999,80,0.2090,0,88,999.000,999.0,99.0 +1990,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,14.4,-5.0,26,102400,679,1362,329,268,111,213,29300,11400,23600,5300,250,8.2,10,8,24.1,2590,9,999999999,80,0.2090,0,88,999.000,999.0,99.0 +1990,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,14.4,-4.4,27,102400,447,1362,321,156,143,109,17200,13400,12800,2460,250,7.2,8,6,24.1,2740,9,999999999,80,0.2090,0,88,999.000,999.0,99.0 +1990,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,13.3,-6.1,26,102400,194,1362,299,62,125,44,6600,7700,5500,800,230,9.3,3,1,24.1,77777,9,999999999,80,0.2090,0,88,999.000,999.0,99.0 +1990,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,11.1,-6.1,30,102400,9,397,297,3,1,3,0,0,0,0,230,9.3,3,3,24.1,77777,9,999999999,80,0.2090,0,88,999.000,999.0,99.0 +1990,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,10.0,-5.6,33,102500,0,0,286,0,0,0,0,0,0,0,230,8.2,1,1,24.1,77777,9,999999999,80,0.1470,0,88,999.000,999.0,99.0 +1990,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,9.4,-3.3,41,102500,0,0,293,0,0,0,0,0,0,0,230,8.8,7,3,24.1,77777,9,999999999,89,0.1470,0,88,999.000,999.0,99.0 +1990,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,8.9,-2.2,46,102500,0,0,292,0,0,0,0,0,0,0,230,7.7,8,3,24.1,77777,9,999999999,100,0.1470,0,88,999.000,999.0,99.0 +1990,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,9.4,-1.1,48,102400,0,0,306,0,0,0,0,0,0,0,210,8.8,10,7,24.1,7620,9,999999999,100,0.1470,0,88,999.000,999.0,99.0 +1990,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,8.9,-5.6,36,102400,0,0,319,0,0,0,0,0,0,0,220,8.2,10,10,24.1,3350,9,999999999,80,0.1470,0,88,999.000,999.0,99.0 +1990,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,8.9,-2.2,46,102300,0,0,314,0,0,0,0,0,0,0,220,9.3,9,9,24.1,3960,9,999999999,100,0.1480,0,88,999.000,999.0,99.0 +1990,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,8.3,-1.7,50,102200,0,0,293,0,0,0,0,0,0,0,230,7.7,7,4,24.1,7620,9,999999999,100,0.1480,0,88,999.000,999.0,99.0 +1990,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,8.3,-2.2,48,102100,0,0,290,0,0,0,0,0,0,0,220,9.3,8,3,24.1,77777,9,999999999,100,0.1480,0,88,999.000,999.0,99.0 +1990,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.3,-2.2,48,102000,0,0,287,0,0,0,0,0,0,0,230,8.8,5,2,24.1,77777,9,999999999,100,0.1480,0,88,999.000,999.0,99.0 +1990,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.3,-2.2,48,102000,0,0,297,0,0,0,0,0,0,0,230,8.2,9,6,24.1,7620,9,999999999,100,0.1480,0,88,999.000,999.0,99.0 +1990,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.9,-1.1,50,101900,73,1055,316,21,1,21,2400,0,2400,710,230,9.3,10,9,24.1,6710,9,999999999,100,0.2870,0,88,999.000,999.0,99.0 +1990,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,10.0,0.0,50,101900,320,1362,331,65,2,64,7400,100,7400,2410,230,9.3,10,10,24.1,4270,9,999999999,110,0.2870,0,88,999.000,999.0,99.0 +1990,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,10.6,1.7,55,101900,566,1362,336,138,3,137,15800,200,15700,5490,240,8.8,10,10,24.1,3660,9,999999999,120,0.2870,0,88,999.000,999.0,99.0 +1990,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,11.7,2.8,55,101800,781,1362,342,215,2,214,24800,200,24700,9030,240,7.2,10,10,24.1,2900,9,999999999,129,0.2870,0,88,999.000,999.0,99.0 +1990,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,11.7,3.3,57,101800,953,1362,343,156,5,152,18900,400,18600,7550,250,8.8,10,10,24.1,1250,9,999999999,129,0.2870,0,88,999.000,999.0,99.0 +1990,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,12.8,4.4,57,101700,1068,1362,350,346,1,345,40100,100,40100,14920,240,5.2,10,10,24.1,3050,9,999999999,139,0.2870,0,88,999.000,999.0,99.0 +1990,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,15.0,5.0,52,101500,1119,1362,361,396,5,392,45900,500,45500,16530,210,5.7,10,10,24.1,2440,9,999999999,150,0.2870,0,88,999.000,999.0,99.0 +1990,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.0,5.6,54,101400,1103,1362,362,307,1,307,36200,100,36200,13940,200,9.3,10,10,24.1,3050,9,999999999,150,0.2870,0,88,999.000,999.0,99.0 +1990,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.6,6.1,54,101300,1020,1362,366,365,4,362,41900,400,41600,15010,230,8.2,10,10,24.1,3050,9,999999999,160,0.2870,0,88,999.000,999.0,99.0 +1990,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.6,6.7,56,101200,877,1362,366,253,2,251,29200,200,29000,10790,240,10.8,10,10,24.1,3050,9,999999999,160,0.2870,0,88,999.000,999.0,99.0 +1990,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,15.6,7.2,58,101200,683,1362,367,211,0,211,23900,0,23900,8230,230,8.2,10,10,24.1,3050,9,999999999,170,0.2870,0,88,999.000,999.0,99.0 +1990,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,15.0,8.3,65,101100,451,1362,365,124,1,123,13900,100,13800,4520,210,7.2,10,10,24.1,1830,9,999999999,179,0.2870,0,88,999.000,999.0,99.0 +1990,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,9.4,78,101000,199,1362,358,28,0,28,3300,0,3300,1070,200,7.7,10,10,14.5,2290,9,999999999,189,0.2870,0,88,999.000,999.0,99.0 +1990,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.9,8.9,72,100900,11,420,360,4,0,4,0,0,0,0,210,7.2,10,10,16.1,2440,9,999999999,179,0.2870,0,88,999.000,999.0,99.0 +1990,4,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,100800,0,0,360,0,0,0,0,0,0,0,210,7.7,10,10,19.3,2130,9,999999999,179,0.1480,0,88,999.000,999.0,99.0 +1990,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,10.0,75,100700,0,0,364,0,0,0,0,0,0,0,220,12.4,10,10,19.3,760,9,999999999,200,0.1480,0,88,999.000,999.0,99.0 +1990,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,12.8,10.0,83,100600,0,0,356,0,0,0,0,0,0,0,210,10.8,10,10,11.3,670,9,999999999,200,0.1480,0,88,999.000,999.0,99.0 +1990,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,11.7,8.9,83,100500,0,0,350,0,0,0,0,0,0,0,200,10.3,10,10,16.1,1680,9,999999999,179,0.1480,0,88,999.000,999.0,99.0 +1990,4,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,100300,0,0,352,0,0,0,0,0,0,0,210,13.9,10,10,16.1,1980,9,999999999,179,0.1480,0,88,999.000,999.0,99.0 +1990,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,13.3,9.4,78,100100,0,0,358,0,0,0,0,0,0,0,220,11.8,10,10,16.1,1830,9,999999999,189,0.1490,0,88,999.000,999.0,99.0 +1990,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,14.4,9.4,72,99900,0,0,364,0,0,0,0,0,0,0,220,14.4,10,10,16.1,1680,9,999999999,189,0.1490,0,88,999.000,999.0,99.0 +1990,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,13.3,10.0,80,99800,0,0,359,0,0,0,0,0,0,0,220,14.4,10,10,12.9,1830,9,999999999,189,0.1490,0,88,999.000,999.0,99.0 +1990,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,13.3,10.0,80,99700,0,0,359,0,0,0,0,0,0,0,220,13.9,10,10,16.1,1830,9,999999999,189,0.1490,0,88,999.000,999.0,99.0 +1990,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,13.3,10.0,80,99700,0,0,359,0,0,0,0,0,0,0,210,12.4,10,10,12.9,670,9,999999999,189,0.1490,0,88,999.000,999.0,99.0 +1990,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,12.2,11.1,93,99700,78,1100,355,14,0,14,1600,0,1600,520,210,11.8,10,10,8.0,670,9,999999999,209,0.2250,0,88,999.000,999.0,99.0 +1990,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,12.2,11.1,93,99700,327,1361,355,55,0,55,6400,0,6400,2160,220,10.3,10,10,9.7,490,9,999999999,209,0.2250,0,88,999.000,999.0,99.0 +1990,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,12.8,11.7,93,99700,572,1361,358,107,1,106,12500,100,12400,4530,220,9.8,10,10,19.3,490,9,999999999,220,0.2250,0,88,999.000,999.0,99.0 +1990,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,13.9,10.0,78,99800,787,1361,362,241,1,240,27500,100,27400,9810,280,7.7,10,10,19.3,1070,9,999999999,200,0.2250,0,88,999.000,999.0,99.0 +1990,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,12.8,7.2,69,99800,958,1361,343,408,110,331,45000,11300,37000,11650,280,7.7,10,9,24.1,1190,9,999999999,170,0.2250,0,88,999.000,999.0,99.0 +1990,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,13.9,6.7,62,99900,1073,1361,358,372,2,371,43000,200,42900,15670,300,7.2,10,10,24.1,1040,9,999999999,160,0.2250,0,88,999.000,999.0,99.0 +1990,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,13.9,6.1,60,99800,1124,1361,357,245,5,241,29500,400,29200,11650,300,8.8,10,10,24.1,1070,9,999999999,160,0.2250,0,88,999.000,999.0,99.0 +1990,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,12.8,5.6,62,100000,1107,1361,351,361,5,357,42000,500,41700,15500,310,7.7,10,10,24.1,1160,9,999999999,150,0.2250,0,88,999.000,999.0,99.0 +1990,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,12.2,4.4,59,100000,1024,1361,337,419,83,356,46100,8500,39700,13240,330,7.2,10,9,24.1,1040,9,999999999,139,0.2250,0,88,999.000,999.0,99.0 +1990,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,11.1,2.8,57,100000,881,1361,323,415,134,329,45100,14100,36000,9340,310,6.2,8,8,24.1,1070,9,999999999,129,0.2250,0,88,999.000,999.0,99.0 +1990,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,11.7,2.2,53,100100,687,1361,320,350,234,233,38100,24000,26000,5820,310,8.8,7,7,24.1,1370,9,999999999,120,0.2250,0,88,999.000,999.0,99.0 +1990,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,10.0,0.6,52,100200,455,1361,332,75,5,73,8800,300,8700,3060,300,9.3,10,10,24.1,1490,9,999999999,110,0.2250,0,88,999.000,999.0,99.0 +1990,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,8.9,-0.6,52,100300,203,1361,325,41,1,41,4700,0,4700,1460,300,7.7,10,10,24.1,1370,9,999999999,100,0.2250,0,88,999.000,999.0,99.0 +1990,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,-0.6,56,100400,12,442,320,3,0,3,0,0,0,0,320,9.3,10,10,24.1,1520,9,999999999,100,0.2250,0,88,999.000,999.0,99.0 +1990,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,6.7,-1.1,58,100500,0,0,315,0,0,0,0,0,0,0,310,8.2,10,10,24.1,1680,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1990,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,5.6,-2.2,58,100600,0,0,308,0,0,0,0,0,0,0,320,9.8,10,10,24.1,1310,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1990,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,5.0,-2.8,58,100700,0,0,305,0,0,0,0,0,0,0,320,8.8,10,10,24.1,1130,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1990,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,4.4,-3.9,55,100800,0,0,279,0,0,0,0,0,0,0,310,7.7,6,6,24.1,1160,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1990,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,3.9,-5.0,53,100900,0,0,274,0,0,0,0,0,0,0,320,9.3,5,5,24.1,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1990,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,3.3,-5.0,55,100900,0,0,256,0,0,0,0,0,0,0,290,7.2,0,0,24.1,77777,9,999999999,80,0.1500,0,88,999.000,999.0,99.0 +1990,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,-4.4,59,101000,0,0,255,0,0,0,0,0,0,0,290,6.7,0,0,24.1,77777,9,999999999,80,0.1500,0,88,999.000,999.0,99.0 +1990,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.2,-5.0,59,101000,0,0,252,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,80,0.1500,0,88,999.000,999.0,99.0 +1990,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,2.2,-5.0,59,101100,0,0,252,0,0,0,0,0,0,0,270,7.2,0,0,24.1,77777,9,999999999,80,0.1500,0,88,999.000,999.0,99.0 +1990,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.7,-4.4,64,101100,0,0,251,0,0,0,0,0,0,0,230,7.7,0,0,24.1,77777,9,999999999,80,0.1500,0,88,999.000,999.0,99.0 +1990,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,2.2,-3.9,64,101200,84,1145,253,36,156,21,3500,6900,3000,370,240,8.2,0,0,24.1,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1990,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,3.3,-4.4,57,101300,333,1360,257,181,561,46,18900,47400,7200,900,250,8.8,0,0,24.1,77777,9,999999999,80,0.0860,0,88,999.000,999.0,99.0 +1990,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,5.0,-6.1,45,101300,578,1360,261,385,753,67,40800,72500,10000,1440,280,9.3,0,0,24.1,77777,9,999999999,80,0.0860,0,88,999.000,999.0,99.0 +1990,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,5.6,-8.3,36,101400,793,1360,261,577,849,85,60500,83700,11600,1840,300,9.8,0,0,24.1,77777,9,999999999,69,0.0860,0,88,999.000,999.0,99.0 +1990,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,6.7,-10.0,30,101400,963,1360,264,735,903,98,76600,90000,12700,2450,300,9.3,0,0,24.1,77777,9,999999999,60,0.0860,0,88,999.000,999.0,99.0 +1990,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,7.2,-10.0,29,101400,1077,1360,266,838,926,105,87000,92700,13400,3140,260,10.3,0,0,24.1,77777,9,999999999,60,0.0860,0,88,999.000,999.0,99.0 +1990,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,7.8,-10.6,26,101400,1128,1360,272,846,871,125,87400,87100,14900,3860,260,8.2,1,1,24.1,77777,9,999999999,60,0.0860,0,88,999.000,999.0,99.0 +1990,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,8.3,-10.6,25,101400,1111,1360,281,854,750,242,89900,75800,27800,8990,250,10.3,3,3,24.1,77777,9,999999999,60,0.0860,0,88,999.000,999.0,99.0 +1990,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,8.3,-11.1,24,101500,1028,1360,280,667,666,164,71500,68200,19900,5270,280,8.2,3,3,24.1,77777,9,999999999,60,0.0860,0,88,999.000,999.0,99.0 +1990,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,8.3,-11.1,24,101500,885,1360,278,597,717,132,64000,73000,16400,3440,270,9.3,2,2,24.1,77777,9,999999999,60,0.0860,0,88,999.000,999.0,99.0 +1990,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,7.2,-11.1,26,101600,691,1360,270,382,541,109,40600,53600,13300,2360,260,9.3,1,1,24.1,77777,9,999999999,60,0.0860,0,88,999.000,999.0,99.0 +1990,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,6.7,-11.7,26,101800,459,1360,267,271,655,52,28800,60500,8300,1100,300,8.8,1,1,24.1,77777,9,999999999,60,0.0860,0,88,999.000,999.0,99.0 +1990,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,5.6,-12.2,27,101900,207,1360,257,95,401,35,9900,27500,5700,640,300,8.8,0,0,24.1,77777,9,999999999,60,0.0860,0,88,999.000,999.0,99.0 +1990,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,4.4,-12.2,29,102000,13,465,253,9,23,6,0,0,0,0,300,7.7,0,0,24.1,77777,9,999999999,60,0.0860,0,88,999.000,999.0,99.0 +1990,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,3.9,-11.7,32,102200,0,0,252,0,0,0,0,0,0,0,300,7.7,0,0,24.1,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1990,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,3.3,-11.1,34,102300,0,0,250,0,0,0,0,0,0,0,290,8.2,0,0,24.1,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1990,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,2.8,-10.6,37,102300,0,0,249,0,0,0,0,0,0,0,290,7.7,0,0,24.1,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1990,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,2.2,-10.6,39,102400,0,0,247,0,0,0,0,0,0,0,280,8.2,0,0,24.1,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1990,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,1.7,-10.0,42,102500,0,0,245,0,0,0,0,0,0,0,300,6.2,0,0,24.1,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1990,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,1.1,-10.0,44,102600,0,0,243,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,60,0.1510,0,88,999.000,999.0,99.0 +1990,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,0.6,-11.1,42,102600,0,0,240,0,0,0,0,0,0,0,280,6.2,0,0,24.1,77777,9,999999999,60,0.1510,0,88,999.000,999.0,99.0 +1990,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,0.0,-11.1,43,102700,0,0,238,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,60,0.1510,0,88,999.000,999.0,99.0 +1990,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,0.0,-11.1,43,102700,0,0,238,0,0,0,0,0,0,0,300,3.6,0,0,24.1,77777,9,999999999,60,0.1510,0,88,999.000,999.0,99.0 +1990,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,-0.6,-10.6,47,102800,0,0,237,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,60,0.1510,0,88,999.000,999.0,99.0 +1990,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,0.6,-10.0,46,102900,89,1167,242,39,193,20,3600,9800,2800,360,290,4.6,0,0,24.1,77777,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1990,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,1.7,-10.0,42,103000,340,1359,245,193,607,43,20200,51800,7200,870,300,4.6,0,0,24.1,77777,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1990,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,2.8,-8.9,42,103100,584,1359,250,394,777,62,42200,75200,9800,1370,290,5.2,0,0,24.1,77777,9,999999999,69,0.0720,0,88,999.000,999.0,99.0 +1990,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,4.4,-8.3,39,103100,798,1359,257,586,867,78,61400,85600,11000,1810,310,5.2,0,0,24.1,77777,9,999999999,69,0.0720,0,88,999.000,999.0,99.0 +1990,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,5.0,-8.9,36,103100,968,1359,274,558,486,213,60700,50600,24600,6060,260,3.1,6,5,24.1,1680,9,999999999,69,0.0720,0,88,999.000,999.0,99.0 +1990,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,5.0,-10.0,33,103100,1082,1359,273,846,735,261,88200,73800,29300,8950,260,4.6,6,5,24.1,1680,9,999999999,60,0.0720,0,88,999.000,999.0,99.0 +1990,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,6.7,-8.9,32,103000,1132,1359,276,759,661,210,81000,67400,24700,8380,300,3.6,4,3,24.1,77777,9,999999999,69,0.0720,0,88,999.000,999.0,99.0 +1990,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,7.8,-8.9,30,103000,1115,1359,278,800,798,147,85000,80600,18700,5300,250,5.2,3,2,24.1,77777,9,999999999,69,0.0720,0,88,999.000,999.0,99.0 +1990,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,6.1,-5.0,45,102900,1032,1359,272,749,878,84,78400,87900,11500,2560,120,7.7,1,1,24.1,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1990,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,6.1,-5.0,45,102900,888,1359,266,663,887,85,69400,88200,11600,2090,120,9.3,0,0,24.1,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1990,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,6.1,-3.3,51,102900,694,1359,268,486,816,71,51100,79600,10300,1570,100,8.8,0,0,24.1,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1990,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,5.6,-1.7,60,102800,463,1359,268,287,694,53,30500,64200,8600,1120,110,8.8,0,0,24.1,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1990,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,6.1,-0.6,63,102800,212,1359,271,98,428,33,10300,29800,5700,610,90,5.2,0,0,24.1,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1990,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,5.6,-4.4,49,102900,15,487,265,11,35,7,0,0,0,0,200,6.7,0,0,24.1,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1990,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,4.4,-3.9,55,103000,0,0,261,0,0,0,0,0,0,0,190,6.7,0,0,24.1,77777,9,999999999,89,0.1510,0,88,999.000,999.0,99.0 +1990,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,3.9,-3.3,60,103000,0,0,260,0,0,0,0,0,0,0,190,6.2,0,0,24.1,77777,9,999999999,89,0.1510,0,88,999.000,999.0,99.0 +1990,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,3.3,-2.8,65,103100,0,0,258,0,0,0,0,0,0,0,210,5.7,0,0,24.1,77777,9,999999999,89,0.1510,0,88,999.000,999.0,99.0 +1990,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,2.8,-3.3,65,103100,0,0,256,0,0,0,0,0,0,0,230,6.7,0,0,24.1,77777,9,999999999,89,0.1510,0,88,999.000,999.0,99.0 +1990,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,2.8,-3.3,65,103100,0,0,256,0,0,0,0,0,0,0,230,6.2,0,0,24.1,77777,9,999999999,89,0.1510,0,88,999.000,999.0,99.0 +1990,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,2.2,-3.3,67,103100,0,0,253,0,0,0,0,0,0,0,230,5.2,0,0,24.1,77777,9,999999999,89,0.1520,0,88,999.000,999.0,99.0 +1990,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,1.7,-3.3,70,103100,0,0,252,0,0,0,0,0,0,0,220,4.1,0,0,24.1,77777,9,999999999,89,0.1520,0,88,999.000,999.0,99.0 +1990,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,1.7,-3.3,70,103100,0,0,252,0,0,0,0,0,0,0,220,4.1,0,0,24.1,77777,9,999999999,89,0.1520,0,88,999.000,999.0,99.0 +1990,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,1.1,-3.3,73,103000,0,0,249,0,0,0,0,0,0,0,190,2.6,0,0,24.1,77777,9,999999999,89,0.1520,0,88,999.000,999.0,99.0 +1990,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,1.1,-2.8,76,103000,0,0,250,0,0,0,0,0,0,0,210,3.6,0,0,24.1,77777,9,999999999,89,0.1520,0,88,999.000,999.0,99.0 +1990,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.2,-2.8,70,103100,95,1211,254,32,66,25,3200,2700,3000,440,220,4.1,0,0,24.1,77777,9,999999999,89,0.1700,0,88,999.000,999.0,99.0 +1990,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,3.9,-1.1,70,103100,346,1359,262,170,411,67,17600,34300,8900,1220,190,5.2,0,0,24.1,77777,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1990,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,6.1,-0.6,63,103100,590,1359,271,367,617,101,38600,59500,12700,2040,230,6.7,0,0,24.1,77777,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1990,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,8.3,-1.1,52,103000,803,1359,279,558,728,129,59400,73400,15900,3060,220,5.2,0,0,24.1,77777,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1990,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,10.6,-1.7,43,103000,973,1359,288,714,784,154,76600,80100,19100,4520,220,6.7,1,0,24.1,77777,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1990,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,11.1,-2.8,38,102900,1086,1359,288,823,831,160,86300,83400,19400,5230,200,7.7,0,0,24.1,77777,9,999999999,89,0.1700,0,88,999.000,999.0,99.0 +1990,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,12.2,-2.8,35,102800,1136,1359,293,893,783,240,94400,79300,27900,9580,200,7.7,7,0,24.1,77777,9,999999999,89,0.1700,0,88,999.000,999.0,99.0 +1990,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,12.8,-3.3,33,102700,1119,1359,295,882,770,249,92800,77800,28600,9440,180,8.8,8,0,24.1,77777,9,999999999,89,0.1700,0,88,999.000,999.0,99.0 +1990,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,12.2,-3.3,34,102600,1036,1359,298,687,687,165,73800,70400,20100,5390,170,9.8,2,1,24.1,77777,9,999999999,89,0.1700,0,88,999.000,999.0,99.0 +1990,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,11.7,-2.2,38,102500,892,1359,301,589,621,183,61800,62400,20800,4630,200,8.8,8,2,24.1,77777,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1990,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,11.1,-2.8,38,102500,698,1359,301,412,381,217,44100,39600,23700,4990,190,7.7,10,3,24.1,77777,9,999999999,89,0.1700,0,88,999.000,999.0,99.0 +1990,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,9.4,-5.6,35,102500,467,1359,298,193,213,121,20800,20200,13800,2420,210,9.3,10,6,24.1,4570,9,999999999,80,0.1700,0,88,999.000,999.0,99.0 +1990,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,7.8,-3.3,46,102500,216,1359,289,80,119,61,8700,8400,7300,1300,190,9.3,10,4,24.1,77777,9,999999999,89,0.1700,0,88,999.000,999.0,99.0 +1990,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,6.7,0.6,65,102400,17,509,283,8,2,8,0,0,0,0,190,8.2,10,2,24.1,77777,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1990,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,6.1,0.0,65,102500,0,0,280,0,0,0,0,0,0,0,200,7.2,10,2,24.1,77777,9,999999999,110,0.1520,0,88,999.000,999.0,99.0 +1990,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,5.6,1.7,76,102500,0,0,313,0,0,0,0,0,0,0,190,8.2,10,10,24.1,4270,9,999999999,120,0.1520,0,88,999.000,999.0,99.0 +1990,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,5.6,2.8,83,102400,0,0,299,0,0,0,0,0,0,0,190,7.7,10,8,24.1,7620,9,999999999,129,0.1520,0,88,999.000,999.0,99.0 +1990,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,5.6,2.8,83,102400,0,0,314,0,0,0,0,0,0,0,200,5.7,10,10,19.3,3050,9,999999999,129,0.1520,0,88,999.000,999.0,99.0 +1990,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,5.6,2.8,83,102300,0,0,299,0,0,0,0,0,0,0,190,6.7,10,8,19.3,2440,9,999999999,129,0.1520,0,88,999.000,999.0,99.0 +1990,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,5.6,2.8,83,102200,0,0,314,0,0,0,0,0,0,0,170,3.6,10,10,16.1,2130,9,999999999,129,0.1530,0,88,999.000,999.0,99.0 +1990,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,5.6,3.3,86,102100,0,0,315,0,0,0,0,0,0,0,160,3.6,10,10,16.1,2130,9,999999999,129,0.1530,0,88,999.000,999.0,99.0 +1990,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,6.1,4.4,89,102100,0,0,318,0,0,0,0,0,0,0,140,3.6,10,10,12.9,1830,9,999999999,139,0.1530,0,88,999.000,999.0,99.0 +1990,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,6.1,5.0,93,102000,0,0,319,0,0,0,0,0,0,0,130,4.1,10,10,11.3,1310,9,999999999,150,0.1530,0,88,999.000,999.0,99.0 +1990,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,6.1,5.6,96,101900,0,0,319,0,0,0,0,0,0,0,130,3.6,10,10,8.0,910,9,999999999,150,0.1530,0,88,999.000,999.0,99.0 +1990,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,6.7,6.1,96,101800,101,1256,323,11,0,11,1300,0,1300,430,160,5.7,10,10,4.8,210,9,999999999,160,0.1760,0,88,999.000,999.0,99.0 +1990,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,7.2,7.2,100,101800,352,1358,326,54,0,54,6300,0,6300,2180,170,6.2,10,10,4.8,1340,9,999999999,170,0.1760,0,88,999.000,999.0,99.0 +1990,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,7.8,7.2,96,101700,595,1358,329,78,2,77,9400,100,9300,3520,160,7.7,10,10,4.8,980,9,999999999,170,0.1760,0,88,999.000,999.0,99.0 +1990,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,7.2,7.2,100,101600,809,1358,326,120,6,116,14500,400,14300,5630,150,7.7,10,10,4.0,150,9,999999999,170,0.1760,0,88,999.000,999.0,99.0 +1990,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,8.3,7.8,96,101600,978,1358,332,172,2,171,20900,200,20800,8430,160,5.2,10,10,3.2,640,9,999999999,170,0.1760,0,88,999.000,999.0,99.0 +1990,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,10.0,9.4,96,101500,1091,1358,342,202,6,197,24600,500,24200,9820,190,6.2,10,10,6.4,310,9,999999999,189,0.1760,0,88,999.000,999.0,99.0 +1990,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,11.7,10.0,90,101400,1140,1358,351,201,1,200,24600,100,24500,10030,190,6.7,10,10,8.0,400,9,999999999,200,0.1760,0,88,999.000,999.0,99.0 +1990,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,11.7,10.6,93,101400,1123,1358,352,240,1,239,28900,100,28800,11580,200,6.2,10,10,9.7,400,9,999999999,200,0.1760,0,88,999.000,999.0,99.0 +1990,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,11.7,10.6,93,101300,1039,1358,352,202,2,201,24400,200,24300,9850,190,5.7,10,10,9.7,310,9,999999999,200,0.1760,0,88,999.000,999.0,99.0 +1990,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,11.7,11.1,96,101200,896,1358,352,168,0,168,20100,0,20100,8020,200,6.2,10,10,11.3,2130,9,999999999,209,0.1760,0,88,999.000,999.0,99.0 +1990,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,11.7,11.1,96,101200,702,1358,352,142,1,141,16600,100,16600,6250,210,6.2,10,10,11.3,430,9,999999999,209,0.1760,0,88,999.000,999.0,99.0 +1990,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,11.7,10.6,93,101200,471,1358,352,142,1,141,15800,100,15800,5070,210,5.7,10,10,24.1,400,9,999999999,200,0.1760,0,88,999.000,999.0,99.0 +1990,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,11.7,10.6,93,101200,221,1358,352,34,0,34,3900,0,3900,1290,220,5.2,10,10,8.0,310,9,999999999,200,0.1760,0,88,999.000,999.0,99.0 +1990,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,11.1,10.6,96,101100,18,532,332,3,0,3,0,0,0,0,190,4.6,8,8,19.3,2900,9,999999999,200,0.1760,0,88,999.000,999.0,99.0 +1990,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,10.0,9.4,96,101100,0,0,306,0,0,0,0,0,0,0,200,3.6,2,2,24.1,77777,9,999999999,189,0.1530,0,88,999.000,999.0,99.0 +1990,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,11.1,10.0,93,101100,0,0,348,0,0,0,0,0,0,0,240,4.6,10,10,19.3,270,9,999999999,200,0.1530,0,88,999.000,999.0,99.0 +1990,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,10.6,9.4,93,101100,0,0,345,0,0,0,0,0,0,0,240,5.2,10,10,24.1,310,9,999999999,189,0.1530,0,88,999.000,999.0,99.0 +1990,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,9.4,8.9,96,101100,0,0,338,0,0,0,0,0,0,0,230,4.1,10,10,11.3,310,9,999999999,179,0.1530,0,88,999.000,999.0,99.0 +1990,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,10.0,8.9,93,101100,0,0,332,0,0,0,0,0,0,0,260,3.6,9,9,11.3,310,9,999999999,179,0.1530,0,88,999.000,999.0,99.0 +1990,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,8.9,7.8,93,101000,0,0,303,0,0,0,0,0,0,0,200,3.6,3,3,12.9,77777,9,999999999,170,0.1540,0,88,999.000,999.0,99.0 +1990,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,10.0,8.9,93,101100,0,0,325,0,0,0,0,0,0,0,270,4.1,10,8,12.9,1310,9,999999999,179,0.1540,0,88,999.000,999.0,99.0 +1990,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,8.9,7.8,93,101100,0,0,319,0,0,0,0,0,0,0,230,3.1,10,8,11.3,2130,9,999999999,170,0.1540,0,88,999.000,999.0,99.0 +1990,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,8.9,8.3,96,101100,0,0,303,0,0,0,0,0,0,0,300,4.6,4,3,11.3,77777,9,999999999,179,0.1540,0,88,999.000,999.0,99.0 +1990,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,8.9,7.8,93,101100,0,0,300,0,0,0,0,0,0,0,290,5.2,3,2,11.3,77777,9,999999999,170,0.1540,0,88,999.000,999.0,99.0 +1990,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,8.9,6.7,86,101200,107,1278,295,34,89,26,3600,3900,3300,460,310,5.2,3,1,19.3,77777,9,999999999,160,0.1200,0,88,999.000,999.0,99.0 +1990,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,9.4,5.6,77,101300,359,1357,300,171,361,77,18200,30500,10200,1410,300,6.7,4,2,19.3,77777,9,999999999,150,0.1200,0,88,999.000,999.0,99.0 +1990,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,11.7,5.0,64,101300,601,1357,299,385,686,84,41200,67000,11500,1760,300,4.1,0,0,19.3,77777,9,999999999,150,0.1200,0,88,999.000,999.0,99.0 +1990,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,12.8,2.2,49,101300,814,1357,301,576,788,105,60800,78500,13600,2430,300,6.2,0,0,24.1,77777,9,999999999,120,0.1200,0,88,999.000,999.0,99.0 +1990,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,13.3,3.3,51,101300,982,1357,304,729,843,120,77800,85100,16000,3430,300,6.2,0,0,24.1,77777,9,999999999,129,0.1200,0,88,999.000,999.0,99.0 +1990,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,13.9,3.3,49,101300,1095,1357,306,831,871,129,85700,87000,15300,3580,270,6.2,0,0,24.1,77777,9,999999999,129,0.1200,0,88,999.000,999.0,99.0 +1990,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,15.0,1.7,41,101300,1144,1357,309,879,886,133,90600,88600,15600,4200,280,5.2,0,0,24.1,77777,9,999999999,120,0.1200,0,88,999.000,999.0,99.0 +1990,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,16.7,3.3,41,101300,1126,1357,319,863,882,132,88900,88200,15600,3960,260,6.2,0,0,24.1,77777,9,999999999,129,0.1200,0,88,999.000,999.0,99.0 +1990,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,17.2,1.7,35,101300,1043,1357,319,788,864,125,84300,87500,17000,3970,260,7.2,0,0,24.1,77777,9,999999999,120,0.1200,0,88,999.000,999.0,99.0 +1990,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,2.2,36,101200,899,1357,322,654,818,113,69300,82100,14800,2870,250,7.2,0,0,24.1,77777,9,999999999,129,0.1200,0,88,999.000,999.0,99.0 +1990,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.8,1.1,33,101200,706,1357,321,482,749,95,50500,73600,12200,2010,230,6.2,0,0,24.1,77777,9,999999999,120,0.1200,0,88,999.000,999.0,99.0 +1990,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,17.2,-3.9,24,101200,475,1357,313,287,623,70,30400,57800,10100,1380,290,7.2,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1990,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.7,-3.3,25,101300,225,1357,311,98,344,42,10100,24300,6100,750,300,6.7,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1990,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,15.0,-6.1,23,101400,20,577,301,10,18,9,0,0,0,0,300,6.2,0,0,24.1,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1990,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,13.9,-5.0,27,101400,0,0,298,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,80,0.1540,0,88,999.000,999.0,99.0 +1990,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,13.3,-5.6,27,101500,0,0,294,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,80,0.1540,0,88,999.000,999.0,99.0 +1990,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,10.6,-1.1,45,101500,0,0,288,0,0,0,0,0,0,0,160,4.1,0,0,24.1,77777,9,999999999,100,0.1540,0,88,999.000,999.0,99.0 +1990,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,7.8,2.2,68,101500,0,0,280,0,0,0,0,0,0,0,150,3.6,0,0,24.1,77777,9,999999999,120,0.1540,0,88,999.000,999.0,99.0 +1990,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,8.3,2.8,68,101500,0,0,283,0,0,0,0,0,0,0,200,3.1,0,0,24.1,77777,9,999999999,129,0.1540,0,88,999.000,999.0,99.0 +1990,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,7.8,3.3,74,101400,0,0,281,0,0,0,0,0,0,0,190,2.1,0,0,24.1,77777,9,999999999,129,0.1540,0,88,999.000,999.0,99.0 +1990,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,7.2,4.4,83,101400,0,0,280,0,0,0,0,0,0,0,180,4.1,0,0,24.1,77777,9,999999999,139,0.1540,0,88,999.000,999.0,99.0 +1990,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,7.2,4.4,83,101400,0,0,280,0,0,0,0,0,0,0,200,3.1,0,0,24.1,77777,9,999999999,139,0.1540,0,88,999.000,999.0,99.0 +1990,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,4.4,86,101300,0,0,292,0,0,0,0,0,0,0,180,5.2,6,4,19.3,6710,9,999999999,139,0.1540,0,88,999.000,999.0,99.0 +1990,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,6.7,4.4,86,101200,0,0,297,0,0,0,0,0,0,0,180,6.2,8,6,19.3,6710,9,999999999,139,0.1540,0,88,999.000,999.0,99.0 +1990,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,6.7,4.4,86,101100,113,1322,297,26,33,22,2800,1700,2600,460,190,7.2,8,6,19.3,6710,9,999999999,139,0.1020,0,88,999.000,999.0,99.0 +1990,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,7.8,5.0,83,101100,365,1356,326,72,8,70,8300,400,8200,2720,190,6.2,10,10,16.1,4570,9,999999999,150,0.1020,0,88,999.000,999.0,99.0 +1990,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,9.4,5.6,77,101000,607,1356,335,183,2,182,20700,200,20600,6960,200,6.2,10,10,19.3,6710,9,999999999,150,0.1020,0,88,999.000,999.0,99.0 +1990,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,11.1,5.6,69,101000,819,1356,343,207,2,206,24100,200,24000,9030,180,9.3,10,10,19.3,4570,9,999999999,150,0.1020,0,88,999.000,999.0,99.0 +1990,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,11.7,4.4,62,100800,987,1356,344,190,10,182,22800,800,22300,8910,200,10.3,10,10,19.3,1830,9,999999999,139,0.1020,0,88,999.000,999.0,99.0 +1990,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,10.0,6.1,77,100700,1099,1356,338,202,4,199,24600,300,24400,9920,200,9.3,10,10,12.9,910,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1990,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,9.4,6.7,83,100600,1148,1356,336,391,1,390,45500,100,45400,16660,200,10.8,10,10,11.3,880,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1990,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,10.6,7.8,83,100500,1130,1356,343,348,1,347,40700,100,40700,15330,220,10.3,10,10,12.9,490,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1990,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,11.1,8.9,86,100500,1046,1356,347,326,5,322,37900,500,37600,14130,220,9.3,10,10,11.3,400,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1990,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,12.8,10.6,87,100400,903,1356,357,172,1,172,20600,100,20600,8210,230,7.2,10,10,11.3,850,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1990,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,10.0,7.8,86,100500,709,1356,340,135,1,134,15900,100,15800,6030,290,9.3,10,10,12.9,1130,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1990,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,7.8,4.4,80,100600,479,1356,326,83,0,83,9700,0,9700,3470,310,10.8,10,10,12.9,1680,9,999999999,139,0.1020,0,88,999.000,999.0,99.0 +1990,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,6.1,2.8,80,100700,229,1356,316,35,0,35,4100,0,4100,1340,300,7.7,10,10,16.1,2130,9,999999999,129,0.1020,0,88,999.000,999.0,99.0 +1990,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,6.1,0.0,65,100800,22,599,313,10,0,10,0,0,0,0,300,6.7,10,10,16.1,2740,9,999999999,110,0.1020,0,88,999.000,999.0,99.0 +1990,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,0.0,65,100900,0,0,313,0,0,0,0,0,0,0,290,6.7,10,10,24.1,2740,9,999999999,110,0.1540,0,88,999.000,999.0,99.0 +1990,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,6.7,-4.4,45,101000,0,0,302,0,0,0,0,0,0,0,290,8.2,9,9,24.1,3350,9,999999999,80,0.1540,0,88,999.000,999.0,99.0 +1990,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.6,-7.8,38,101100,0,0,262,0,0,0,0,0,0,0,290,8.8,0,0,24.1,77777,9,999999999,69,0.1540,0,88,999.000,999.0,99.0 +1990,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.0,-7.8,40,101200,0,0,260,0,0,0,0,0,0,0,300,7.7,0,0,24.1,77777,9,999999999,69,0.1540,0,88,999.000,999.0,99.0 +1990,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,4.4,-7.2,43,101400,0,0,258,0,0,0,0,0,0,0,300,7.7,0,0,24.1,77777,9,999999999,69,0.1540,0,88,999.000,999.0,99.0 +1990,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,3.9,-6.7,47,101500,0,0,268,0,0,0,0,0,0,0,330,8.2,3,3,24.1,77777,9,999999999,80,0.1550,0,88,999.000,999.0,99.0 +1990,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,3.3,-7.2,46,101600,0,0,254,0,0,0,0,0,0,0,320,8.8,0,0,24.1,77777,9,999999999,69,0.1550,0,88,999.000,999.0,99.0 +1990,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,2.2,-7.8,48,101700,0,0,249,0,0,0,0,0,0,0,320,8.2,0,0,24.1,77777,9,999999999,69,0.1550,0,88,999.000,999.0,99.0 +1990,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,2.2,-8.9,44,101800,0,0,248,0,0,0,0,0,0,0,310,7.7,0,0,24.1,77777,9,999999999,69,0.1550,0,88,999.000,999.0,99.0 +1990,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,1.7,-9.4,44,102000,0,0,246,0,0,0,0,0,0,0,310,7.2,0,0,24.1,77777,9,999999999,60,0.1550,0,88,999.000,999.0,99.0 +1990,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,2.2,-10.6,39,102100,119,1344,247,40,125,28,4100,6100,3600,500,310,6.2,0,0,24.1,77777,9,999999999,60,0.1440,0,88,999.000,999.0,99.0 +1990,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,3.3,-10.6,36,102200,371,1355,251,196,487,65,20500,41800,9100,1210,310,5.2,0,0,24.1,77777,9,999999999,60,0.1440,0,88,999.000,999.0,99.0 +1990,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,5.0,-9.4,35,102200,612,1355,258,400,680,95,42400,66300,12400,1970,300,7.7,0,0,24.1,77777,9,999999999,60,0.1440,0,88,999.000,999.0,99.0 +1990,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,6.1,-8.9,34,102300,824,1355,263,588,775,119,61400,76900,14500,2660,270,5.7,0,0,24.1,77777,9,999999999,69,0.1440,0,88,999.000,999.0,99.0 +1990,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,7.8,-10.0,27,102300,992,1355,268,749,841,135,79000,84500,17000,3790,310,7.7,0,0,24.1,77777,9,999999999,60,0.1440,0,88,999.000,999.0,99.0 +1990,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,8.3,-8.3,30,102300,1103,1355,272,845,861,146,89800,86900,18800,5150,260,7.2,0,0,24.1,77777,9,999999999,69,0.1440,0,88,999.000,999.0,99.0 +1990,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,9.4,-5.6,35,102300,1152,1355,295,826,667,260,86900,67400,29500,10850,290,9.3,5,5,24.1,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1990,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,8.9,-7.2,32,102300,1133,1355,291,602,350,310,66700,38100,34800,11910,280,10.3,5,5,24.1,77777,9,999999999,69,0.1440,0,88,999.000,999.0,99.0 +1990,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,8.9,-6.7,33,102300,1050,1355,295,361,129,261,40400,13800,29700,8900,280,10.8,6,6,24.1,1520,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1990,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,8.3,-8.9,29,102300,906,1355,298,481,214,338,52300,22500,37200,9840,300,11.8,8,8,32.2,1520,9,999999999,69,0.1440,0,88,999.000,999.0,99.0 +1990,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,6.7,-4.4,45,102500,713,1355,285,407,451,171,43400,45500,19400,3690,320,10.8,5,5,32.2,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1990,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,7.2,-3.3,47,102600,483,1355,284,252,393,113,26700,36600,13600,2150,330,10.3,3,3,32.2,77777,9,999999999,89,0.1440,0,88,999.000,999.0,99.0 +1990,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,5.6,-6.1,43,102700,233,1355,269,96,292,46,10200,20400,6700,820,310,8.8,1,1,32.2,77777,9,999999999,80,0.1440,0,88,999.000,999.0,99.0 +1990,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,5.0,-11.7,29,102800,24,621,256,9,12,7,0,0,0,0,320,9.3,0,0,24.1,77777,9,999999999,60,0.1440,0,88,999.000,999.0,99.0 +1990,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,4.4,-11.7,30,103000,0,0,254,0,0,0,0,0,0,0,310,8.2,0,0,24.1,77777,9,999999999,60,0.1550,0,88,999.000,999.0,99.0 +1990,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,3.9,-10.6,34,103100,0,0,253,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,60,0.1550,0,88,999.000,999.0,99.0 +1990,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,3.9,-11.1,33,103200,0,0,252,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,60,0.1550,0,88,999.000,999.0,99.0 +1990,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,2.8,-10.6,37,103200,0,0,249,0,0,0,0,0,0,0,310,2.6,0,0,24.1,77777,9,999999999,60,0.1550,0,88,999.000,999.0,99.0 +1990,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,2.8,-10.0,39,103300,0,0,249,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,60,0.1550,0,88,999.000,999.0,99.0 +1990,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,1.7,-7.8,50,103300,0,0,247,0,0,0,0,0,0,0,190,2.1,0,0,24.1,77777,9,999999999,69,0.1560,0,88,999.000,999.0,99.0 +1990,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,1.7,-9.4,44,103300,0,0,246,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,60,0.1560,0,88,999.000,999.0,99.0 +1990,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,2.2,-10.6,39,103300,0,0,247,0,0,0,0,0,0,0,260,4.1,0,0,24.1,77777,9,999999999,60,0.1560,0,88,999.000,999.0,99.0 +1990,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,2.8,-10.6,37,103400,0,0,249,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,60,0.1560,0,88,999.000,999.0,99.0 +1990,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,2.8,-9.4,41,103500,0,34,250,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,69,0.1560,0,88,999.000,999.0,99.0 +1990,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,2.8,-7.8,46,103600,125,1355,251,40,109,29,4100,4900,3700,520,280,4.1,0,0,24.1,77777,9,999999999,69,0.1610,0,88,999.000,999.0,99.0 +1990,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,4.4,-7.8,41,103700,377,1355,257,198,465,70,20500,40000,9400,1290,300,4.1,0,0,24.1,77777,9,999999999,69,0.1610,0,88,999.000,999.0,99.0 +1990,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,7.8,-6.7,36,103700,618,1355,271,397,651,102,41900,63400,12900,2100,330,2.6,0,0,24.1,77777,9,999999999,80,0.1610,0,88,999.000,999.0,99.0 +1990,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,7.8,-3.9,44,103800,829,1355,274,583,745,128,62200,75400,16000,3140,150,2.1,0,0,24.1,77777,9,999999999,89,0.1610,0,88,999.000,999.0,99.0 +1990,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,8.3,-4.4,41,103800,996,1355,276,736,804,146,77000,80500,17600,4030,130,5.2,0,0,24.1,77777,9,999999999,89,0.1610,0,88,999.000,999.0,99.0 +1990,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,8.3,-3.9,42,103700,1107,1355,276,844,841,157,88900,84700,19500,5500,130,5.7,0,0,24.1,77777,9,999999999,89,0.1610,0,88,999.000,999.0,99.0 +1990,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,10.0,-3.9,38,103600,1155,1355,283,891,856,162,94100,86300,20400,6490,120,4.6,0,0,24.1,77777,9,999999999,89,0.1610,0,88,999.000,999.0,99.0 +1990,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,9.4,-3.3,41,103600,1137,1355,281,872,850,160,92100,85600,20000,6070,120,8.2,0,0,24.1,77777,9,999999999,89,0.1610,0,88,999.000,999.0,99.0 +1990,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,8.9,-3.3,42,103500,1053,1355,279,794,827,152,83300,83100,18600,4690,120,10.3,0,0,24.1,77777,9,999999999,89,0.1610,0,88,999.000,999.0,99.0 +1990,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,10.0,-1.7,45,103500,910,1355,285,660,781,137,68700,77800,16300,3290,120,7.7,0,0,24.1,77777,9,999999999,100,0.1610,0,88,999.000,999.0,99.0 +1990,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,13.3,-2.8,33,103400,717,1355,297,484,703,115,51500,70000,14400,2540,210,8.2,0,0,24.1,77777,9,999999999,89,0.1610,0,88,999.000,999.0,99.0 +1990,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,11.1,-1.1,43,103400,487,1355,290,284,559,85,29800,51800,11100,1640,190,9.3,0,0,24.1,77777,9,999999999,100,0.1610,0,88,999.000,999.0,99.0 +1990,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,10.0,-0.6,48,103400,238,1355,286,99,283,50,10500,19900,7000,890,200,8.2,0,0,24.1,77777,9,999999999,110,0.1610,0,88,999.000,999.0,99.0 +1990,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,8.3,-1.1,52,103500,26,643,279,11,11,10,1200,400,1200,210,200,10.3,0,0,24.1,77777,9,999999999,100,0.1610,0,88,999.000,999.0,99.0 +1990,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,7.8,-0.6,56,103500,0,0,277,0,0,0,0,0,0,0,210,8.2,0,0,24.1,77777,9,999999999,110,0.1560,0,88,999.000,999.0,99.0 +1990,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,6.7,-1.1,58,103500,0,0,273,0,0,0,0,0,0,0,220,7.7,0,0,24.1,77777,9,999999999,100,0.1560,0,88,999.000,999.0,99.0 +1990,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,6.1,-1.1,60,103500,0,0,270,0,0,0,0,0,0,0,220,6.2,0,0,24.1,77777,9,999999999,100,0.1560,0,88,999.000,999.0,99.0 +1990,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,6.1,-0.6,63,103500,0,0,271,0,0,0,0,0,0,0,220,8.2,0,0,24.1,77777,9,999999999,110,0.1560,0,88,999.000,999.0,99.0 +1990,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,5.6,-0.6,65,103500,0,0,274,0,0,0,0,0,0,0,220,6.7,1,1,24.1,77777,9,999999999,110,0.1560,0,88,999.000,999.0,99.0 +1990,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,5.6,-1.7,60,103400,0,0,277,0,0,0,0,0,0,0,210,7.7,6,2,24.1,77777,9,999999999,100,0.1570,0,88,999.000,999.0,99.0 +1990,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,6.1,2.8,80,103400,0,0,286,0,0,0,0,0,0,0,230,8.2,10,3,24.1,77777,9,999999999,129,0.1570,0,88,999.000,999.0,99.0 +1990,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,5.6,2.8,83,103400,0,0,284,0,0,0,0,0,0,0,220,6.7,10,3,24.1,77777,9,999999999,129,0.1570,0,88,999.000,999.0,99.0 +1990,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,5.6,2.8,83,103300,0,0,284,0,0,0,0,0,0,0,220,6.2,10,3,24.1,77777,9,999999999,129,0.1570,0,88,999.000,999.0,99.0 +1990,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,5.6,2.8,83,103400,0,56,284,0,0,0,0,0,0,0,220,8.2,10,3,24.1,77777,9,999999999,129,0.1570,0,88,999.000,999.0,99.0 +1990,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,5.6,2.8,83,103300,131,1354,286,47,42,43,5100,2700,4900,960,220,7.7,10,4,19.3,77777,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1990,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,7.8,3.3,74,103300,382,1354,298,205,361,104,21300,31200,12500,1960,220,8.8,10,5,24.1,77777,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1990,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,9.4,2.8,64,103200,623,1354,302,318,365,151,33700,36100,17100,3070,220,9.3,8,4,24.1,77777,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1990,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,11.1,2.2,55,103100,834,1354,309,432,288,255,46700,30700,27700,6460,210,11.3,10,4,24.1,77777,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1990,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,12.2,2.2,51,103100,1000,1354,319,564,494,199,62000,51600,23800,5980,220,10.8,9,6,24.1,7620,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1990,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,14.4,0.6,39,103100,1111,1354,324,666,473,278,72000,49400,31300,10740,220,9.3,10,5,24.1,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1990,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,15.0,2.2,42,102900,1159,1354,331,673,463,278,73300,48500,31700,12240,220,10.3,10,6,24.1,6710,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1990,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,15.0,3.9,48,102800,1140,1354,343,610,323,338,67200,35100,37500,13350,220,9.3,10,8,24.1,6710,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1990,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,13.9,3.9,51,102700,1056,1354,328,798,644,296,85000,67000,32600,10150,220,9.3,10,6,24.1,6710,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1990,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,13.9,3.9,51,102600,913,1354,337,463,282,274,50400,30300,29900,7490,200,9.8,9,8,24.1,2440,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1990,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,13.9,3.9,51,102500,720,1354,345,261,109,203,28700,11300,22700,5170,190,9.8,10,9,24.1,2740,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1990,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,13.3,4.4,55,102400,491,1354,318,262,391,121,27600,36600,14300,2330,200,10.3,10,3,24.1,77777,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1990,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,12.2,4.4,59,102400,242,1354,325,68,71,56,7600,5300,6600,1200,200,9.8,10,7,24.1,3960,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1990,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,11.1,5.0,66,102400,28,666,312,16,14,14,1600,700,1600,340,200,8.8,10,4,24.1,77777,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1990,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,10.6,5.0,69,102400,0,0,340,0,0,0,0,0,0,0,210,8.8,10,10,24.1,2440,9,999999999,150,0.1570,0,88,999.000,999.0,99.0 +1990,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,10.0,5.6,74,102300,0,0,338,0,0,0,0,0,0,0,210,8.8,10,10,24.1,2290,9,999999999,150,0.1570,0,88,999.000,999.0,99.0 +1990,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,10.6,6.1,74,102200,0,0,341,0,0,0,0,0,0,0,210,8.2,10,10,24.1,2290,9,999999999,160,0.1570,0,88,999.000,999.0,99.0 +1990,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,10.6,6.1,74,102100,0,0,341,0,0,0,0,0,0,0,220,8.2,10,10,24.1,1830,9,999999999,160,0.1570,0,88,999.000,999.0,99.0 +1990,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,11.1,6.1,72,102000,0,0,343,0,0,0,0,0,0,0,220,8.2,10,10,24.1,1680,9,999999999,160,0.1570,0,88,999.000,999.0,99.0 +1990,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,11.7,6.7,72,101900,0,0,347,0,0,0,0,0,0,0,220,8.2,10,10,24.1,1520,9,999999999,160,0.1580,0,88,999.000,999.0,99.0 +1990,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,11.7,6.7,72,101800,0,0,347,0,0,0,0,0,0,0,210,7.7,10,10,24.1,1490,9,999999999,160,0.1580,0,88,999.000,999.0,99.0 +1990,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,11.1,7.8,80,101800,0,0,345,0,0,0,0,0,0,0,220,7.2,10,10,12.9,1370,9,999999999,170,0.1580,0,88,999.000,999.0,99.0 +1990,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,10.6,8.3,86,101700,0,0,343,0,0,0,0,0,0,0,220,6.2,10,10,12.9,1400,9,999999999,179,0.1580,0,88,999.000,999.0,99.0 +1990,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,10.6,8.9,90,101700,1,101,344,0,0,0,0,0,0,0,220,6.7,10,10,11.3,1160,9,999999999,189,0.1580,0,88,999.000,999.0,99.0 +1990,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,10.6,9.4,93,101700,137,1353,328,22,25,20,2500,1400,2400,420,220,7.2,10,8,11.3,460,9,999999999,189,0.1140,0,88,999.000,999.0,99.0 +1990,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,10.6,10.0,96,101600,388,1353,345,42,5,41,5100,200,5100,1770,220,6.2,10,10,11.3,460,9,999999999,200,0.1140,0,88,999.000,999.0,99.0 +1990,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,11.1,10.6,96,101600,628,1353,349,118,14,111,13900,900,13400,4910,230,6.2,10,10,9.7,270,9,999999999,200,0.1140,0,88,999.000,999.0,99.0 +1990,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,11.1,10.0,93,101600,838,1353,348,139,11,132,16800,800,16300,6390,230,5.7,10,10,9.7,270,9,999999999,200,0.1140,0,88,999.000,999.0,99.0 +1990,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,11.1,10.0,93,101600,1005,1353,348,222,2,221,26500,200,26400,10510,230,5.7,10,10,9.7,310,9,999999999,200,0.1140,0,88,999.000,999.0,99.0 +1990,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,11.7,10.6,93,101500,1115,1353,352,210,10,202,25600,800,25000,10080,240,5.2,10,10,9.7,310,9,999999999,209,0.1140,0,88,999.000,999.0,99.0 +1990,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,11.7,11.1,96,101500,1162,1353,352,245,1,245,29700,100,29700,11900,240,3.1,10,10,9.7,340,9,999999999,209,0.1140,0,88,999.000,999.0,99.0 +1990,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,12.2,11.1,93,101400,1143,1353,355,231,6,226,28000,500,27600,11110,270,2.6,10,10,9.7,340,9,999999999,209,0.1140,0,88,999.000,999.0,99.0 +1990,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,12.8,11.7,93,101400,1060,1353,358,218,3,216,26300,200,26100,10520,350,3.1,10,10,9.7,270,9,999999999,220,0.1140,0,88,999.000,999.0,99.0 +1990,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,12.8,12.2,97,101400,916,1353,349,323,25,306,37000,2300,35400,12690,80,3.6,10,9,9.7,640,9,999999999,229,0.1140,0,88,999.000,999.0,99.0 +1990,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,12.2,11.1,93,101400,724,1353,355,115,6,112,13800,400,13600,5240,60,5.7,10,10,9.7,460,9,999999999,209,0.1140,0,88,999.000,999.0,99.0 +1990,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,11.1,10.6,96,101400,495,1353,349,101,32,89,11100,3000,10000,2660,60,5.2,10,10,9.7,1190,9,999999999,200,0.1140,0,88,999.000,999.0,99.0 +1990,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,10.6,10.0,96,101500,246,1353,345,37,6,36,4300,100,4300,1400,40,4.6,10,10,9.7,1310,9,999999999,200,0.1140,0,88,999.000,999.0,99.0 +1990,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,10.6,9.4,93,101600,30,688,345,7,0,7,800,0,800,270,30,4.6,10,10,9.7,1830,9,999999999,189,0.1140,0,88,999.000,999.0,99.0 +1990,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,10.0,8.9,93,101600,0,0,341,0,0,0,0,0,0,0,20,3.6,10,10,9.7,1490,9,999999999,189,0.1580,0,88,999.000,999.0,99.0 +1990,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,10.0,8.9,93,101600,0,0,341,0,0,0,0,0,0,0,20,5.7,10,10,8.0,270,9,999999999,189,0.1580,0,88,999.000,999.0,99.0 +1990,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,10.0,8.9,93,101700,0,0,341,0,0,0,0,0,0,0,10,4.1,10,10,8.0,270,9,999999999,189,0.1580,0,88,999.000,999.0,99.0 +1990,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,10.0,8.9,93,101700,0,0,341,0,0,0,0,0,0,0,360,4.1,10,10,11.3,2130,9,999999999,189,0.1580,0,88,999.000,999.0,99.0 +1990,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,9.4,8.9,96,101700,0,0,338,0,0,0,0,0,0,0,50,6.2,10,10,6.4,180,9,999999999,179,0.1580,0,88,999.000,999.0,99.0 +1990,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,9.4,8.3,93,101700,0,0,338,0,0,0,0,0,0,0,10,4.1,10,10,11.3,1980,9,999999999,179,0.1590,0,88,999.000,999.0,99.0 +1990,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,9.4,7.8,90,101700,0,0,337,0,0,0,0,0,0,0,360,5.2,10,10,11.3,1190,9,999999999,170,0.1590,0,88,999.000,999.0,99.0 +1990,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,8.9,7.8,93,101700,0,0,319,0,0,0,0,0,0,0,20,3.6,9,8,12.9,1980,9,999999999,170,0.1590,0,88,999.000,999.0,99.0 +1990,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,8.9,7.2,89,101700,0,0,318,0,0,0,0,0,0,0,20,4.1,9,8,12.9,1980,9,999999999,170,0.1590,0,88,999.000,999.0,99.0 +1990,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,8.3,6.7,89,101700,1,124,292,0,0,0,0,0,0,0,40,4.1,2,1,12.9,77777,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1990,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,8.9,6.7,86,101800,143,1352,289,45,170,27,4800,9000,3800,470,20,4.1,0,0,12.9,77777,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1990,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,10.0,6.7,80,101800,394,1352,299,209,472,72,21600,41200,9600,1340,40,4.6,1,1,24.1,77777,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1990,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,10.6,6.1,74,101800,633,1352,301,390,635,94,41500,62400,12200,1990,50,4.6,1,1,24.1,77777,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1990,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,11.1,6.7,74,101800,843,1352,316,464,390,221,49200,40100,24200,5420,90,6.2,6,5,24.1,1070,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1990,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,11.7,5.6,66,101800,1009,1352,317,721,646,240,75100,64800,26700,7160,90,6.2,6,5,24.1,1220,9,999999999,150,0.1310,0,88,999.000,999.0,99.0 +1990,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,12.2,5.6,64,101800,1119,1352,315,725,503,309,77600,52500,34100,12280,110,5.7,8,3,24.1,77777,9,999999999,150,0.1310,0,88,999.000,999.0,99.0 +1990,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,10.6,6.1,74,101700,1166,1352,301,814,715,198,87400,73300,24100,8910,120,5.7,7,1,24.1,77777,9,999999999,160,0.1310,0,88,999.000,999.0,99.0 +1990,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,11.7,5.6,66,101600,1147,1352,309,838,740,211,89400,75500,25200,8910,110,6.2,4,2,24.1,77777,9,999999999,150,0.1310,0,88,999.000,999.0,99.0 +1990,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,11.1,5.6,69,101600,1063,1352,297,793,840,133,84500,84900,17600,4380,120,6.7,0,0,24.1,77777,9,999999999,150,0.1310,0,88,999.000,999.0,99.0 +1990,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,11.7,4.4,62,101500,920,1352,298,666,804,121,70400,80700,15400,3110,100,6.2,0,0,24.1,77777,9,999999999,139,0.1310,0,88,999.000,999.0,99.0 +1990,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,10.6,3.3,61,101400,727,1352,293,497,739,102,51900,72700,12800,2150,110,7.7,0,0,24.1,77777,9,999999999,129,0.1310,0,88,999.000,999.0,99.0 +1990,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,10.6,3.3,61,101400,499,1352,293,298,607,76,31500,56900,10500,1500,120,8.2,0,0,24.1,77777,9,999999999,129,0.1310,0,88,999.000,999.0,99.0 +1990,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,10.0,4.4,69,101400,250,1352,291,111,352,47,11500,26100,6700,850,130,6.2,0,0,24.1,77777,9,999999999,139,0.1310,0,88,999.000,999.0,99.0 +1990,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,10.6,4.4,66,101400,32,710,294,15,26,13,1600,1000,1600,270,160,5.2,0,0,19.3,77777,9,999999999,139,0.1310,0,88,999.000,999.0,99.0 +1990,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,10.6,5.0,69,101400,0,0,294,0,0,0,0,0,0,0,190,8.2,0,0,19.3,77777,9,999999999,150,0.1590,0,88,999.000,999.0,99.0 +1990,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,10.6,5.6,72,101400,0,0,295,0,0,0,0,0,0,0,190,5.2,0,0,19.3,77777,9,999999999,150,0.1590,0,88,999.000,999.0,99.0 +1990,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,10.6,6.1,74,101300,0,0,308,0,0,0,0,0,0,0,200,5.2,3,3,19.3,77777,9,999999999,160,0.1590,0,88,999.000,999.0,99.0 +1990,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,10.6,6.7,77,101300,0,0,332,0,0,0,0,0,0,0,220,5.2,9,9,16.1,2740,9,999999999,160,0.1590,0,88,999.000,999.0,99.0 +1990,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,10.0,6.7,80,101300,0,0,311,0,0,0,0,0,0,0,230,5.7,5,5,16.1,77777,9,999999999,160,0.1590,0,88,999.000,999.0,99.0 +1990,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,9.4,6.7,83,101200,0,0,291,0,0,0,0,0,0,0,230,4.6,0,0,16.1,77777,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1990,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,8.9,6.1,83,101200,0,0,288,0,0,0,0,0,0,0,220,3.1,0,0,16.1,77777,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1990,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,10.6,6.1,74,101100,0,0,295,0,0,0,0,0,0,0,280,4.1,0,0,16.1,77777,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1990,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,10.6,5.6,72,101100,0,0,295,0,0,0,0,0,0,0,290,4.1,0,0,16.1,77777,9,999999999,150,0.1600,0,88,999.000,999.0,99.0 +1990,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,11.7,5.0,64,101200,2,169,299,1,0,1,0,0,0,0,310,6.2,0,0,16.1,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1990,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,10.6,5.6,72,101300,148,1352,295,48,124,35,5200,6400,4500,630,60,4.1,0,0,16.1,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1990,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,11.7,5.6,66,101300,399,1352,300,208,450,76,21500,39400,9900,1400,10,3.1,0,0,16.1,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1990,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,11.1,6.1,72,101400,638,1352,298,406,629,111,42800,61500,13700,2300,120,3.6,0,0,16.1,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1990,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.3,7.2,67,101400,847,1352,308,591,724,138,62900,73300,16800,3440,120,3.6,0,0,16.1,77777,9,999999999,170,0.1780,0,88,999.000,999.0,99.0 +1990,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.3,6.7,64,101400,1013,1352,307,743,783,157,77300,78300,18500,4390,90,7.2,0,0,16.1,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1990,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,14.4,7.2,62,101500,1122,1352,313,841,811,168,88100,81500,20300,6070,110,4.6,0,0,19.3,77777,9,999999999,170,0.1780,0,88,999.000,999.0,99.0 +1990,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,6.1,62,101500,1169,1352,307,885,825,173,93100,83000,21200,7200,70,5.7,0,0,19.3,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1990,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,11.7,6.1,69,101500,1150,1352,300,867,820,171,91100,82400,20800,6690,80,8.8,0,0,16.1,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1990,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,11.7,6.1,69,101500,1066,1352,300,791,798,162,82500,80000,19300,5080,90,8.2,0,0,16.1,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1990,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,11.1,6.7,74,101600,923,1352,298,660,754,147,70600,76800,18100,4030,120,7.2,0,0,24.1,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1990,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,10.6,6.1,74,101600,730,1352,295,486,675,123,51400,67300,15000,2730,120,6.2,0,0,24.1,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1990,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,9.4,5.6,77,101700,502,1352,290,290,538,91,30200,50100,11600,1750,100,4.6,0,0,24.1,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1990,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,8.3,5.0,80,101700,254,1352,285,105,279,54,11200,20400,7400,970,60,3.6,0,0,24.1,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1990,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,7.8,4.4,80,101800,34,732,282,14,12,13,1500,600,1500,320,70,3.1,0,0,19.3,77777,9,999999999,139,0.1780,0,88,999.000,999.0,99.0 +1990,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,7.8,4.4,80,101800,0,0,282,0,0,0,0,0,0,0,330,1.5,0,0,19.3,77777,9,999999999,139,0.1600,0,88,999.000,999.0,99.0 +1990,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,8.3,3.9,74,101900,0,0,284,0,0,0,0,0,0,0,30,1.5,0,0,19.3,77777,9,999999999,139,0.1600,0,88,999.000,999.0,99.0 +1990,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,8.3,3.9,74,101900,0,0,284,0,0,0,0,0,0,0,10,2.1,0,0,19.3,77777,9,999999999,139,0.1600,0,88,999.000,999.0,99.0 +1990,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,9.4,3.3,66,102000,0,0,288,0,0,0,0,0,0,0,340,4.1,0,0,16.1,77777,9,999999999,129,0.1600,0,88,999.000,999.0,99.0 +1990,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,8.9,3.9,71,102000,0,0,286,0,0,0,0,0,0,0,350,4.1,0,0,16.1,77777,9,999999999,139,0.1600,0,88,999.000,999.0,99.0 +1990,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,8.3,3.9,74,102000,0,0,284,0,0,0,0,0,0,0,310,4.1,0,0,16.1,77777,9,999999999,139,0.1610,0,88,999.000,999.0,99.0 +1990,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,8.3,3.9,74,102000,0,0,284,0,0,0,0,0,0,0,300,4.1,0,0,11.3,77777,9,999999999,139,0.1610,0,88,999.000,999.0,99.0 +1990,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,7.8,4.4,80,102100,0,0,282,0,0,0,0,0,0,0,310,4.1,0,0,11.3,77777,9,999999999,139,0.1610,0,88,999.000,999.0,99.0 +1990,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,7.8,4.4,80,102100,0,0,288,0,0,0,0,0,0,0,310,3.1,3,1,11.3,77777,9,999999999,139,0.1610,0,88,999.000,999.0,99.0 +1990,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,5.6,3.3,86,102200,2,191,273,1,2,1,0,0,0,0,10,3.1,0,0,12.9,77777,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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,7.8,3.9,77,102200,154,1351,282,58,233,32,6200,13000,4700,570,10,3.6,0,0,12.9,77777,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1990,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,9.4,2.8,64,102300,405,1351,287,229,569,61,24300,50600,9100,1170,50,5.7,0,0,19.3,77777,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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,10.6,2.8,59,102300,643,1351,292,430,728,85,45000,70800,11200,1770,50,6.2,0,0,19.3,77777,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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,10.6,3.3,61,102400,852,1351,298,564,731,104,59900,73300,13600,2550,80,6.2,2,1,24.1,77777,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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,10.0,2.8,61,102400,1017,1351,290,758,799,158,78900,79900,18600,4450,80,8.2,6,0,24.1,77777,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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,9.4,3.3,66,102400,1126,1351,293,838,758,207,89400,77400,24800,8290,80,8.2,8,1,24.1,77777,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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,9.4,3.9,69,102400,1172,1351,305,779,503,342,83100,52500,37400,15990,100,7.2,9,5,24.1,7620,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1990,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,9.4,4.4,71,102400,1153,1351,304,622,326,344,68500,35400,38200,14120,110,7.2,10,4,24.1,77777,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1990,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,9.4,4.4,71,102300,1069,1351,306,712,495,321,75400,51500,34600,11420,110,6.7,10,5,24.1,77777,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.3,3.9,74,102300,926,1351,298,599,521,242,63900,53900,26800,6600,110,7.2,8,4,24.1,77777,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.9,1.7,61,102200,734,1351,299,462,506,189,49100,51300,21200,4180,110,6.7,8,4,24.1,77777,9,999999999,120,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.9,2.8,66,102200,506,1351,298,284,424,127,30000,40000,15000,2460,110,6.7,8,3,24.1,77777,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.9,2.8,66,102200,258,1351,298,110,209,71,11700,15300,8800,1360,120,4.6,8,3,24.1,77777,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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,9.4,-0.6,50,102200,37,777,289,16,31,12,1500,900,1400,200,160,5.2,3,1,24.1,77777,9,999999999,110,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.9,0.6,56,102200,0,0,283,0,0,0,0,0,0,0,190,4.1,0,0,19.3,77777,9,999999999,110,0.1610,0,88,999.000,999.0,99.0 +1990,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,8.9,0.6,56,102200,0,0,295,0,0,0,0,0,0,0,200,6.2,3,3,19.3,77777,9,999999999,110,0.1610,0,88,999.000,999.0,99.0 +1990,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,8.3,3.3,71,102200,0,0,306,0,0,0,0,0,0,0,200,6.2,10,7,19.3,7620,9,999999999,129,0.1610,0,88,999.000,999.0,99.0 +1990,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,8.3,2.8,68,102200,0,0,306,0,0,0,0,0,0,0,220,6.2,10,7,24.1,7620,9,999999999,129,0.1610,0,88,999.000,999.0,99.0 +1990,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,7.8,2.2,68,102200,0,0,323,0,0,0,0,0,0,0,200,5.2,10,10,24.1,4570,9,999999999,129,0.1610,0,88,999.000,999.0,99.0 +1990,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,7.8,3.3,74,102200,0,0,296,0,0,0,0,0,0,0,190,5.2,10,4,24.1,77777,9,999999999,129,0.1620,0,88,999.000,999.0,99.0 +1990,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,7.2,4.4,83,102200,0,0,323,0,0,0,0,0,0,0,190,5.2,10,10,24.1,4270,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1990,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,7.2,4.4,83,102200,0,0,323,0,0,0,0,0,0,0,190,5.2,10,10,24.1,3960,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1990,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,7.2,3.9,80,102100,0,0,322,0,0,0,0,0,0,0,200,6.2,10,10,24.1,3960,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1990,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,7.2,4.4,83,102100,3,236,314,0,0,0,0,0,0,0,200,5.7,10,9,19.3,3960,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1990,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,7.8,3.9,77,102100,160,1350,325,28,1,27,3100,0,3100,980,210,6.2,10,10,24.1,3660,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.3,2.8,68,102100,410,1350,326,86,5,85,9900,300,9800,3320,200,5.7,10,10,24.1,3660,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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,9.4,2.2,61,102000,648,1350,331,191,1,191,21700,100,21700,7510,220,7.2,10,10,24.1,4570,9,999999999,120,0.1130,0,88,999.000,999.0,99.0 +1990,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.0,3.3,64,102000,856,1350,335,230,6,226,26700,500,26400,9920,200,6.2,10,10,24.1,4570,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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.6,2.8,59,101900,1020,1350,337,201,3,199,24200,200,24100,9720,220,7.7,10,10,24.1,4570,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1990,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,10.6,3.9,64,101800,1129,1350,338,258,0,258,30900,0,30900,12330,250,8.8,10,10,24.1,3960,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1990,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,10.6,5.0,69,101800,1176,1350,340,209,5,205,25700,400,25400,10290,240,7.7,10,10,24.1,1070,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1990,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.4,5.0,74,101700,1156,1350,334,260,3,258,31400,200,31200,12390,220,7.7,10,10,16.1,760,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1990,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.4,5.6,77,101600,1072,1350,335,220,1,219,26500,100,26400,10680,220,8.2,10,10,19.3,580,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1990,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,5.6,83,101500,929,1350,329,181,2,180,21700,200,21600,8640,210,7.2,10,10,19.3,520,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.3,5.6,83,101500,737,1350,329,233,1,232,26400,100,26400,9250,220,7.7,10,10,19.3,400,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.3,5.6,83,101400,510,1350,329,149,0,149,16800,0,16800,5520,200,6.2,10,10,19.3,400,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.3,5.6,83,101400,262,1350,329,63,1,62,7000,0,7000,2180,230,6.2,10,10,19.3,460,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.3,5.6,83,101400,39,799,329,14,0,14,1600,0,1600,490,220,5.7,10,10,19.3,460,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1990,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,8.3,6.1,86,101500,0,0,330,0,0,0,0,0,0,0,230,5.2,10,10,19.3,910,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1990,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,8.3,5.6,83,101500,0,0,329,0,0,0,0,0,0,0,230,4.6,10,10,19.3,910,9,999999999,150,0.1620,0,88,999.000,999.0,99.0 +1990,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,8.9,6.1,83,101400,0,0,333,0,0,0,0,0,0,0,200,3.6,10,10,19.3,910,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1990,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,8.3,6.1,86,101400,0,0,330,0,0,0,0,0,0,0,190,4.1,10,10,19.3,820,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1990,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,8.3,6.1,86,101400,0,0,330,0,0,0,0,0,0,0,220,4.1,10,10,19.3,400,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1990,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,8.3,6.7,89,101300,0,0,331,0,0,0,0,0,0,0,240,3.1,10,10,12.9,310,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1990,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,8.3,6.7,89,101300,0,0,331,0,0,0,0,0,0,0,200,2.6,10,10,11.3,310,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1990,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,8.3,6.7,89,101300,0,0,306,0,0,0,0,0,0,0,190,3.1,10,6,11.3,3660,9,999999999,160,0.1620,0,88,999.000,999.0,99.0 +1990,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,9.4,7.2,86,101400,0,0,336,0,0,0,0,0,0,0,300,4.6,10,10,9.7,310,9,999999999,170,0.1620,0,88,999.000,999.0,99.0 +1990,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,8.9,7.2,89,101300,4,259,334,1,0,1,0,0,0,0,160,3.1,10,10,11.3,3660,9,999999999,170,0.0890,0,88,999.000,999.0,99.0 +1990,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,8.3,7.2,93,101300,165,1349,322,47,66,39,5200,4100,4700,820,140,3.6,10,9,12.9,4270,9,999999999,170,0.0890,0,88,999.000,999.0,99.0 +1990,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,9.4,7.2,86,101400,415,1349,336,94,5,92,10700,300,10600,3550,250,2.6,10,10,12.9,4270,9,999999999,170,0.0890,0,88,999.000,999.0,99.0 +1990,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,9.4,7.2,86,101400,653,1349,336,201,11,196,22800,900,22400,7670,150,3.1,10,10,11.3,490,9,999999999,170,0.0890,0,88,999.000,999.0,99.0 +1990,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,7.8,86,101400,860,1349,340,269,19,257,31000,1700,29900,10900,140,3.1,10,10,8.0,490,9,999999999,170,0.0890,0,88,999.000,999.0,99.0 +1990,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,11.1,8.3,83,101400,1024,1349,346,295,8,289,34600,700,34000,13000,140,3.6,10,10,8.0,880,9,999999999,179,0.0890,0,88,999.000,999.0,99.0 +1990,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,12.2,8.9,80,101400,1133,1349,326,774,650,229,82000,66000,26500,9290,140,3.6,6,6,8.0,3960,9,999999999,179,0.0890,0,88,999.000,999.0,99.0 +1990,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,14.4,9.4,72,101400,1179,1349,354,625,133,508,67800,14100,55500,22100,110,4.1,10,9,11.3,4270,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1990,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,13.3,9.4,78,101300,1159,1349,358,290,4,287,34700,300,34400,13470,90,6.2,10,10,11.3,4270,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1990,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,13.9,9.4,75,101300,1075,1349,351,390,89,319,43100,9100,35800,12930,100,5.7,9,9,11.3,1490,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1990,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,8.9,80,101200,932,1349,321,703,758,181,74200,76600,21200,4920,80,5.7,6,4,12.9,2130,9,999999999,179,0.0890,0,88,999.000,999.0,99.0 +1990,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,8.9,80,101200,740,1349,305,435,646,82,46600,64300,11200,1910,80,5.2,0,0,12.9,77777,9,999999999,179,0.0890,0,88,999.000,999.0,99.0 +1990,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,12.2,8.9,80,101200,513,1349,305,319,678,63,33600,63900,9300,1310,70,3.6,0,0,16.1,77777,9,999999999,179,0.0890,0,88,999.000,999.0,99.0 +1990,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,13.9,8.9,72,101200,266,1349,312,128,441,42,13400,33900,6700,780,40,2.1,1,0,16.1,77777,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1990,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,12.2,8.9,80,101200,42,821,311,19,43,15,1900,1300,1800,260,110,2.6,6,1,16.1,77777,9,999999999,179,0.0890,0,88,999.000,999.0,99.0 +1990,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,15.6,10.0,70,101300,0,0,327,0,0,0,0,0,0,0,210,5.7,6,1,16.1,77777,9,999999999,200,0.1620,0,88,999.000,999.0,99.0 +1990,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,13.9,10.0,78,101300,0,0,320,0,0,0,0,0,0,0,210,5.7,3,1,16.1,77777,9,999999999,200,0.1620,0,88,999.000,999.0,99.0 +1990,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,12.8,9.4,80,101300,0,0,314,0,0,0,0,0,0,0,230,5.2,2,1,16.1,77777,9,999999999,189,0.1620,0,88,999.000,999.0,99.0 +1990,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,11.7,8.9,83,101300,0,0,303,0,0,0,0,0,0,0,220,5.7,0,0,19.3,77777,9,999999999,189,0.1620,0,88,999.000,999.0,99.0 +1990,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,11.1,8.9,86,101300,0,0,300,0,0,0,0,0,0,0,220,5.7,0,0,19.3,77777,9,999999999,179,0.1620,0,88,999.000,999.0,99.0 +1990,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.1,8.9,86,101300,0,0,300,0,0,0,0,0,0,0,220,6.2,0,0,16.1,77777,9,999999999,179,0.1630,0,88,999.000,999.0,99.0 +1990,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.1,8.9,86,101200,0,0,300,0,0,0,0,0,0,0,230,6.7,0,0,12.9,77777,9,999999999,179,0.1630,0,88,999.000,999.0,99.0 +1990,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,10.0,9.4,96,101200,0,0,302,0,0,0,0,0,0,0,220,5.2,5,1,9.7,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1990,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,11.1,9.4,90,101200,0,0,307,0,0,0,0,0,0,0,220,5.2,6,1,9.7,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1990,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,11.1,9.4,90,101200,5,303,307,2,0,2,0,0,0,0,220,5.2,10,1,9.7,77777,9,999999999,189,0.1610,0,88,999.000,999.0,99.0 +1990,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,12.2,9.4,83,101200,171,1349,316,62,104,49,6500,5900,5800,930,230,5.2,9,2,12.9,77777,9,999999999,189,0.1610,0,88,999.000,999.0,99.0 +1990,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,15.0,10.0,72,101200,420,1349,324,211,384,92,22400,34400,11700,1710,240,4.6,3,1,12.9,77777,9,999999999,200,0.1610,0,88,999.000,999.0,99.0 +1990,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,18.3,11.1,63,101200,657,1349,341,410,598,119,42900,58600,14300,2480,250,4.1,4,1,12.9,77777,9,999999999,209,0.1610,0,88,999.000,999.0,99.0 +1990,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,22.8,12.2,52,101200,864,1349,364,584,620,187,60900,62000,21100,4570,260,3.6,9,1,16.1,77777,9,999999999,229,0.1610,0,88,999.000,999.0,99.0 +1990,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,26.7,13.9,45,101200,1028,1349,385,720,654,222,75600,66000,25200,7010,230,4.1,10,1,19.3,77777,9,999999999,250,0.1610,0,88,999.000,999.0,99.0 +1990,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,30.0,14.4,39,101100,1136,1349,409,655,427,295,70600,44600,32900,12340,280,3.1,10,2,19.3,77777,9,999999999,259,0.1610,0,88,999.000,999.0,99.0 +1990,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,31.7,15.0,36,101100,1182,1349,413,843,698,232,89700,71100,27300,10970,230,3.1,10,1,24.1,77777,9,999999999,259,0.1610,0,88,999.000,999.0,99.0 +1990,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,31.7,13.9,34,101000,1162,1349,421,812,621,277,85100,62500,31100,12070,160,4.1,10,3,24.1,77777,9,999999999,250,0.1610,0,88,999.000,999.0,99.0 +1990,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,27.8,14.4,44,100900,1078,1349,407,661,440,310,70400,45800,33700,11250,130,4.6,7,5,24.1,7620,9,999999999,259,0.1610,0,88,999.000,999.0,99.0 +1990,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,31.1,13.3,34,100900,935,1349,424,647,564,257,68800,58400,28200,7150,70,4.1,10,5,24.1,77777,9,999999999,240,0.1610,0,88,999.000,999.0,99.0 +1990,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,32.2,11.7,28,100900,744,1349,432,391,271,242,41800,28500,26100,5800,270,3.6,9,6,24.1,7620,9,999999999,209,0.1610,0,88,999.000,999.0,99.0 +1990,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,32.8,11.7,28,100900,517,1349,431,189,83,157,20700,8000,17700,4340,280,5.2,10,5,19.3,77777,9,999999999,220,0.1610,0,88,999.000,999.0,99.0 +1990,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,31.7,10.6,27,100900,270,1349,423,107,166,74,11300,12500,8800,1420,290,5.2,10,5,19.3,77777,9,999999999,200,0.1610,0,88,999.000,999.0,99.0 +1990,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,30.0,10.0,29,100900,44,843,407,19,9,18,2000,500,2000,430,280,4.1,10,3,19.3,77777,9,999999999,200,0.1610,0,88,999.000,999.0,99.0 +1990,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,29.4,9.4,29,101000,0,0,399,0,0,0,0,0,0,0,270,5.2,5,2,19.3,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1990,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,28.3,8.9,30,101000,0,0,387,0,0,0,0,0,0,0,280,5.2,2,1,19.3,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1990,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,27.2,9.4,33,101000,0,0,375,0,0,0,0,0,0,0,290,4.1,0,0,19.3,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1990,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,24.4,10.0,40,101100,0,0,374,0,0,0,0,0,0,0,260,3.6,7,2,24.1,77777,9,999999999,200,0.1630,0,88,999.000,999.0,99.0 +1990,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,22.8,10.0,45,101100,0,0,366,0,0,0,0,0,0,0,260,4.6,7,2,24.1,77777,9,999999999,200,0.1630,0,88,999.000,999.0,99.0 +1990,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,25.0,10.0,39,101100,0,0,390,0,0,0,0,0,0,0,280,5.2,7,6,24.1,3660,9,999999999,200,0.1640,0,88,999.000,999.0,99.0 +1990,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,24.4,10.0,40,101100,0,0,398,0,0,0,0,0,0,0,280,4.6,8,8,24.1,3660,9,999999999,200,0.1640,0,88,999.000,999.0,99.0 +1990,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,20.0,10.6,55,101100,0,0,356,0,0,0,0,0,0,0,0,0.0,3,3,19.3,77777,9,999999999,209,0.1640,0,88,999.000,999.0,99.0 +1990,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.1,10.6,51,101100,0,0,365,0,0,0,0,0,0,0,240,2.1,4,4,19.3,77777,9,999999999,200,0.1640,0,88,999.000,999.0,99.0 +1990,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,17.2,11.1,68,101200,6,326,336,3,15,1,0,0,0,0,200,2.6,2,1,19.3,77777,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1990,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,11.1,50,101200,176,1348,353,75,361,29,7900,23200,4800,530,290,4.1,0,0,19.3,77777,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1990,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,23.9,12.2,48,101200,425,1348,362,252,649,49,26700,59000,8000,1030,240,3.1,0,0,19.3,77777,9,999999999,229,0.0710,0,88,999.000,999.0,99.0 +1990,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,26.1,11.7,41,101300,662,1348,372,449,781,67,47200,75900,9900,1510,310,3.6,0,0,19.3,77777,9,999999999,220,0.0710,0,88,999.000,999.0,99.0 +1990,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,29.4,11.7,33,101300,868,1348,389,628,849,82,65700,84300,11200,2020,310,4.1,0,0,19.3,77777,9,999999999,220,0.0710,0,88,999.000,999.0,99.0 +1990,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,31.1,10.0,27,101300,1031,1348,396,778,898,92,81100,89800,12200,2730,310,4.6,0,0,24.1,77777,9,999999999,200,0.0710,0,88,999.000,999.0,99.0 +1990,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,32.2,10.0,25,101300,1139,1348,401,876,921,98,91000,92400,12800,3600,120,2.6,0,0,24.1,77777,9,999999999,189,0.0710,0,88,999.000,999.0,99.0 +1990,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,28.9,12.2,36,101200,1185,1348,387,907,918,101,94200,92100,13000,4210,130,5.2,0,0,24.1,77777,9,999999999,229,0.0710,0,88,999.000,999.0,99.0 +1990,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,21.7,11.1,51,101200,1165,1348,365,803,677,219,85700,69100,25900,9850,70,10.3,3,3,19.3,77777,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1990,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,16.1,10.6,70,101300,1080,1348,338,662,539,230,69700,54500,25900,8150,70,8.2,4,3,17.7,77777,9,999999999,209,0.0710,0,88,999.000,999.0,99.0 +1990,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,13.3,9.4,78,101400,938,1348,329,596,540,222,64400,56000,25300,6130,60,9.3,5,5,11.3,77777,9,999999999,189,0.0710,0,88,999.000,999.0,99.0 +1990,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.1,8.3,83,101500,747,1348,318,385,367,182,41000,37300,20300,4050,60,9.8,6,5,9.7,2440,9,999999999,179,0.0710,0,88,999.000,999.0,99.0 +1990,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,10.6,7.8,83,101600,520,1348,315,291,441,122,30900,42000,14700,2360,60,9.3,6,5,8.0,2440,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1990,4,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,101700,274,1348,340,69,4,68,7700,100,7700,2370,50,9.3,10,10,6.4,310,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1990,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,9.4,7.8,90,101800,47,865,337,8,0,8,1000,0,1000,310,40,9.3,10,10,4.0,210,9,999999999,170,0.0710,0,88,999.000,999.0,99.0 +1990,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.2,89,102000,0,0,334,0,0,0,0,0,0,0,50,10.3,10,10,4.0,180,9,999999999,170,0.1640,0,88,999.000,999.0,99.0 +1990,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,8.9,7.2,89,102100,0,0,334,0,0,0,0,0,0,0,50,8.8,10,10,4.0,210,9,999999999,170,0.1640,0,88,999.000,999.0,99.0 +1990,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,102200,0,0,330,0,0,0,0,0,0,0,50,9.3,10,10,8.0,460,9,999999999,160,0.1640,0,88,999.000,999.0,99.0 +1990,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,102300,0,0,330,0,0,0,0,0,0,0,50,9.8,10,10,9.7,670,9,999999999,160,0.1640,0,88,999.000,999.0,99.0 +1990,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,5.6,83,102400,0,0,329,0,0,0,0,0,0,0,50,8.8,10,10,11.3,700,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1990,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,5.0,80,102400,0,0,329,0,0,0,0,0,0,0,50,9.8,10,10,12.9,760,9,999999999,150,0.1650,0,88,999.000,999.0,99.0 +1990,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,7.8,5.0,83,102400,0,0,326,0,0,0,0,0,0,0,60,9.3,10,10,12.9,700,9,999999999,150,0.1650,0,88,999.000,999.0,99.0 +1990,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,7.8,4.4,80,102400,0,0,326,0,0,0,0,0,0,0,70,8.8,10,10,12.9,700,9,999999999,139,0.1650,0,88,999.000,999.0,99.0 +1990,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,7.2,4.4,83,102400,0,0,323,0,0,0,0,0,0,0,70,9.8,10,10,11.3,640,9,999999999,139,0.1650,0,88,999.000,999.0,99.0 +1990,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.7,5.0,89,102500,8,370,321,0,0,0,0,0,0,0,70,8.8,10,10,4.8,460,9,999999999,150,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.1,5.6,96,102500,182,1347,319,20,1,20,2400,0,2400,790,70,8.8,10,10,4.0,270,9,999999999,150,0.2570,0,88,999.000,999.0,99.0 +1990,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.1,5.6,96,102600,430,1347,319,57,0,57,6800,0,6800,2440,50,8.2,10,10,4.0,460,9,999999999,150,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.1,5.6,96,102600,666,1347,319,121,1,121,14400,100,14300,5410,50,8.2,10,10,4.0,180,9,999999999,150,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.7,6.1,96,102600,872,1347,323,148,4,145,17800,300,17600,7040,50,7.7,10,10,4.0,150,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.7,6.1,96,102600,1035,1347,323,234,0,234,27900,0,27900,11140,50,8.2,10,10,4.0,210,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.7,6.1,96,102600,1142,1347,323,244,1,243,29400,100,29400,11790,50,7.7,10,10,4.0,340,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.7,6.1,96,102700,1187,1347,323,266,0,266,32100,0,32100,12770,60,8.8,10,10,4.0,180,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.7,6.1,96,102600,1167,1347,323,232,1,231,28200,100,28100,11360,60,7.2,10,10,4.0,180,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.7,6.7,100,102600,1083,1347,323,241,1,240,28900,100,28800,11540,60,7.7,10,10,2.4,120,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.7,6.7,100,102600,941,1347,323,198,0,198,23600,0,23600,9390,60,7.2,10,10,1.6,150,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.7,6.1,96,102600,750,1347,323,145,0,145,17100,0,17100,6610,50,7.7,10,10,2.4,150,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.7,6.1,96,102600,524,1347,323,94,0,94,11000,0,11000,3980,50,7.2,10,10,2.4,180,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.7,6.1,96,102600,278,1347,323,39,0,39,4600,0,4600,1550,60,7.2,10,10,2.0,120,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.1,6.1,100,102600,49,887,320,11,0,11,1300,0,1300,410,60,6.7,10,10,2.0,180,9,999999999,160,0.2570,0,88,999.000,999.0,99.0 +1990,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,6.1,96,102600,0,0,323,0,0,0,0,0,0,0,60,6.7,10,10,2.0,120,9,999999999,160,0.1650,0,88,999.000,999.0,99.0 +1990,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,6.7,100,102500,0,0,323,0,0,0,0,0,0,0,50,6.2,10,10,2.0,120,9,999999999,160,0.1650,0,88,999.000,999.0,99.0 +1990,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,6.7,100,102600,0,0,323,0,0,0,0,0,0,0,50,5.7,10,10,3.2,120,9,999999999,160,0.1650,0,88,999.000,999.0,99.0 +1990,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.7,100,102500,0,0,323,0,0,0,0,0,0,0,50,6.2,10,10,3.2,120,9,999999999,160,0.1650,0,88,999.000,999.0,99.0 +1990,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,6.7,6.7,100,102500,0,0,323,0,0,0,0,0,0,0,50,5.7,10,10,2.4,120,9,999999999,160,0.1650,0,88,999.000,999.0,99.0 +1990,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,6.7,100,102400,0,0,323,0,0,0,0,0,0,0,50,6.7,10,10,9.7,150,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1990,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,6.7,100,102400,0,0,323,0,0,0,0,0,0,0,50,8.2,10,10,2.4,180,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1990,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.7,100,102400,0,0,323,0,0,0,0,0,0,0,50,5.2,10,10,2.4,180,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1990,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,6.7,100,102300,0,0,323,0,0,0,0,0,0,0,50,6.2,10,10,1.6,150,9,999999999,160,0.1660,0,88,999.000,999.0,99.0 +1990,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,6.7,100,102300,9,393,323,2,0,2,0,0,0,0,50,6.2,10,10,2.4,150,9,999999999,160,0.1010,0,88,999.000,999.0,99.0 +1990,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,7.2,6.7,96,102300,187,1347,326,26,0,26,3000,0,3000,990,40,6.2,10,10,2.4,120,9,999999999,160,0.1010,0,88,999.000,999.0,99.0 +1990,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,7.2,7.2,100,102300,435,1347,326,73,0,73,8500,0,8500,3020,40,7.7,10,10,4.0,120,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1990,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,7.2,7.2,100,102200,670,1347,326,126,1,126,14900,100,14900,5610,30,5.7,10,10,11.3,180,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1990,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,7.2,7.2,100,102200,876,1347,326,169,0,169,20200,0,20200,8020,50,6.2,10,10,3.2,150,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1990,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,7.8,96,102100,1038,1347,332,353,1,353,40900,100,40800,15010,30,5.7,10,10,11.3,180,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1990,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,8.3,7.8,96,102100,1145,1347,332,228,2,227,27800,200,27600,11160,20,4.6,10,10,8.0,180,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1990,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,8.9,8.3,96,102000,1190,1347,335,267,0,267,32200,0,32200,12810,30,4.6,10,10,8.0,180,9,999999999,179,0.1010,0,88,999.000,999.0,99.0 +1990,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,8.9,8.3,96,102000,1170,1347,335,410,1,410,47800,100,47700,17360,40,6.2,10,10,6.4,120,9,999999999,179,0.1010,0,88,999.000,999.0,99.0 +1990,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,8.3,8.3,100,101900,1086,1347,332,384,1,383,44400,100,44300,16160,40,6.7,10,10,3.2,120,9,999999999,179,0.1010,0,88,999.000,999.0,99.0 +1990,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,8.3,8.3,100,101900,944,1347,332,328,1,327,37500,100,37500,13530,30,5.7,10,10,1.2,90,9,999999999,179,0.1010,0,88,999.000,999.0,99.0 +1990,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,8.3,7.8,96,101800,753,1347,332,238,1,237,27000,100,27000,9520,40,5.7,10,10,3.2,150,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1990,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,8.3,7.8,96,101800,527,1347,332,166,0,166,18600,0,18600,6040,30,5.2,10,10,2.0,150,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1990,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,7.8,7.2,96,101800,282,1347,329,76,0,76,8500,0,8500,2590,30,4.6,10,10,0.6,60,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1990,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,7.2,7.2,100,101800,52,909,326,18,0,18,2000,0,2000,610,40,4.6,10,10,1.2,30,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1990,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,7.2,7.2,100,101700,0,0,326,0,0,0,0,0,0,0,20,3.6,10,10,0.4,30,9,999999999,170,0.1660,0,88,999.000,999.0,99.0 +1990,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.2,7.2,100,101600,0,0,326,0,0,0,0,0,0,0,10,4.1,10,10,0.4,60,9,999999999,170,0.1660,0,88,999.000,999.0,99.0 +1990,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,6.6,5.1,100,101600,0,0,321,0,0,0,0,0,0,0,350,4.3,10,10,11.3,150,9,999999999,170,0.1660,0,88,999.000,999.0,99.0 +1990,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,6.1,3.1,96,101500,0,0,317,0,0,0,0,0,0,0,360,4.6,10,10,9.7,150,9,999999999,170,0.1660,0,88,999.000,999.0,99.0 +1990,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,5.5,1.0,100,101500,0,0,312,0,0,0,0,0,0,0,360,4.8,10,10,0.4,90,9,999999999,170,0.1660,0,88,999.000,999.0,99.0 +1978,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,5.0,-0.9,38,100200,0,0,266,0,0,0,0,0,0,0,270,5.0,0,0,24.1,77777,9,999999999,69,0.1670,0,88,999.000,999.0,99.0 +1978,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,4.4,-3.0,41,100200,0,0,262,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,69,0.1670,0,88,999.000,999.0,99.0 +1978,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,3.9,-5.0,43,100200,0,0,258,0,0,0,0,0,0,0,270,5.5,0,0,24.1,77777,9,999999999,69,0.1670,0,88,999.000,999.0,99.0 +1978,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,3.3,-7.2,46,100100,0,0,254,0,0,0,0,0,0,0,240,5.7,0,0,24.1,77777,9,999999999,69,0.1670,0,88,999.000,999.0,99.0 +1978,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,2.8,-7.2,48,100200,11,415,257,4,13,3,0,0,0,0,240,5.7,1,1,24.1,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1978,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,2.8,-6.7,50,100200,191,1346,252,84,355,34,8700,23500,5300,620,240,6.7,0,0,24.1,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1978,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,5.0,-6.7,43,100200,439,1346,261,270,654,58,28100,59600,8700,1160,240,6.2,0,0,24.1,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1978,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.7,-6.7,38,100100,674,1346,267,472,788,79,50100,77600,11200,1750,260,6.2,0,0,24.1,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1978,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,8.3,-6.1,36,100100,879,1346,274,651,852,95,67800,84600,12400,2160,280,5.7,0,0,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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,9.4,-5.6,35,100000,1041,1346,284,765,871,92,79700,87200,12100,2790,290,7.7,1,1,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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.1,-5.0,32,99900,1148,1346,292,871,891,111,90100,89300,13800,4000,290,8.2,1,1,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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,12.2,-5.0,30,99900,1193,1346,291,938,927,117,96900,92900,14400,4790,280,7.7,0,0,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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,13.3,-4.4,29,99800,1172,1346,308,929,912,135,95600,91300,15900,4810,290,8.2,3,3,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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,12.8,-5.0,29,99800,1088,1346,338,418,12,408,48100,1200,47100,16810,280,7.7,10,10,24.1,1680,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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,11.7,-5.0,31,99800,946,1346,317,472,321,247,52000,34700,27600,6910,290,10.3,8,8,24.1,1520,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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,11.7,-5.0,31,99900,756,1346,317,355,136,279,38500,14100,30600,7290,280,8.2,8,8,24.1,1680,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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.0,-5.6,33,99900,530,1346,304,246,292,132,26600,28800,15300,2680,280,9.3,7,7,24.1,2740,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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,9.4,-5.6,35,100000,286,1346,306,89,84,72,9800,6800,8400,1560,290,11.3,8,8,24.1,1520,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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,8.3,-5.0,39,100100,55,931,291,24,46,19,2300,1600,2200,330,300,10.3,5,5,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1978,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,6.7,-4.4,45,100200,0,0,278,0,0,0,0,0,0,0,280,6.7,2,2,24.1,77777,9,999999999,80,0.1670,0,88,999.000,999.0,99.0 +1978,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,6.7,-4.4,45,100200,0,0,269,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,80,0.1670,0,88,999.000,999.0,99.0 +1978,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,6.1,-5.0,45,100300,0,0,266,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,80,0.1670,0,88,999.000,999.0,99.0 +1978,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,5.6,-4.4,49,100300,0,0,265,0,0,0,0,0,0,0,290,7.7,0,0,24.1,77777,9,999999999,80,0.1670,0,88,999.000,999.0,99.0 +1978,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,5.6,-4.4,49,100200,0,0,265,0,0,0,0,0,0,0,290,6.7,0,0,24.1,77777,9,999999999,80,0.1670,0,88,999.000,999.0,99.0 +1978,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,5.6,-3.9,51,100200,0,0,266,0,0,0,0,0,0,0,290,7.2,0,0,24.1,77777,9,999999999,89,0.1680,0,88,999.000,999.0,99.0 +1978,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,5.0,-3.9,53,100200,0,0,263,0,0,0,0,0,0,0,290,7.7,0,0,24.1,77777,9,999999999,89,0.1680,0,88,999.000,999.0,99.0 +1978,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.0,-3.9,53,100200,0,0,263,0,0,0,0,0,0,0,300,6.2,0,0,24.1,77777,9,999999999,89,0.1680,0,88,999.000,999.0,99.0 +1978,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,4.4,-3.9,55,100300,0,0,261,0,0,0,0,0,0,0,280,6.7,0,0,24.1,77777,9,999999999,89,0.1680,0,88,999.000,999.0,99.0 +1978,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,4.4,-3.9,55,100400,12,460,261,6,7,5,0,0,0,0,300,7.7,0,0,24.1,77777,9,999999999,89,0.1340,0,88,999.000,999.0,99.0 +1978,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,5.0,-3.9,53,100400,196,1345,263,80,271,41,8500,17300,6000,730,300,6.7,0,0,24.1,77777,9,999999999,89,0.1340,0,88,999.000,999.0,99.0 +1978,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,6.1,-3.9,49,100400,444,1345,268,257,568,71,27000,51700,9900,1370,300,6.2,0,0,24.1,77777,9,999999999,89,0.1340,0,88,999.000,999.0,99.0 +1978,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,7.2,-2.8,49,100400,678,1345,273,461,722,98,49200,71800,12900,2140,310,8.8,0,0,24.1,77777,9,999999999,89,0.1340,0,88,999.000,999.0,99.0 +1978,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,8.9,-2.2,46,100500,883,1345,280,641,796,119,67400,79700,15000,2930,270,6.7,0,0,24.1,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1978,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,10.6,-1.7,43,100500,1044,1345,288,790,845,134,83900,85400,17500,4270,290,6.2,0,0,24.1,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1978,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,-0.6,42,100400,1151,1345,295,887,871,143,91200,87100,16500,4570,300,7.2,0,0,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1978,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,13.3,0.0,40,100400,1195,1345,300,927,879,146,95100,88000,16700,5480,300,6.2,0,0,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1978,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,14.4,0.6,39,100300,1175,1345,306,912,879,144,93500,87900,16600,5010,310,5.7,0,0,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1978,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,16.1,0.6,35,100200,1091,1345,313,835,861,137,89100,87100,18200,4860,310,5.2,0,0,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1978,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,16.7,0.6,34,100200,949,1345,322,627,688,142,67400,70400,17600,4100,300,6.2,1,1,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1978,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,17.2,0.0,31,100200,759,1345,328,525,734,112,56100,73900,14300,2600,300,5.7,2,2,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1978,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,16.1,0.0,34,100300,534,1345,323,317,496,122,33800,47500,14900,2370,320,5.2,2,2,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1978,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,15.6,-0.6,34,100400,290,1345,315,134,385,52,13900,30400,7400,950,320,6.2,1,1,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1978,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,13.3,-0.6,39,100400,57,953,300,23,51,18,2300,1800,2200,310,330,7.7,0,0,24.1,77777,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1978,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,12.2,-0.6,42,100500,0,0,295,0,0,0,0,0,0,0,350,7.2,0,0,24.1,77777,9,999999999,110,0.1680,0,88,999.000,999.0,99.0 +1978,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,-0.6,43,100600,0,0,293,0,0,0,0,0,0,0,360,7.7,0,0,24.1,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1978,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,10.6,-1.1,45,100700,0,0,288,0,0,0,0,0,0,0,350,7.7,0,0,24.1,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1978,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,9.4,-1.1,48,100700,0,0,283,0,0,0,0,0,0,0,340,5.7,0,0,24.1,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1978,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,7.8,-1.1,54,100700,0,0,277,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1978,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,7.8,-1.1,54,100700,0,0,299,0,0,0,0,0,0,0,320,4.1,7,7,24.1,1100,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1978,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,7.8,-1.1,54,100700,0,0,320,0,0,0,0,0,0,0,310,4.6,10,10,24.1,1160,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1978,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,8.3,-1.1,52,100700,0,0,322,0,0,0,0,0,0,0,300,6.7,10,10,24.1,1100,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1978,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,8.3,-1.1,52,100700,0,0,322,0,0,0,0,0,0,0,290,5.2,10,10,24.1,1100,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1978,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,8.3,-1.1,52,100700,14,482,322,2,0,2,0,0,0,0,300,6.7,10,10,24.1,1310,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1978,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,8.3,-1.1,52,100800,201,1344,306,54,28,50,5900,2100,5600,1230,310,6.7,8,8,24.1,1400,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1978,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,8.9,-1.1,50,100800,448,1344,304,148,103,114,16300,9700,13100,2580,290,6.2,7,7,24.1,2440,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1978,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,10.0,-1.1,46,100800,682,1344,298,398,480,154,42500,48200,18000,3240,320,8.8,3,3,24.1,77777,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1978,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,11.7,-0.6,43,100800,886,1344,306,592,598,198,61600,59800,22100,4970,320,7.2,3,3,24.1,77777,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1978,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,12.2,-0.6,42,100800,1047,1344,310,663,499,274,71100,52000,30500,9310,310,6.7,4,4,24.1,77777,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1978,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,0.6,42,100700,1153,1344,317,837,676,257,88100,68400,29300,11110,300,6.2,4,4,24.1,77777,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1978,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,14.4,1.1,41,100600,1198,1344,320,875,712,240,92900,72500,28200,12150,340,5.2,3,3,24.1,77777,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1978,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.6,1.1,38,100600,1177,1344,325,899,760,233,95500,77400,27600,10980,360,5.2,3,3,24.1,77777,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1978,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,14.4,3.3,48,100600,1093,1344,330,550,240,355,60000,26000,38800,13000,130,4.6,6,6,24.1,1520,9,999999999,129,0.1700,0,88,999.000,999.0,99.0 +1978,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,13.3,4.4,55,100600,952,1344,335,498,230,336,54500,24300,37300,10290,110,5.2,8,8,24.1,1220,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1978,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,11.7,4.4,62,100600,762,1344,323,333,206,216,36700,21500,24500,5660,90,6.7,7,7,24.1,1220,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1978,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,11.1,4.4,64,100600,537,1344,332,157,109,114,17600,10800,13200,2670,110,5.2,10,9,24.1,1220,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1978,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,11.1,5.0,66,100700,293,1344,333,75,0,75,8400,0,8400,2620,90,4.6,10,9,24.1,1220,9,999999999,150,0.1700,0,88,999.000,999.0,99.0 +1978,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,11.1,5.6,69,100800,60,975,343,22,1,22,2500,0,2500,720,120,3.1,10,10,24.1,910,9,999999999,150,0.1700,0,88,999.000,999.0,99.0 +1978,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.6,5.6,71,101000,0,0,340,0,0,0,0,0,0,0,360,6.2,10,10,24.1,1490,9,999999999,150,0.1680,0,88,999.000,999.0,99.0 +1978,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,9.4,5.6,77,101100,0,0,335,0,0,0,0,0,0,0,30,6.2,10,10,19.3,1310,9,999999999,150,0.1680,0,88,999.000,999.0,99.0 +1978,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,8.9,2.8,66,101200,0,0,320,0,0,0,0,0,0,0,360,4.6,10,9,24.1,1310,9,999999999,129,0.1680,0,88,999.000,999.0,99.0 +1978,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,9.4,1.1,56,101200,0,0,329,0,0,0,0,0,0,0,340,5.7,10,10,19.3,1400,9,999999999,120,0.1680,0,88,999.000,999.0,99.0 +1978,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,9.4,0.6,54,101300,0,0,313,0,0,0,0,0,0,0,340,4.6,8,8,19.3,1680,9,999999999,110,0.1680,0,88,999.000,999.0,99.0 +1978,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,8.9,-2.2,46,101300,0,0,289,0,0,0,0,0,0,0,330,6.2,2,2,24.1,77777,9,999999999,100,0.1690,0,88,999.000,999.0,99.0 +1978,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,7.2,-2.8,49,101300,0,0,273,0,0,0,0,0,0,0,340,4.1,0,0,24.1,77777,9,999999999,89,0.1690,0,88,999.000,999.0,99.0 +1978,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,6.1,-2.8,53,101300,0,0,269,0,0,0,0,0,0,0,310,6.2,0,0,24.1,77777,9,999999999,89,0.1690,0,88,999.000,999.0,99.0 +1978,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,6.1,-2.2,56,101300,0,0,269,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,100,0.1690,0,88,999.000,999.0,99.0 +1978,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,5.6,-2.2,58,101300,15,504,267,9,30,6,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,100,0.0810,0,88,999.000,999.0,99.0 +1978,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,6.1,-2.2,56,101500,206,1344,269,95,406,34,9900,28000,5700,620,300,6.7,0,0,24.1,77777,9,999999999,100,0.0810,0,88,999.000,999.0,99.0 +1978,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,7.2,-2.2,51,101500,452,1344,273,280,674,55,29500,62100,8600,1140,300,6.2,0,0,24.1,77777,9,999999999,100,0.0810,0,88,999.000,999.0,99.0 +1978,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,8.9,-1.7,48,101500,686,1344,281,480,797,74,51400,78900,11100,1700,310,4.1,0,0,24.1,77777,9,999999999,100,0.0810,0,88,999.000,999.0,99.0 +1978,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,10.0,-1.7,44,101500,890,1344,285,662,866,89,69000,86100,11900,2150,330,3.1,0,0,24.1,77777,9,999999999,100,0.0810,0,88,999.000,999.0,99.0 +1978,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,11.7,-0.6,43,101500,1050,1344,293,808,907,100,84000,90800,12900,2970,90,5.2,0,0,24.1,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1978,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,11.7,0.0,45,101500,1156,1344,299,850,878,94,88300,88100,12300,3720,130,5.2,1,1,24.1,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1978,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,11.7,0.6,47,101500,1200,1344,294,916,904,109,94800,90700,13600,4740,130,6.2,0,0,24.1,77777,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1978,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,1.1,47,101500,1180,1344,297,909,913,108,94200,91600,13600,4380,110,7.7,0,0,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1978,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,12.2,1.7,49,101500,1096,1344,298,840,898,108,87000,89900,13500,3430,110,7.7,1,0,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1978,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,12.2,1.7,49,101400,954,1344,307,674,691,185,71200,69900,21500,5230,110,7.7,7,2,24.1,77777,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1978,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,12.2,2.8,53,101500,765,1344,323,354,243,216,38400,25700,23700,5120,130,6.7,8,7,24.1,6100,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1978,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,11.7,2.2,53,101500,541,1344,332,246,201,166,26900,19800,18900,3890,130,6.2,10,9,24.1,6100,9,999999999,129,0.0810,0,88,999.000,999.0,99.0 +1978,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,11.7,1.7,51,101500,297,1344,341,107,44,98,11800,3700,11000,2360,130,6.2,10,10,24.1,4570,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1978,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.7,0.6,47,101400,63,1019,340,9,1,8,1000,0,1000,310,160,6.2,10,10,24.1,4570,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1978,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.1,0.6,49,101400,0,0,337,0,0,0,0,0,0,0,160,5.7,10,10,24.1,4570,9,999999999,110,0.1690,0,88,999.000,999.0,99.0 +1978,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,10.6,1.1,52,101500,0,0,335,0,0,0,0,0,0,0,170,4.6,10,10,24.1,4570,9,999999999,120,0.1690,0,88,999.000,999.0,99.0 +1978,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,10.6,1.1,52,101500,0,0,335,0,0,0,0,0,0,0,170,3.6,10,10,24.1,3660,9,999999999,120,0.1690,0,88,999.000,999.0,99.0 +1978,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,10.0,1.1,54,101400,0,0,332,0,0,0,0,0,0,0,140,3.1,10,10,24.1,6100,9,999999999,120,0.1690,0,88,999.000,999.0,99.0 +1978,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,9.4,1.7,59,101300,0,0,330,0,0,0,0,0,0,0,110,4.1,10,10,24.1,3350,9,999999999,120,0.1690,0,88,999.000,999.0,99.0 +1978,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,8.9,0.6,56,101300,0,0,327,0,0,0,0,0,0,0,150,4.1,10,10,24.1,3050,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1978,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,8.9,1.1,59,101200,0,0,327,0,0,0,0,0,0,0,100,4.6,10,10,24.1,2440,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1978,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,8.9,2.2,63,101200,0,0,328,0,0,0,0,0,0,0,100,6.2,10,10,24.1,2130,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1978,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,8.9,3.3,68,101100,0,0,330,0,0,0,0,0,0,0,60,6.7,10,10,20.9,1520,9,999999999,129,0.1700,0,88,999.000,999.0,99.0 +1978,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,8.3,2.8,68,101100,17,548,326,3,0,3,0,0,0,0,70,6.7,10,10,19.3,910,9,999999999,129,0.1400,0,88,999.000,999.0,99.0 +1978,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,8.3,3.9,74,101200,211,1343,328,25,2,25,3000,0,3000,990,70,7.2,10,10,11.3,910,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.8,2.8,71,101100,456,1343,324,66,5,64,7800,300,7700,2750,70,8.8,10,10,11.3,550,9,999999999,129,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.8,3.9,77,101100,690,1343,325,106,3,104,12700,200,12600,4840,100,10.3,10,10,9.7,270,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.8,4.4,80,101100,893,1343,326,157,2,156,19000,100,18900,7570,90,7.7,10,10,11.3,270,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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.2,4.4,83,101100,1053,1343,323,192,4,189,23400,300,23100,9420,70,7.7,10,10,8.0,240,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.2,4.4,83,101100,1159,1343,323,227,2,225,27600,200,27500,11110,50,8.8,10,10,8.0,270,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.2,3.9,80,101100,1203,1343,322,244,1,243,29700,100,29600,11910,70,10.3,10,10,9.7,270,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.2,3.9,80,101100,1182,1343,322,251,0,250,30300,0,30300,12150,60,8.8,10,10,9.7,1520,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.8,4.4,80,101100,1098,1343,326,244,1,243,29300,100,29200,11700,70,6.7,10,10,11.3,1520,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,8.3,4.4,77,101100,957,1343,328,184,1,184,22200,100,22100,8920,50,6.2,10,10,9.7,910,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,8.3,4.4,77,101100,768,1343,328,144,1,143,17100,100,17000,6610,50,5.2,10,10,9.7,580,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.8,4.4,80,101200,544,1343,326,104,1,104,12200,100,12200,4390,70,4.6,10,10,8.0,580,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.8,3.9,77,101300,301,1343,325,44,1,44,5200,0,5200,1760,50,3.6,10,10,8.0,460,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.8,3.9,77,101400,66,1041,325,13,0,13,1500,0,1500,480,20,2.6,10,10,8.0,460,9,999999999,139,0.1400,0,88,999.000,999.0,99.0 +1978,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,7.8,4.4,80,101400,0,0,326,0,0,0,0,0,0,0,360,1.5,10,10,12.9,910,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1978,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,7.8,3.9,77,101400,0,0,325,0,0,0,0,0,0,0,40,2.6,10,10,19.3,1220,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1978,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,7.8,3.9,77,101400,0,0,325,0,0,0,0,0,0,0,320,2.6,10,10,19.3,1680,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1978,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,3.9,77,101500,0,0,325,0,0,0,0,0,0,0,320,3.6,10,10,20.9,2130,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1978,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.8,3.9,77,101500,0,0,310,0,0,0,0,0,0,0,330,4.1,8,8,20.9,2130,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1978,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,7.8,3.9,77,101500,0,0,294,0,0,0,0,0,0,0,320,4.6,6,3,24.1,77777,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1978,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,7.8,3.3,74,101500,0,0,293,0,0,0,0,0,0,0,300,4.1,6,3,24.1,77777,9,999999999,129,0.1710,0,88,999.000,999.0,99.0 +1978,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,7.8,3.3,74,101600,0,0,301,0,0,0,0,0,0,0,300,4.6,10,6,20.9,7620,9,999999999,129,0.1710,0,88,999.000,999.0,99.0 +1978,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,7.8,3.3,74,101700,0,0,304,0,0,0,0,0,0,0,310,4.6,10,7,20.9,7620,9,999999999,129,0.1710,0,88,999.000,999.0,99.0 +1978,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,7.8,3.3,74,101800,19,571,304,10,0,10,0,0,0,0,300,3.6,9,7,19.3,7620,9,999999999,129,0.1940,0,88,999.000,999.0,99.0 +1978,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,8.3,3.3,71,101800,215,1342,303,80,33,75,8800,2500,8400,1710,300,4.1,10,6,20.9,7620,9,999999999,129,0.1940,0,88,999.000,999.0,99.0 +1978,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,9.4,3.3,66,101800,461,1342,305,193,106,157,20900,10000,17400,3580,320,3.6,10,5,24.1,77777,9,999999999,129,0.1940,0,88,999.000,999.0,99.0 +1978,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.1,3.9,61,101900,693,1342,311,418,413,205,44900,43000,22700,4670,300,3.1,10,4,24.1,77777,9,999999999,139,0.1940,0,88,999.000,999.0,99.0 +1978,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,2.2,46,101900,896,1342,315,620,605,216,66600,62600,24700,5650,320,2.1,7,2,24.1,77777,9,999999999,129,0.1940,0,88,999.000,999.0,99.0 +1978,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,14.4,2.8,46,102000,1056,1342,308,778,739,197,82700,75300,23300,6770,240,3.1,4,0,24.1,77777,9,999999999,129,0.1940,0,88,999.000,999.0,99.0 +1978,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,15.0,3.9,48,101900,1161,1342,322,715,495,287,77600,51800,32700,13130,150,4.1,5,2,24.1,77777,9,999999999,139,0.1940,0,88,999.000,999.0,99.0 +1978,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,15.6,3.3,44,101900,1205,1342,330,782,447,381,83000,46600,41000,20570,130,5.2,5,4,24.1,77777,9,999999999,129,0.1940,0,88,999.000,999.0,99.0 +1978,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,16.1,3.3,43,101900,1184,1342,332,841,602,309,90800,63000,35100,15310,140,5.2,5,4,24.1,77777,9,999999999,129,0.1940,0,88,999.000,999.0,99.0 +1978,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,16.1,3.9,44,101900,1100,1342,330,800,695,230,84400,70500,26500,8670,140,5.2,7,3,24.1,77777,9,999999999,139,0.1940,0,88,999.000,999.0,99.0 +1978,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,15.6,4.4,48,101900,959,1342,337,621,497,267,66100,51500,29100,7760,140,4.6,9,6,24.1,7620,9,999999999,139,0.1940,0,88,999.000,999.0,99.0 +1978,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,15.6,4.4,48,102000,771,1342,337,409,331,219,44300,35000,24100,5220,140,4.6,8,6,24.1,7620,9,999999999,139,0.1940,0,88,999.000,999.0,99.0 +1978,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,15.6,3.3,44,102000,547,1342,335,256,204,174,28000,20100,19700,4090,130,5.2,8,6,24.1,1370,9,999999999,129,0.1940,0,88,999.000,999.0,99.0 +1978,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,14.4,3.9,49,102000,305,1342,325,85,32,78,9300,2700,8700,2010,140,5.7,6,4,24.1,2740,9,999999999,139,0.1940,0,88,999.000,999.0,99.0 +1978,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,14.4,4.4,51,102000,69,1063,320,21,18,19,2200,1000,2200,470,200,5.2,3,2,24.1,77777,9,999999999,139,0.1940,0,88,999.000,999.0,99.0 +1978,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,13.3,4.4,55,102100,0,0,315,0,0,0,0,0,0,0,190,4.6,2,2,24.1,77777,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1978,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,12.8,4.4,57,102100,0,0,303,0,0,0,0,0,0,0,240,6.7,0,0,24.1,77777,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1978,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,53,102100,0,0,317,0,0,0,0,0,0,0,240,6.2,7,4,24.1,2740,9,999999999,129,0.1710,0,88,999.000,999.0,99.0 +1978,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,12.8,3.3,53,102100,0,0,302,0,0,0,0,0,0,0,250,5.7,0,0,24.1,77777,9,999999999,129,0.1710,0,88,999.000,999.0,99.0 +1978,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,12.2,3.3,55,102100,0,0,299,0,0,0,0,0,0,0,240,5.7,0,0,24.1,77777,9,999999999,129,0.1710,0,88,999.000,999.0,99.0 +1978,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,12.2,3.9,57,102100,0,0,346,0,0,0,0,0,0,0,260,4.1,10,10,24.1,2740,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1978,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,12.2,4.4,59,102100,0,0,347,0,0,0,0,0,0,0,240,3.6,10,10,24.1,2740,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1978,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,12.2,4.4,59,102100,0,0,321,0,0,0,0,0,0,0,260,5.2,7,6,24.1,2740,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1978,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,12.2,4.4,59,102100,0,0,330,0,0,0,0,0,0,0,270,5.2,8,8,20.9,2440,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1978,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,12.2,4.4,59,102200,21,593,347,5,1,5,0,0,0,0,280,4.6,10,10,20.9,2440,9,999999999,139,0.0680,0,88,999.000,999.0,99.0 +1978,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,12.8,4.4,57,102200,220,1342,340,57,21,54,6300,1600,6000,1340,300,5.2,10,9,20.9,2440,9,999999999,139,0.0680,0,88,999.000,999.0,99.0 +1978,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,13.3,3.9,53,102300,465,1342,351,105,35,93,11600,3200,10500,2700,300,4.6,10,10,24.1,7620,9,999999999,139,0.0680,0,88,999.000,999.0,99.0 +1978,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,15.0,3.9,48,102300,697,1342,343,332,248,204,35800,25900,22300,4650,300,3.6,10,8,24.1,7620,9,999999999,139,0.0680,0,88,999.000,999.0,99.0 +1978,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,16.7,3.3,41,102300,899,1342,338,590,614,179,62000,61900,20500,4670,10,4.1,6,5,24.1,7620,9,999999999,129,0.0680,0,88,999.000,999.0,99.0 +1978,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,17.8,2.8,37,102300,1059,1342,323,734,814,92,76400,81500,12000,2910,80,4.1,0,0,24.1,77777,9,999999999,129,0.0680,0,88,999.000,999.0,99.0 +1978,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,2.2,37,102300,1164,1342,326,850,816,142,91100,82800,19200,6220,100,5.2,1,1,24.1,77777,9,999999999,129,0.0680,0,88,999.000,999.0,99.0 +1978,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,16.1,3.9,44,102300,1207,1342,323,892,891,91,92900,89500,12100,4310,90,6.7,1,1,24.1,77777,9,999999999,139,0.0680,0,88,999.000,999.0,99.0 +1978,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,16.7,4.4,45,102400,1186,1342,326,877,870,108,90800,87300,13500,4510,120,5.2,1,1,24.1,77777,9,999999999,150,0.0680,0,88,999.000,999.0,99.0 +1978,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,16.1,3.9,44,102400,1103,1342,317,850,920,95,88500,92200,12500,3260,120,4.6,0,0,24.1,77777,9,999999999,139,0.0680,0,88,999.000,999.0,99.0 +1978,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,17.2,2.2,37,102400,962,1342,320,718,883,86,75000,88200,11700,2360,110,5.2,0,0,24.1,77777,9,999999999,129,0.0680,0,88,999.000,999.0,99.0 +1978,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,18.3,0.6,30,102400,773,1342,323,556,839,74,58400,82800,10600,1750,130,5.2,0,0,24.1,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1978,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,17.2,0.0,31,102400,550,1342,317,364,753,57,39100,72400,9300,1270,120,4.6,0,0,24.1,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1978,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,15.6,2.8,43,102400,308,1342,313,167,568,39,17600,47300,6700,800,130,4.1,0,0,24.1,77777,9,999999999,129,0.0680,0,88,999.000,999.0,99.0 +1978,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,14.4,3.3,48,102400,72,1085,309,33,163,17,3000,7900,2400,310,130,2.6,0,0,24.1,77777,9,999999999,139,0.0680,0,88,999.000,999.0,99.0 +1978,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,13.3,5.0,57,102400,0,0,306,0,0,0,0,0,0,0,150,3.6,0,0,24.1,77777,9,999999999,150,0.1710,0,88,999.000,999.0,99.0 +1978,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,13.3,3.9,53,102500,0,0,305,0,0,0,0,0,0,0,200,3.6,0,0,24.1,77777,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1978,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,14.4,3.3,48,102500,0,0,309,0,0,0,0,0,0,0,240,5.7,0,0,24.1,77777,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1978,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,13.9,4.4,53,102500,0,0,308,0,0,0,0,0,0,0,240,3.6,0,0,24.1,77777,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1978,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,13.3,5.0,57,102500,0,0,306,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,150,0.1710,0,88,999.000,999.0,99.0 +1978,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,12.8,4.4,57,102500,0,0,303,0,0,0,0,0,0,0,250,4.6,0,0,24.1,77777,9,999999999,139,0.1720,0,88,999.000,999.0,99.0 +1978,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,12.8,5.0,59,102500,0,0,304,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1978,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,11.7,5.0,64,102500,0,0,299,0,0,0,0,0,0,0,240,3.1,0,0,24.1,77777,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1978,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,11.7,5.0,64,102500,0,0,299,0,0,0,0,0,0,0,240,3.1,0,0,24.1,77777,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1978,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,5.0,66,102500,23,615,296,9,1,9,0,0,0,0,240,3.6,0,0,19.3,77777,9,999999999,150,0.2940,0,88,999.000,999.0,99.0 +1978,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.7,5.6,66,102500,224,1341,300,78,121,58,8300,8200,6900,1090,210,2.1,0,0,19.3,77777,9,999999999,150,0.2940,0,88,999.000,999.0,99.0 +1978,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,13.3,5.0,57,102500,468,1341,306,240,367,112,25300,34000,13400,2130,230,2.1,0,0,19.3,77777,9,999999999,150,0.2940,0,88,999.000,999.0,99.0 +1978,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,15.0,6.7,58,102600,700,1341,315,436,529,160,46700,53400,18700,3410,140,2.6,0,0,19.3,77777,9,999999999,160,0.2940,0,88,999.000,999.0,99.0 +1978,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,17.2,5.0,45,102500,902,1341,323,620,627,198,64600,62900,22300,5110,140,3.1,0,0,19.3,77777,9,999999999,150,0.2940,0,88,999.000,999.0,99.0 +1978,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,18.3,8.9,54,102600,1061,1341,332,768,668,240,80500,67400,27100,8190,110,4.1,2,0,19.3,77777,9,999999999,189,0.2940,0,88,999.000,999.0,99.0 +1978,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,18.9,6.1,43,102500,1166,1341,332,869,704,257,91600,71300,29600,11680,120,6.2,2,0,19.3,77777,9,999999999,160,0.2940,0,88,999.000,999.0,99.0 +1978,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,18.9,5.6,42,102400,1209,1341,331,906,732,246,96300,74500,29000,13150,130,8.8,0,0,24.1,77777,9,999999999,150,0.2940,0,88,999.000,999.0,99.0 +1978,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,19.4,6.7,44,102400,1189,1341,335,885,717,250,93800,72800,29100,12330,100,7.7,1,0,24.1,77777,9,999999999,160,0.2940,0,88,999.000,999.0,99.0 +1978,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,19.4,2.2,32,102300,1105,1341,329,812,698,237,85600,70700,27200,9040,140,7.2,1,0,24.1,77777,9,999999999,129,0.2940,0,88,999.000,999.0,99.0 +1978,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,21.1,2.8,30,102200,964,1341,349,594,474,253,63500,49200,28000,7390,170,7.7,3,2,24.1,77777,9,999999999,129,0.2940,0,88,999.000,999.0,99.0 +1978,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,20.6,-1.1,23,102200,776,1341,345,372,222,243,40700,23200,27300,6440,170,8.8,7,3,24.1,77777,9,999999999,100,0.2940,0,88,999.000,999.0,99.0 +1978,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,18.9,1.7,32,102200,553,1341,341,267,262,160,28600,26100,17800,3380,170,8.8,7,3,24.1,77777,9,999999999,120,0.2940,0,88,999.000,999.0,99.0 +1978,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,16.7,6.7,52,102200,312,1341,339,96,79,78,10600,6600,9000,1700,170,9.8,8,4,20.9,77777,9,999999999,160,0.2940,0,88,999.000,999.0,99.0 +1978,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,15.6,6.7,56,102200,75,1106,343,13,1,13,1500,0,1500,480,170,8.8,10,7,19.3,3050,9,999999999,160,0.2940,0,88,999.000,999.0,99.0 +1978,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,14.4,5.0,53,102200,0,0,336,0,0,0,0,0,0,0,180,7.7,10,7,19.3,4880,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1978,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,13.3,4.4,55,102100,0,0,352,0,0,0,0,0,0,0,170,6.2,10,10,19.3,940,9,999999999,139,0.1720,0,88,999.000,999.0,99.0 +1978,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,13.3,4.4,55,102000,0,0,352,0,0,0,0,0,0,0,160,6.7,10,10,19.3,940,9,999999999,139,0.1720,0,88,999.000,999.0,99.0 +1978,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,13.3,6.7,64,102000,0,0,355,0,0,0,0,0,0,0,160,6.2,10,10,19.3,2130,9,999999999,160,0.1720,0,88,999.000,999.0,99.0 +1978,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,13.3,8.3,72,101900,0,0,357,0,0,0,0,0,0,0,160,3.1,10,10,19.3,1980,9,999999999,179,0.1720,0,88,999.000,999.0,99.0 +1978,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,13.9,10.6,80,101800,0,0,363,0,0,0,0,0,0,0,170,5.7,10,10,19.3,1680,9,999999999,200,0.1730,0,88,999.000,999.0,99.0 +1978,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.0,10.0,72,101700,0,0,367,0,0,0,0,0,0,0,160,9.8,10,10,19.3,1680,9,999999999,200,0.1730,0,88,999.000,999.0,99.0 +1978,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.6,10.0,70,101600,0,0,370,0,0,0,0,0,0,0,170,12.9,10,10,19.3,1520,9,999999999,200,0.1730,0,88,999.000,999.0,99.0 +1978,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,10.6,80,101500,0,0,363,0,0,0,0,0,0,0,170,10.3,10,10,19.3,1520,9,999999999,200,0.1730,0,88,999.000,999.0,99.0 +1978,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,13.3,11.1,87,101300,25,637,360,1,0,1,0,0,0,0,160,10.3,10,10,19.3,400,9,999999999,209,0.0760,0,88,999.000,999.0,99.0 +1978,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,13.3,11.7,90,101300,228,1341,361,35,24,32,4000,1800,3700,870,160,9.8,10,10,8.0,370,9,999999999,220,0.0760,0,88,999.000,999.0,99.0 +1978,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,13.9,12.8,93,101200,472,1341,365,92,5,91,10800,300,10700,3730,160,10.8,10,10,6.4,340,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,101100,703,1341,368,122,7,119,14600,500,14400,5470,160,9.3,10,10,8.0,310,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,101000,905,1341,372,154,6,150,18700,400,18400,7370,170,8.2,10,10,6.4,270,9,999999999,250,0.0760,0,88,999.000,999.0,99.0 +1978,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,15.6,13.9,90,100900,1064,1341,375,215,9,208,26000,700,25500,10240,180,11.8,10,10,16.1,370,9,999999999,250,0.0760,0,88,999.000,999.0,99.0 +1978,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,15.0,13.3,90,100800,1168,1341,371,346,2,345,40900,200,40800,15480,180,13.9,10,10,12.9,240,9,999999999,240,0.0760,0,88,999.000,999.0,99.0 +1978,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,15.6,13.3,87,100800,1212,1341,374,365,4,362,43300,400,42900,16180,210,8.2,10,10,12.9,210,9,999999999,240,0.0760,0,88,999.000,999.0,99.0 +1978,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,15.6,13.3,87,100700,1191,1341,374,449,1,449,52200,100,52100,18500,210,8.8,10,10,16.1,240,9,999999999,240,0.0760,0,88,999.000,999.0,99.0 +1978,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,16.1,13.3,84,100600,1107,1341,377,417,2,415,48100,200,47900,17140,210,8.2,10,10,16.1,240,9,999999999,240,0.0760,0,88,999.000,999.0,99.0 +1978,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,15.6,13.3,87,100500,967,1341,374,367,1,366,41800,100,41800,14750,210,7.7,10,10,19.3,270,9,999999999,240,0.0760,0,88,999.000,999.0,99.0 +1978,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,15.6,13.3,87,100500,779,1341,374,280,1,279,31600,100,31500,10810,200,7.7,10,10,20.9,270,9,999999999,240,0.0760,0,88,999.000,999.0,99.0 +1978,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,15.6,12.8,84,100400,557,1341,374,193,1,193,21500,100,21500,6870,210,6.7,10,10,24.1,310,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1978,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,15.0,12.8,87,100400,315,1341,371,87,1,87,9700,0,9700,3000,220,7.2,10,10,20.9,270,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,100300,79,1128,368,22,0,22,2500,0,2500,740,210,7.7,10,10,17.7,210,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,100300,0,0,368,0,0,0,0,0,0,0,200,6.2,10,10,12.9,180,9,999999999,229,0.1730,0,88,999.000,999.0,99.0 +1978,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.9,12.2,90,100500,0,0,364,0,0,0,0,0,0,0,240,6.2,10,10,6.4,120,9,999999999,229,0.1730,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,100500,0,0,358,0,0,0,0,0,0,0,240,5.7,9,9,12.9,1310,9,999999999,229,0.1730,0,88,999.000,999.0,99.0 +1978,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,15.0,12.8,87,100400,0,0,361,0,0,0,0,0,0,0,180,3.1,9,9,12.9,2440,9,999999999,229,0.1730,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,100500,0,0,341,0,0,0,0,0,0,0,260,4.6,6,6,19.3,2740,9,999999999,229,0.1730,0,88,999.000,999.0,99.0 +1978,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,14.4,11.7,84,100500,0,0,356,0,0,0,0,0,0,0,270,4.1,9,9,19.3,1980,9,999999999,220,0.1740,0,88,999.000,999.0,99.0 +1978,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,14.4,11.7,84,100500,0,0,331,0,0,0,0,0,0,0,240,4.1,3,3,19.3,77777,9,999999999,220,0.1740,0,88,999.000,999.0,99.0 +1978,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,13.3,10.6,83,100500,0,0,312,0,0,0,0,0,0,0,250,3.6,0,0,19.3,77777,9,999999999,200,0.1740,0,88,999.000,999.0,99.0 +1978,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,12.8,10.0,83,100500,0,0,309,0,0,0,0,0,0,0,250,4.1,0,0,19.3,77777,9,999999999,200,0.1740,0,88,999.000,999.0,99.0 +1978,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.3,8.9,75,100600,27,681,310,12,12,11,1300,400,1300,230,290,7.2,0,0,19.3,77777,9,999999999,179,0.1590,0,88,999.000,999.0,99.0 +1978,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,14.4,7.8,65,100700,232,1340,313,97,278,49,10200,19500,6900,870,260,6.2,0,0,24.1,77777,9,999999999,170,0.1590,0,88,999.000,999.0,99.0 +1978,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.1,7.2,56,100700,476,1340,320,275,544,82,28700,50300,10800,1580,260,7.7,0,0,24.1,77777,9,999999999,170,0.1590,0,88,999.000,999.0,99.0 +1978,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,17.2,7.2,52,100700,707,1340,325,470,680,112,49800,67800,14000,2480,290,7.7,0,0,24.1,77777,9,999999999,170,0.1590,0,88,999.000,999.0,99.0 +1978,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,18.3,6.7,47,100700,908,1340,330,654,767,135,68100,76500,16200,3310,270,8.2,0,0,24.1,77777,9,999999999,160,0.1590,0,88,999.000,999.0,99.0 +1978,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,18.9,6.7,45,100800,1066,1340,339,763,751,166,79500,75200,19500,5290,280,9.3,1,1,24.1,77777,9,999999999,160,0.1590,0,88,999.000,999.0,99.0 +1978,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,19.4,6.1,42,100800,1170,1340,357,777,544,302,84100,56900,34200,14360,300,7.7,6,6,24.1,1220,9,999999999,160,0.1590,0,88,999.000,999.0,99.0 +1978,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,19.4,5.0,39,100900,1214,1340,356,803,575,282,84500,58100,31800,15250,270,10.3,6,6,24.1,1220,9,999999999,150,0.1590,0,88,999.000,999.0,99.0 +1978,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.6,4.4,35,100900,1193,1340,361,917,690,302,95800,69300,34000,14930,290,10.3,6,6,24.1,1830,9,999999999,139,0.1590,0,88,999.000,999.0,99.0 +1978,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.0,5.0,38,100900,1109,1340,355,808,639,279,84200,64100,31000,10600,280,9.3,5,5,24.1,77777,9,999999999,150,0.1590,0,88,999.000,999.0,99.0 +1978,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,20.6,4.4,35,100900,969,1340,352,672,662,194,70800,67000,22300,5630,290,8.8,3,3,24.1,77777,9,999999999,139,0.1590,0,88,999.000,999.0,99.0 +1978,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,20.6,4.4,35,100900,782,1340,352,514,646,138,54300,64800,16400,3200,300,7.7,3,3,24.1,77777,9,999999999,139,0.1590,0,88,999.000,999.0,99.0 +1978,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,20.0,3.9,35,101000,560,1340,349,343,570,107,35800,54300,13100,2100,300,7.7,3,3,24.1,77777,9,999999999,139,0.1590,0,88,999.000,999.0,99.0 +1978,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,18.3,4.4,40,101100,319,1340,338,144,287,76,15100,23200,9600,1390,300,7.7,2,2,24.1,77777,9,999999999,139,0.1590,0,88,999.000,999.0,99.0 +1978,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,17.8,3.9,40,101200,82,1150,335,23,41,19,2500,2000,2300,390,280,7.2,2,2,24.1,77777,9,999999999,139,0.1590,0,88,999.000,999.0,99.0 +1978,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,4.4,45,101300,0,0,326,0,0,0,0,0,0,0,280,6.2,1,1,24.1,77777,9,999999999,139,0.1740,0,88,999.000,999.0,99.0 +1978,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.6,5.0,50,101400,0,0,316,0,0,0,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,150,0.1740,0,88,999.000,999.0,99.0 +1978,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,15.0,5.0,51,101400,0,0,313,0,0,0,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,150,0.1740,0,88,999.000,999.0,99.0 +1978,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,14.4,5.6,55,101400,0,0,311,0,0,0,0,0,0,0,280,5.7,0,0,24.1,77777,9,999999999,150,0.1740,0,88,999.000,999.0,99.0 +1978,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,14.4,5.6,55,101500,0,0,311,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,150,0.1740,0,88,999.000,999.0,99.0 +1978,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,13.3,5.0,57,101500,0,0,306,0,0,0,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,150,0.1750,0,88,999.000,999.0,99.0 +1978,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,13.3,5.0,57,101600,0,0,306,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,150,0.1750,0,88,999.000,999.0,99.0 +1978,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,12.8,5.0,59,101600,0,0,304,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,150,0.1750,0,88,999.000,999.0,99.0 +1978,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,12.2,5.0,62,101800,0,0,301,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,150,0.1750,0,88,999.000,999.0,99.0 +1978,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,11.7,5.0,64,101900,29,703,299,11,0,11,1300,0,1300,390,330,4.1,0,0,24.1,77777,9,999999999,150,0.3950,0,88,999.000,999.0,99.0 +1978,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,12.8,5.0,59,102000,236,1339,304,79,76,65,8500,5600,7500,1390,320,4.6,0,0,24.1,77777,9,999999999,150,0.3950,0,88,999.000,999.0,99.0 +1978,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,13.9,4.4,53,102000,479,1339,308,232,285,131,24900,27300,15100,2650,320,7.2,0,0,24.1,77777,9,999999999,139,0.3950,0,88,999.000,999.0,99.0 +1978,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,15.0,4.4,50,102100,710,1339,312,422,436,191,44400,44000,21100,4180,320,6.2,0,0,24.1,77777,9,999999999,139,0.3950,0,88,999.000,999.0,99.0 +1978,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,15.6,4.4,48,102100,911,1339,315,606,541,239,64700,56000,26500,6440,350,5.7,0,0,24.1,77777,9,999999999,139,0.3950,0,88,999.000,999.0,99.0 +1978,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,16.7,5.0,46,102100,1068,1339,327,729,571,274,78600,59600,30900,9820,320,2.6,1,1,24.1,77777,9,999999999,150,0.3950,0,88,999.000,999.0,99.0 +1978,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,15.6,6.7,56,102100,1172,1339,328,818,559,328,87700,58400,36500,15800,110,6.2,2,2,24.1,77777,9,999999999,160,0.3950,0,88,999.000,999.0,99.0 +1978,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,15.6,7.2,58,102100,1215,1339,318,892,652,299,93400,65600,33700,16260,130,5.7,0,0,24.1,77777,9,999999999,170,0.3950,0,88,999.000,999.0,99.0 +1978,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,16.7,7.8,56,102100,1195,1339,324,843,613,295,88200,61700,33000,14760,130,5.7,0,0,24.1,77777,9,999999999,179,0.3950,0,88,999.000,999.0,99.0 +1978,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,17.8,8.3,54,102000,1111,1339,329,789,614,280,82300,61600,31000,10710,110,5.7,0,0,24.1,77777,9,999999999,179,0.3950,0,88,999.000,999.0,99.0 +1978,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,17.8,7.2,50,102000,971,1339,328,659,562,252,70600,58400,28200,7460,120,6.7,0,0,24.1,77777,9,999999999,170,0.3950,0,88,999.000,999.0,99.0 +1978,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,17.2,7.8,54,102000,784,1339,326,488,478,209,51700,48800,23100,4870,120,7.2,0,0,24.1,77777,9,999999999,170,0.3950,0,88,999.000,999.0,99.0 +1978,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,17.8,7.8,52,102000,563,1339,328,295,342,152,31800,34200,17400,3180,130,6.2,0,0,24.1,77777,9,999999999,170,0.3950,0,88,999.000,999.0,99.0 +1978,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,17.8,8.3,54,102000,322,1339,329,123,147,88,13500,12400,10500,1920,150,6.7,0,0,24.1,77777,9,999999999,179,0.3950,0,88,999.000,999.0,99.0 +1978,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,17.2,6.7,50,102100,85,1172,325,25,4,24,2700,0,2700,800,180,7.2,0,0,24.1,77777,9,999999999,160,0.3950,0,88,999.000,999.0,99.0 +1978,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,15.6,6.7,56,102100,0,0,317,0,0,0,0,0,0,0,190,5.7,0,0,24.1,77777,9,999999999,160,0.1750,0,88,999.000,999.0,99.0 +1978,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,14.4,7.2,62,102200,0,0,313,0,0,0,0,0,0,0,180,5.2,0,0,24.1,77777,9,999999999,170,0.1750,0,88,999.000,999.0,99.0 +1978,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,13.3,6.7,64,102200,0,0,307,0,0,0,0,0,0,0,180,3.6,0,0,24.1,77777,9,999999999,160,0.1750,0,88,999.000,999.0,99.0 +1978,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,12.8,7.2,69,102200,0,0,306,0,0,0,0,0,0,0,190,5.2,0,0,24.1,77777,9,999999999,170,0.1750,0,88,999.000,999.0,99.0 +1978,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,12.2,6.7,69,102200,0,0,303,0,0,0,0,0,0,0,190,4.6,0,0,24.1,77777,9,999999999,160,0.1750,0,88,999.000,999.0,99.0 +1978,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,11.1,6.7,74,102200,0,0,298,0,0,0,0,0,0,0,230,2.1,0,0,24.1,77777,9,999999999,160,0.1750,0,88,999.000,999.0,99.0 +1978,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,11.1,6.7,74,102200,0,0,298,0,0,0,0,0,0,0,230,5.2,0,0,24.1,77777,9,999999999,160,0.1750,0,88,999.000,999.0,99.0 +1978,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,10.6,6.7,77,102200,0,0,296,0,0,0,0,0,0,0,230,3.6,0,0,24.1,77777,9,999999999,160,0.1750,0,88,999.000,999.0,99.0 +1978,5,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,102200,0,0,294,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,160,0.1750,0,88,999.000,999.0,99.0 +1978,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,6.7,80,102300,31,725,294,13,3,13,1500,0,1500,450,220,3.6,2,0,24.1,77777,9,999999999,160,0.2420,0,88,999.000,999.0,99.0 +1978,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.7,6.7,72,102400,240,1339,301,93,177,62,9900,12500,7700,1160,230,4.6,2,0,24.1,77777,9,999999999,160,0.2420,0,88,999.000,999.0,99.0 +1978,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,13.9,7.2,64,102400,483,1339,324,238,286,135,25400,27500,15500,2750,200,2.6,4,3,12.9,77777,9,999999999,170,0.2420,0,88,999.000,999.0,99.0 +1978,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.6,7.8,60,102400,713,1339,332,324,265,183,35200,27800,20400,4110,170,3.1,4,3,16.1,77777,9,999999999,179,0.2420,0,88,999.000,999.0,99.0 +1978,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,17.8,8.3,54,102400,913,1339,343,427,260,249,46700,28000,27600,6770,160,2.6,4,3,16.1,77777,9,999999999,179,0.2420,0,88,999.000,999.0,99.0 +1978,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,9.4,51,102400,1071,1339,355,725,515,313,77000,53600,34000,11390,130,2.6,7,3,19.3,77777,9,999999999,189,0.2420,0,88,999.000,999.0,99.0 +1978,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,19.4,10.0,55,102400,1174,1339,358,867,567,369,91900,59100,39900,18040,100,5.2,9,5,19.3,6100,9,999999999,200,0.2420,0,88,999.000,999.0,99.0 +1978,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,18.3,9.4,56,102300,1217,1339,360,672,378,329,72600,39500,36500,18790,110,5.7,10,7,19.3,6100,9,999999999,189,0.2420,0,88,999.000,999.0,99.0 +1978,5,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,102200,1197,1339,369,653,240,439,71800,25600,48900,20460,130,5.2,10,7,20.9,6100,9,999999999,200,0.2420,0,88,999.000,999.0,99.0 +1978,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,21.1,8.3,44,102100,1113,1339,356,668,473,275,72400,49500,31200,11020,140,4.6,8,2,24.1,77777,9,999999999,179,0.2420,0,88,999.000,999.0,99.0 +1978,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,22.8,3.9,29,102100,974,1339,354,619,445,297,65300,46100,31700,8950,190,5.2,8,1,24.1,77777,9,999999999,139,0.2420,0,88,999.000,999.0,99.0 +1978,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,6.1,31,102100,787,1339,369,426,388,199,45400,39700,22000,4620,190,6.7,6,2,24.1,77777,9,999999999,160,0.2420,0,88,999.000,999.0,99.0 +1978,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,22.2,4.4,31,102100,566,1339,351,321,426,142,33900,41400,16400,2820,190,7.7,7,1,24.1,77777,9,999999999,139,0.2420,0,88,999.000,999.0,99.0 +1978,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.6,3.9,34,102100,326,1339,354,136,95,113,14600,8000,12700,2470,190,6.7,10,4,24.1,77777,9,999999999,139,0.2420,0,88,999.000,999.0,99.0 +1978,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.9,5.0,40,102200,88,1194,347,25,7,25,2900,0,2900,830,190,6.7,10,4,24.1,77777,9,999999999,150,0.2420,0,88,999.000,999.0,99.0 +1978,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,16.7,5.0,46,102200,0,0,337,0,0,0,0,0,0,0,190,5.7,8,4,24.1,77777,9,999999999,150,0.1750,0,88,999.000,999.0,99.0 +1978,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,15.6,4.4,48,102300,0,0,331,0,0,0,0,0,0,0,180,5.7,5,4,24.1,77777,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1978,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,15.0,4.4,50,102300,0,0,343,0,0,0,0,0,0,0,190,5.2,8,8,24.1,3960,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1978,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,13.9,4.4,53,102200,0,0,345,0,0,0,0,0,0,0,190,5.2,10,9,24.1,3050,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1978,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,4.4,55,102200,0,0,342,0,0,0,0,0,0,0,210,4.1,9,9,24.1,3050,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1978,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,12.8,4.4,57,102200,0,0,328,0,0,0,0,0,0,0,210,4.1,10,7,24.1,3050,9,999999999,139,0.1760,0,88,999.000,999.0,99.0 +1978,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,4.4,57,102200,0,0,340,0,0,0,0,0,0,0,200,3.6,10,9,24.1,3050,9,999999999,139,0.1760,0,88,999.000,999.0,99.0 +1978,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,5.6,62,102200,0,0,341,0,0,0,0,0,0,0,170,4.1,10,9,24.1,3050,9,999999999,150,0.1760,0,88,999.000,999.0,99.0 +1978,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,11.7,7.2,74,102100,0,0,326,0,0,0,0,0,0,0,170,3.6,8,7,24.1,3050,9,999999999,170,0.1760,0,88,999.000,999.0,99.0 +1978,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,11.1,7.8,80,102100,33,747,315,15,11,14,1600,600,1600,340,140,3.6,10,4,24.1,77777,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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.1,7.8,80,102200,244,1338,336,57,10,55,6400,300,6400,1950,150,3.1,10,9,24.1,7620,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,11.7,8.9,83,102200,486,1338,340,215,87,183,23500,8300,20400,4720,140,3.6,10,9,16.1,3050,9,999999999,189,0.0880,0,88,999.000,999.0,99.0 +1978,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,12.2,9.4,83,102300,715,1338,343,253,113,192,27900,11700,21600,4900,120,2.6,10,9,16.1,3050,9,999999999,189,0.0880,0,88,999.000,999.0,99.0 +1978,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,13.9,10.0,78,102300,916,1338,339,422,165,309,46200,17400,34300,9170,120,4.1,9,7,16.1,3660,9,999999999,200,0.0880,0,88,999.000,999.0,99.0 +1978,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,15.0,10.6,75,102200,1073,1338,338,717,621,219,75700,63000,25100,7810,80,5.7,9,5,19.3,3660,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1978,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,15.0,10.6,75,102100,1176,1338,341,563,172,412,62000,18300,45900,18240,80,5.7,9,6,20.9,6710,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1978,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,16.1,11.1,72,102100,1219,1338,351,569,165,418,62800,17600,46700,20870,80,7.7,10,7,20.9,3050,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1978,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,16.1,11.1,72,102000,1198,1338,364,549,218,354,60800,23700,39500,17080,110,7.7,10,9,24.1,2740,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1978,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,17.8,10.6,63,102000,1115,1338,372,453,113,359,50100,12100,40000,13930,130,5.7,10,9,24.1,2740,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1978,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,20.0,11.1,57,101900,976,1338,376,486,170,362,53000,18000,39900,11440,120,5.7,9,8,24.1,2740,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1978,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,20.6,10.6,53,101900,789,1338,373,411,318,224,44600,33800,24700,5430,170,7.2,7,7,24.1,2740,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1978,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,20.6,11.1,55,101900,569,1338,366,304,396,137,32300,38500,15900,2720,170,7.2,6,5,24.1,3050,9,999999999,209,0.0880,0,88,999.000,999.0,99.0 +1978,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,18.3,11.7,65,101900,329,1338,362,186,320,109,19600,26500,13100,2210,160,7.2,7,7,24.1,3050,9,999999999,220,0.0880,0,88,999.000,999.0,99.0 +1978,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,16.7,11.7,73,101900,92,1215,347,33,30,30,3500,1800,3400,700,150,5.7,6,5,24.1,7620,9,999999999,220,0.0880,0,88,999.000,999.0,99.0 +1978,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,16.1,11.7,75,102000,0,0,339,0,0,0,0,0,0,0,160,5.7,5,3,24.1,77777,9,999999999,220,0.1760,0,88,999.000,999.0,99.0 +1978,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,13.3,10.0,80,102000,0,0,342,0,0,0,0,0,0,0,120,6.2,8,8,24.1,1490,9,999999999,200,0.1760,0,88,999.000,999.0,99.0 +1978,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,12.8,10.0,83,102000,0,0,356,0,0,0,0,0,0,0,110,6.2,10,10,24.1,1490,9,999999999,200,0.1760,0,88,999.000,999.0,99.0 +1978,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,12.8,9.4,80,102000,0,0,346,0,0,0,0,0,0,0,110,4.6,9,9,24.1,1680,9,999999999,189,0.1760,0,88,999.000,999.0,99.0 +1978,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,12.2,9.4,83,102000,0,0,353,0,0,0,0,0,0,0,100,6.2,10,10,19.3,1520,9,999999999,189,0.1760,0,88,999.000,999.0,99.0 +1978,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,12.2,9.4,83,101900,0,0,353,0,0,0,0,0,0,0,100,6.2,10,10,19.3,1520,9,999999999,189,0.1770,0,88,999.000,999.0,99.0 +1978,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,11.7,8.9,83,101800,0,0,350,0,0,0,0,0,0,0,110,4.6,10,10,19.3,1520,9,999999999,189,0.1770,0,88,999.000,999.0,99.0 +1978,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,11.7,8.9,83,101800,0,0,350,0,0,0,0,0,0,0,90,5.7,10,10,19.3,1520,9,999999999,189,0.1770,0,88,999.000,999.0,99.0 +1978,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,11.7,8.9,83,101800,0,0,340,0,0,0,0,0,0,0,60,5.2,10,9,19.3,820,9,999999999,189,0.1770,0,88,999.000,999.0,99.0 +1978,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,11.1,8.3,83,101800,35,769,329,11,0,11,1300,0,1300,400,110,4.1,10,8,19.3,820,9,999999999,179,0.2500,0,88,999.000,999.0,99.0 +1978,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,8.3,80,101900,247,1337,323,80,74,67,8800,5600,7800,1430,100,5.2,10,6,19.3,7620,9,999999999,179,0.2500,0,88,999.000,999.0,99.0 +1978,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,12.2,8.3,77,101900,489,1337,351,113,3,112,13000,200,12900,4440,70,5.7,10,10,16.1,2740,9,999999999,179,0.2500,0,88,999.000,999.0,99.0 +1978,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,13.3,8.3,72,101800,718,1337,347,305,125,238,33300,12900,26300,6090,100,7.7,10,9,19.3,2740,9,999999999,179,0.2500,0,88,999.000,999.0,99.0 +1978,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,13.9,7.2,64,101900,918,1337,341,385,138,290,42300,14600,32300,8620,90,7.7,10,8,19.3,6100,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1978,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,14.4,6.7,60,101900,1075,1337,338,668,265,455,72500,28000,49900,16470,100,7.7,10,7,19.3,6100,9,999999999,160,0.2500,0,88,999.000,999.0,99.0 +1978,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,14.4,7.2,62,101900,1178,1337,338,567,197,393,62600,21000,44000,17500,100,9.3,10,7,19.3,910,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1978,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,14.4,8.3,67,101800,1221,1337,336,642,267,399,70700,29000,44100,21080,90,9.8,10,6,20.9,2740,9,999999999,179,0.2500,0,88,999.000,999.0,99.0 +1978,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,14.4,7.8,65,101800,1200,1337,335,800,521,333,86100,54500,37100,17840,80,9.8,9,6,20.9,6100,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1978,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,13.9,7.8,67,101800,1117,1337,349,407,90,331,44900,9200,37200,14260,80,8.2,10,9,20.9,910,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1978,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,13.3,7.8,69,101700,978,1337,356,198,8,192,23800,600,23300,9330,70,7.7,10,10,19.3,1010,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1978,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,12.8,7.8,72,101700,792,1337,354,126,22,113,14000,2200,12700,4060,70,8.2,10,10,19.3,1010,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1978,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,12.2,8.3,77,101700,572,1337,351,77,0,77,9300,0,9300,3490,70,8.2,10,10,16.1,1010,9,999999999,179,0.2500,0,88,999.000,999.0,99.0 +1978,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,11.7,7.8,77,101700,333,1337,348,39,2,39,4700,100,4700,1630,70,8.2,10,10,12.9,1010,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1978,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,11.1,7.8,80,101700,95,1237,345,10,0,10,1200,0,1200,390,70,9.3,10,10,12.9,270,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1978,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,11.1,8.9,86,101700,0,0,347,0,0,0,0,0,0,0,70,9.3,10,10,4.8,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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,10.6,8.9,90,101700,0,0,344,0,0,0,0,0,0,0,60,9.3,10,10,4.8,90,9,999999999,189,0.1770,0,88,999.000,999.0,99.0 +1978,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.6,8.3,86,101600,0,0,343,0,0,0,0,0,0,0,70,10.3,10,10,4.8,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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.0,8.3,89,101600,0,0,341,0,0,0,0,0,0,0,60,9.8,10,10,3.2,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101500,0,0,341,0,0,0,0,0,0,0,60,10.3,10,10,3.2,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101500,0,0,341,0,0,0,0,0,0,0,60,10.8,10,10,4.8,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101400,0,0,341,0,0,0,0,0,0,0,60,10.8,10,10,4.8,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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,9.4,7.8,89,101400,0,0,337,0,0,0,0,0,0,0,60,11.8,10,10,3.2,120,9,999999999,170,0.1770,0,88,999.000,999.0,99.0 +1978,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,9.4,7.8,89,101400,0,0,337,0,0,0,0,0,0,0,60,10.8,10,10,3.2,120,9,999999999,170,0.1770,0,88,999.000,999.0,99.0 +1978,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,9.4,7.8,89,101400,37,791,337,6,0,6,700,0,700,230,60,9.8,10,10,3.2,150,9,999999999,170,0.1310,0,88,999.000,999.0,99.0 +1978,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,9.4,7.8,89,101500,251,1337,337,31,2,31,3700,0,3700,1240,50,10.3,10,10,4.8,150,9,999999999,170,0.1310,0,88,999.000,999.0,99.0 +1978,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,9.4,8.3,93,101500,492,1337,338,71,3,70,8500,200,8400,3050,50,9.3,10,10,6.4,150,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,9.4,8.3,93,101500,721,1337,338,129,0,128,15200,0,15200,5880,60,8.2,10,10,2.4,120,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,9.4,8.3,93,101600,920,1337,338,180,1,179,21500,100,21500,8600,60,9.3,10,10,2.4,90,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101500,1077,1337,341,238,0,238,28600,0,28600,11460,60,7.7,10,10,2.4,90,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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.0,8.3,89,101600,1180,1337,341,233,1,232,28400,100,28300,11440,50,9.3,10,10,2.4,90,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,8.3,89,101600,1223,1337,341,243,1,243,29800,100,29700,11960,50,10.3,10,10,2.4,90,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,5,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,101600,1202,1337,341,248,0,248,30200,0,30200,12120,60,10.8,10,10,3.2,90,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,10.6,8.3,86,101600,1119,1337,343,255,0,254,30500,0,30500,12180,50,9.8,10,10,4.8,90,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,10.6,8.3,86,101600,980,1337,343,216,0,216,25700,0,25700,10270,40,8.8,10,10,3.2,120,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,10.6,8.3,86,101600,794,1337,343,162,1,161,19100,100,19100,7400,40,9.3,10,10,3.2,120,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,10.6,8.3,86,101600,575,1337,343,106,0,106,12400,0,12400,4580,50,8.8,10,10,3.2,120,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,10.6,8.3,86,101700,336,1337,343,49,0,49,5800,0,5800,1990,50,9.3,10,10,2.0,90,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101700,98,1259,341,14,0,14,1600,0,1600,530,40,7.7,10,10,2.0,90,9,999999999,179,0.1310,0,88,999.000,999.0,99.0 +1978,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,8.3,86,101700,0,0,343,0,0,0,0,0,0,0,50,7.7,10,10,2.0,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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.0,8.3,89,101700,0,0,341,0,0,0,0,0,0,0,40,7.7,10,10,2.0,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101700,0,0,341,0,0,0,0,0,0,0,50,8.2,10,10,2.0,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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.0,8.3,89,101700,0,0,341,0,0,0,0,0,0,0,50,5.7,10,10,2.4,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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,8.3,89,101700,0,0,341,0,0,0,0,0,0,0,50,6.7,10,10,1.6,90,9,999999999,179,0.1770,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101700,0,0,341,0,0,0,0,0,0,0,40,8.2,10,10,1.6,90,9,999999999,179,0.1780,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101600,0,0,341,0,0,0,0,0,0,0,30,7.7,10,10,1.6,120,9,999999999,179,0.1780,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101700,0,0,341,0,0,0,0,0,0,0,40,7.7,10,10,3.2,150,9,999999999,179,0.1780,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101700,0,0,341,0,0,0,0,0,0,0,20,6.2,10,10,8.0,120,9,999999999,179,0.1780,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101700,39,813,341,8,0,8,1000,0,1000,300,30,6.2,10,10,2.4,150,9,999999999,179,0.1740,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101700,254,1336,341,39,0,39,4500,0,4500,1510,30,5.7,10,10,2.4,120,9,999999999,179,0.1740,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,101700,495,1336,341,86,1,86,10100,100,10100,3630,30,6.7,10,10,2.0,90,9,999999999,179,0.1740,0,88,999.000,999.0,99.0 +1978,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,8.9,90,101700,723,1336,344,130,0,130,15400,0,15400,5970,30,7.7,10,10,4.8,90,9,999999999,189,0.1740,0,88,999.000,999.0,99.0 +1978,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,8.9,90,101800,922,1336,344,182,1,181,21800,100,21700,8690,30,7.7,10,10,1.6,90,9,999999999,189,0.1740,0,88,999.000,999.0,99.0 +1978,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,10.6,8.9,90,101800,1079,1336,344,215,1,214,26000,100,25900,10530,40,7.7,10,10,2.4,90,9,999999999,189,0.1740,0,88,999.000,999.0,99.0 +1978,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,11.1,8.9,86,101700,1182,1336,347,262,1,262,31800,100,31700,12630,30,7.7,10,10,2.4,90,9,999999999,189,0.1740,0,88,999.000,999.0,99.0 +1978,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.1,8.9,86,101700,1224,1336,347,246,1,245,30000,100,30000,12040,40,8.8,10,10,1.6,120,9,999999999,179,0.1740,0,88,999.000,999.0,99.0 +1978,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,11.1,8.9,86,101600,1204,1336,347,239,1,238,29200,100,29100,11720,30,10.3,10,10,2.4,150,9,999999999,179,0.1740,0,88,999.000,999.0,99.0 +1978,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,10.6,8.9,90,101600,1121,1336,344,233,0,233,28200,0,28200,11370,40,12.9,10,10,3.2,120,9,999999999,189,0.1740,0,88,999.000,999.0,99.0 +1978,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,10.6,8.9,90,101500,982,1336,344,193,1,192,23200,100,23100,9350,40,12.4,10,10,12.9,150,9,999999999,189,0.1740,0,88,999.000,999.0,99.0 +1978,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,10.6,8.9,90,101400,797,1336,344,160,1,160,19000,100,19000,7380,20,6.7,10,10,4.8,120,9,999999999,189,0.1740,0,88,999.000,999.0,99.0 +1978,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,10.6,8.9,90,101400,578,1336,344,97,0,97,11500,0,11500,4270,40,8.2,10,10,8.0,150,9,999999999,189,0.1740,0,88,999.000,999.0,99.0 +1978,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,10.6,8.9,90,101400,339,1336,344,49,0,49,5800,0,5800,2000,30,9.3,10,10,2.4,90,9,999999999,189,0.1740,0,88,999.000,999.0,99.0 +1978,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,11.1,9.4,90,101300,102,1281,347,29,0,29,3200,0,3200,940,20,7.7,10,10,4.8,120,9,999999999,189,0.1740,0,88,999.000,999.0,99.0 +1978,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,9.4,90,101300,0,0,347,0,0,0,0,0,0,0,30,6.2,10,10,1.6,90,9,999999999,189,0.1780,0,88,999.000,999.0,99.0 +1978,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.7,9.4,86,101300,0,0,350,0,0,0,0,0,0,0,40,6.7,10,10,0.8,90,9,999999999,189,0.1780,0,88,999.000,999.0,99.0 +1978,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,11.7,9.4,86,101300,0,0,350,0,0,0,0,0,0,0,30,3.6,10,10,0.8,60,9,999999999,189,0.1780,0,88,999.000,999.0,99.0 +1978,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,11.7,9.4,86,101300,0,0,350,0,0,0,0,0,0,0,50,4.6,10,10,0.8,60,9,999999999,189,0.1780,0,88,999.000,999.0,99.0 +1978,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,11.7,10.0,90,101300,0,0,351,0,0,0,0,0,0,0,10,3.6,10,10,0.8,60,9,999999999,200,0.1780,0,88,999.000,999.0,99.0 +1978,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,11.7,10.6,93,101300,0,0,352,0,0,0,0,0,0,0,350,3.6,10,10,0.6,60,9,999999999,200,0.1790,0,88,999.000,999.0,99.0 +1978,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,11.7,10.6,93,101300,0,0,352,0,0,0,0,0,0,0,20,3.1,10,10,0.6,60,9,999999999,200,0.1790,0,88,999.000,999.0,99.0 +1978,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,11.7,10.0,90,101300,0,0,351,0,0,0,0,0,0,0,360,4.1,10,10,0.6,60,9,999999999,200,0.1790,0,88,999.000,999.0,99.0 +1978,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,11.7,10.0,90,101400,0,0,351,0,0,0,0,0,0,0,10,3.6,10,10,0.6,90,9,999999999,200,0.1790,0,88,999.000,999.0,99.0 +1978,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,11.1,10.0,93,101500,42,835,348,10,0,10,1200,0,1200,370,360,3.1,10,10,0.6,90,9,999999999,200,0.2640,0,88,999.000,999.0,99.0 +1978,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,11.1,10.0,93,101500,257,1336,348,44,0,44,5100,0,5100,1680,360,3.6,10,10,0.6,90,9,999999999,200,0.2640,0,88,999.000,999.0,99.0 +1978,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,9.4,90,101600,498,1336,347,81,0,81,9500,0,9500,3470,20,2.6,10,10,0.6,90,9,999999999,189,0.2640,0,88,999.000,999.0,99.0 +1978,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,11.7,10.0,90,101700,726,1336,351,129,1,129,15400,100,15400,5940,20,2.6,10,10,1.6,90,9,999999999,200,0.2640,0,88,999.000,999.0,99.0 +1978,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,12.2,10.6,90,101700,924,1336,354,178,0,178,21300,0,21300,8580,100,2.6,10,10,2.0,90,9,999999999,209,0.2640,0,88,999.000,999.0,99.0 +1978,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,12.8,11.1,90,101800,1080,1336,358,360,1,359,41800,100,41800,15520,100,3.1,10,10,2.4,120,9,999999999,209,0.2640,0,88,999.000,999.0,99.0 +1978,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,13.3,11.7,90,101800,1183,1336,361,393,1,392,46000,100,46000,16980,100,2.6,10,10,8.0,150,9,999999999,220,0.2640,0,88,999.000,999.0,99.0 +1978,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,15.0,12.2,84,101800,1226,1336,370,439,0,439,51300,0,51300,18490,80,2.6,10,10,12.9,240,9,999999999,229,0.2640,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,101800,1205,1336,332,857,618,299,89800,62200,33500,15780,100,6.2,3,3,16.1,77777,9,999999999,229,0.2640,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,101800,1123,1336,325,824,720,219,87600,73300,25800,8960,90,6.2,1,1,16.1,77777,9,999999999,229,0.2640,0,88,999.000,999.0,99.0 +1978,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,13.3,12.8,96,101700,984,1336,330,662,530,272,70500,55100,29900,8310,100,5.7,4,4,16.1,77777,9,999999999,229,0.2640,0,88,999.000,999.0,99.0 +1978,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,12.8,12.8,100,101800,799,1336,337,378,179,271,41300,18700,30000,7310,80,4.1,7,7,9.7,760,9,999999999,229,0.2640,0,88,999.000,999.0,99.0 +1978,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,12.2,12.2,100,101800,580,1336,330,308,283,186,32800,28500,20400,4060,70,4.6,6,6,1.3,610,9,999999999,229,0.2640,0,88,999.000,999.0,99.0 +1978,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,11.1,10.6,96,101900,343,1336,339,77,18,72,8400,1600,8000,1960,70,6.2,9,9,0.4,77777,9,999999999,200,0.2640,0,88,999.000,999.0,99.0 +1978,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,10.6,10.0,96,101900,105,1302,345,25,0,25,2800,0,2800,850,80,6.2,10,10,0.2,30,9,999999999,200,0.2640,0,88,999.000,999.0,99.0 +1978,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,10.6,8.9,90,101900,0,0,344,0,0,0,0,0,0,0,60,5.2,10,10,0.2,30,9,999999999,189,0.1790,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,102000,0,0,338,0,0,0,0,0,0,0,60,2.6,10,10,0.4,60,9,999999999,179,0.1790,0,88,999.000,999.0,99.0 +1978,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,8.9,8.3,96,102000,0,0,335,0,0,0,0,0,0,0,70,3.6,10,10,0.4,60,9,999999999,179,0.1790,0,88,999.000,999.0,99.0 +1978,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,8.9,8.3,96,102000,0,0,335,0,0,0,0,0,0,0,40,1.0,10,10,0.3,30,9,999999999,179,0.1790,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,102000,0,0,338,0,0,0,0,0,0,0,160,1.0,10,10,0.4,60,9,999999999,179,0.1790,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,101900,0,0,338,0,0,0,0,0,0,0,170,1.0,10,10,0.5,90,9,999999999,179,0.1790,0,88,999.000,999.0,99.0 +1978,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,10.0,9.4,96,101900,0,0,342,0,0,0,0,0,0,0,130,1.5,10,10,0.6,90,9,999999999,189,0.1790,0,88,999.000,999.0,99.0 +1978,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,9.4,9.4,100,102000,0,0,339,0,0,0,0,0,0,0,80,2.6,10,10,0.1,30,9,999999999,189,0.1790,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,101900,0,0,338,0,0,0,0,0,0,0,60,3.1,10,10,0.2,30,9,999999999,179,0.1790,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,101900,44,857,338,13,0,13,1500,0,1500,460,90,2.6,10,10,0.2,30,9,999999999,179,0.2190,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,101900,260,1335,338,33,1,32,3800,0,3800,1290,80,4.1,10,10,0.4,60,9,999999999,179,0.2190,0,88,999.000,999.0,99.0 +1978,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,10.0,9.4,96,102000,501,1335,342,57,6,55,7000,300,6800,2490,70,2.6,10,10,0.4,60,9,999999999,189,0.2190,0,88,999.000,999.0,99.0 +1978,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,10.6,9.4,93,101900,728,1335,345,198,5,195,22800,400,22600,8200,80,1.5,10,10,1.3,90,9,999999999,189,0.2190,0,88,999.000,999.0,99.0 +1978,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,11.1,10.0,93,101900,926,1335,348,290,7,285,33500,600,33100,12290,130,2.6,10,10,2.4,120,9,999999999,200,0.2190,0,88,999.000,999.0,99.0 +1978,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,12.2,10.6,90,101900,1082,1335,354,344,4,341,40200,400,39900,15010,120,3.1,10,10,2.0,120,9,999999999,209,0.2190,0,88,999.000,999.0,99.0 +1978,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,12.2,11.1,93,101900,1185,1335,355,358,4,355,42400,400,42000,15880,120,3.1,10,10,1.6,90,9,999999999,209,0.2190,0,88,999.000,999.0,99.0 +1978,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,12.8,11.1,90,101900,1227,1335,358,445,2,443,52000,200,51800,18600,100,3.1,10,10,3.2,180,9,999999999,209,0.2190,0,88,999.000,999.0,99.0 +1978,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,11.7,10.6,93,101800,1207,1335,352,248,1,247,30200,100,30100,12090,80,3.6,10,10,1.6,60,9,999999999,209,0.2190,0,88,999.000,999.0,99.0 +1978,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,11.7,10.6,93,101800,1125,1335,352,243,0,243,29300,0,29300,11770,100,3.6,10,10,1.6,90,9,999999999,209,0.2190,0,88,999.000,999.0,99.0 +1978,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,12.2,11.1,93,101700,986,1335,355,339,0,339,39000,0,39000,14290,90,5.2,10,10,1.3,90,9,999999999,209,0.2190,0,88,999.000,999.0,99.0 +1978,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,12.2,10.6,90,101700,802,1335,354,249,1,249,28600,100,28500,10290,100,4.6,10,10,1.3,90,9,999999999,209,0.2190,0,88,999.000,999.0,99.0 +1978,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,11.7,10.6,93,101700,583,1335,352,185,1,185,20900,100,20800,6930,80,3.6,10,10,0.8,60,9,999999999,209,0.2190,0,88,999.000,999.0,99.0 +1978,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,12.2,11.1,93,101700,346,1335,355,90,0,90,10100,0,10100,3220,60,3.1,10,10,0.2,0,9,999999999,209,0.2190,0,88,999.000,999.0,99.0 +1978,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,12.2,11.1,93,101700,109,1324,355,28,0,28,3100,0,3100,920,70,2.6,10,10,0.8,60,9,999999999,209,0.2190,0,88,999.000,999.0,99.0 +1978,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,12.8,11.1,90,101700,0,0,358,0,0,0,0,0,0,0,70,1.5,10,10,3.2,60,9,999999999,209,0.1790,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,101700,0,0,358,0,0,0,0,0,0,0,80,1.0,10,10,4.8,520,9,999999999,220,0.1790,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,101700,0,0,358,0,0,0,0,0,0,0,130,1.5,10,10,6.4,520,9,999999999,220,0.1790,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,101700,0,0,358,0,0,0,0,0,0,0,220,1.0,10,10,6.4,520,9,999999999,220,0.1790,0,88,999.000,999.0,99.0 +1978,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,12.2,87,101700,0,0,367,0,0,0,0,0,0,0,310,1.0,10,10,6.4,490,9,999999999,229,0.1790,0,88,999.000,999.0,99.0 +1978,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,13.3,12.2,93,101600,0,0,335,0,0,0,0,0,0,0,300,3.6,6,6,6.4,1100,9,999999999,229,0.1800,0,88,999.000,999.0,99.0 +1978,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,12.2,11.7,96,101600,0,0,321,0,0,0,0,0,0,0,330,3.1,3,3,4.8,77777,9,999999999,220,0.1800,0,88,999.000,999.0,99.0 +1978,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,12.2,11.1,93,101600,0,0,323,0,0,0,0,0,0,0,310,2.6,4,4,4.0,77777,9,999999999,209,0.1800,0,88,999.000,999.0,99.0 +1978,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,12.2,11.1,93,101600,0,0,326,0,0,0,0,0,0,0,290,1.5,5,5,3.2,77777,9,999999999,209,0.1800,0,88,999.000,999.0,99.0 +1978,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,11.7,11.1,96,101600,46,879,352,18,0,18,2000,0,2000,600,290,3.6,10,10,0.2,30,9,999999999,209,0.3960,0,88,999.000,999.0,99.0 +1978,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,11.7,11.1,96,101600,263,1335,352,73,0,73,8100,0,8100,2450,320,2.6,10,10,0.6,60,9,999999999,209,0.3960,0,88,999.000,999.0,99.0 +1978,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,12.8,11.1,90,101700,503,1335,335,206,103,167,22600,9900,18800,4510,310,3.6,9,7,2.4,90,9,999999999,209,0.3960,0,88,999.000,999.0,99.0 +1978,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,15.0,12.2,84,101700,730,1335,321,436,439,197,46100,44500,21700,4390,280,3.1,0,0,8.0,77777,9,999999999,229,0.3960,0,88,999.000,999.0,99.0 +1978,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,17.2,12.8,75,101700,928,1335,331,617,537,243,65800,55700,27000,6750,280,3.1,0,0,8.0,77777,9,999999999,229,0.3960,0,88,999.000,999.0,99.0 +1978,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,19.4,13.9,70,101700,1084,1335,354,738,533,305,78800,55600,33600,11510,130,3.1,3,2,9.7,77777,9,999999999,250,0.3960,0,88,999.000,999.0,99.0 +1978,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,19.4,13.9,70,101600,1186,1335,366,808,403,450,87700,43700,48800,21640,120,3.1,6,6,11.3,1220,9,999999999,250,0.3960,0,88,999.000,999.0,99.0 +1978,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,18.3,14.4,78,101600,1229,1335,353,846,522,365,90500,54500,40100,22360,130,4.6,7,3,11.3,77777,9,999999999,259,0.3960,0,88,999.000,999.0,99.0 +1978,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,17.2,13.9,81,101500,1208,1335,343,829,553,329,89500,57800,37000,18370,80,4.6,4,2,12.9,77777,9,999999999,250,0.3960,0,88,999.000,999.0,99.0 +1978,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,17.8,13.9,78,101500,1126,1335,342,772,577,286,83600,60300,32600,12010,120,5.7,2,1,12.9,77777,9,999999999,250,0.3960,0,88,999.000,999.0,99.0 +1978,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,18.3,13.9,75,101500,988,1335,337,670,561,255,71900,58400,28600,7820,110,6.2,0,0,11.3,77777,9,999999999,250,0.3960,0,88,999.000,999.0,99.0 +1978,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,20.0,13.9,68,101400,804,1335,363,393,268,233,42700,28500,25500,5740,120,5.7,4,4,11.3,77777,9,999999999,250,0.3960,0,88,999.000,999.0,99.0 +1978,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,20.6,12.8,61,101400,586,1335,368,249,147,185,27200,14700,20700,4430,130,5.2,5,5,11.3,77777,9,999999999,229,0.3960,0,88,999.000,999.0,99.0 +1978,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,19.4,13.9,70,101400,349,1335,370,99,28,92,10900,2500,10200,2410,180,3.6,7,7,11.3,3660,9,999999999,250,0.3960,0,88,999.000,999.0,99.0 +1978,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,20.0,13.9,68,101400,112,1335,357,23,4,23,2600,0,2600,790,190,4.1,2,2,11.3,77777,9,999999999,250,0.3960,0,88,999.000,999.0,99.0 +1978,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,13.9,73,101400,0,11,351,0,0,0,0,0,0,0,220,4.1,2,2,11.3,77777,9,999999999,250,0.1800,0,88,999.000,999.0,99.0 +1978,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,17.8,13.3,75,101400,0,0,346,0,0,0,0,0,0,0,190,3.6,2,2,11.3,77777,9,999999999,240,0.1800,0,88,999.000,999.0,99.0 +1978,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,16.7,13.3,81,101400,0,0,329,0,0,0,0,0,0,0,220,2.6,0,0,11.3,77777,9,999999999,240,0.1800,0,88,999.000,999.0,99.0 +1978,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,16.7,13.3,81,101400,0,0,329,0,0,0,0,0,0,0,220,4.6,0,0,11.3,77777,9,999999999,240,0.1800,0,88,999.000,999.0,99.0 +1978,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,16.7,13.3,81,101300,0,0,329,0,0,0,0,0,0,0,230,3.6,0,0,11.3,77777,9,999999999,240,0.1800,0,88,999.000,999.0,99.0 +1978,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,16.1,12.8,81,101300,0,0,326,0,0,0,0,0,0,0,230,4.6,0,0,11.3,77777,9,999999999,229,0.1810,0,88,999.000,999.0,99.0 +1978,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,15.6,12.8,84,101300,0,0,324,0,0,0,0,0,0,0,220,4.1,0,0,11.3,77777,9,999999999,240,0.1810,0,88,999.000,999.0,99.0 +1978,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,15.0,12.8,87,101300,0,0,321,0,0,0,0,0,0,0,220,3.1,0,0,11.3,77777,9,999999999,229,0.1810,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,101300,0,0,319,0,0,0,0,0,0,0,240,3.1,0,0,9.7,77777,9,999999999,229,0.1810,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,101300,48,900,325,21,74,14,2000,2700,1800,240,240,3.1,2,1,9.7,77777,9,999999999,229,0.0810,0,88,999.000,999.0,99.0 +1978,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,16.1,12.8,81,101300,266,1334,332,124,407,43,12900,31400,6600,800,240,2.1,2,1,9.7,77777,9,999999999,229,0.0810,0,88,999.000,999.0,99.0 +1978,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.9,13.9,73,101400,506,1334,340,316,594,92,33000,55600,11900,1780,250,1.5,8,0,9.7,77777,9,999999999,250,0.0810,0,88,999.000,999.0,99.0 +1978,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,14.4,66,101400,732,1334,363,474,582,154,49200,57500,17600,3340,270,3.1,10,2,16.1,77777,9,999999999,259,0.0810,0,88,999.000,999.0,99.0 +1978,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,101400,930,1334,377,648,669,182,68300,67600,21000,5010,260,2.6,9,2,16.1,77777,9,999999999,259,0.0810,0,88,999.000,999.0,99.0 +1978,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.6,52,101400,1085,1334,390,760,691,197,81000,70600,23400,7380,130,3.1,9,2,16.1,77777,9,999999999,270,0.0810,0,88,999.000,999.0,99.0 +1978,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,26.7,15.6,51,101300,1188,1334,397,815,588,290,85300,59200,32500,14400,130,5.2,10,3,16.1,77777,9,999999999,279,0.0810,0,88,999.000,999.0,99.0 +1978,5,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,101200,1230,1334,395,729,443,320,79000,46400,36100,19670,120,6.2,10,4,16.1,77777,9,999999999,290,0.0810,0,88,999.000,999.0,99.0 +1978,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,23.3,15.6,62,101100,1210,1334,382,647,354,326,69800,37000,36200,18340,120,8.2,10,4,16.1,77777,9,999999999,279,0.0810,0,88,999.000,999.0,99.0 +1978,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,23.3,15.6,62,101000,1128,1334,385,739,571,256,77700,57700,28800,10510,130,6.7,10,5,16.1,77777,9,999999999,279,0.0810,0,88,999.000,999.0,99.0 +1978,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,23.3,15.6,62,101000,990,1334,385,632,510,254,67900,53100,28400,7820,120,5.2,10,5,19.3,77777,9,999999999,279,0.0810,0,88,999.000,999.0,99.0 +1978,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,25.6,16.1,56,100900,806,1334,398,505,487,211,53600,49900,23400,5030,140,3.1,10,5,19.3,77777,9,999999999,279,0.0810,0,88,999.000,999.0,99.0 +1978,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,15.6,52,100900,589,1334,414,239,101,194,26200,9900,21800,5500,190,6.2,10,8,19.3,6100,9,999999999,270,0.0810,0,88,999.000,999.0,99.0 +1978,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.0,15.0,54,100900,352,1334,393,98,36,89,10800,3200,10000,2360,200,5.7,10,5,19.3,77777,9,999999999,270,0.0810,0,88,999.000,999.0,99.0 +1978,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,23.9,15.0,58,100900,115,1334,401,30,15,29,3300,900,3200,690,200,5.7,10,8,19.3,7620,9,999999999,270,0.0810,0,88,999.000,999.0,99.0 +1978,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,22.2,14.4,62,100900,0,33,392,0,0,0,0,0,0,0,190,5.2,10,8,19.3,7620,9,999999999,259,0.1810,0,88,999.000,999.0,99.0 +1978,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,21.7,14.4,64,100900,0,0,366,0,0,0,0,0,0,0,190,4.6,6,2,19.3,77777,9,999999999,259,0.1810,0,88,999.000,999.0,99.0 +1978,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,14.4,68,100900,0,0,370,0,0,0,0,0,0,0,190,4.6,6,5,19.3,7620,9,999999999,259,0.1810,0,88,999.000,999.0,99.0 +1978,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,20.0,14.4,71,100800,0,0,374,0,0,0,0,0,0,0,190,4.1,10,7,16.1,6710,9,999999999,259,0.1810,0,88,999.000,999.0,99.0 +1978,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,20.0,14.4,71,100700,0,0,367,0,0,0,0,0,0,0,200,5.2,10,5,16.1,77777,9,999999999,259,0.1810,0,88,999.000,999.0,99.0 +1978,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,21.7,13.9,61,100600,0,0,408,0,0,0,0,0,0,0,210,5.7,10,10,16.1,3050,9,999999999,250,0.1810,0,88,999.000,999.0,99.0 +1978,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,19.4,13.9,70,100500,0,0,395,0,0,0,0,0,0,0,210,6.7,10,10,16.1,3050,9,999999999,250,0.1810,0,88,999.000,999.0,99.0 +1978,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,19.4,13.9,70,100500,0,0,395,0,0,0,0,0,0,0,200,6.2,10,10,16.1,3050,9,999999999,250,0.1810,0,88,999.000,999.0,99.0 +1978,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,19.4,13.9,70,100500,0,0,395,0,0,0,0,0,0,0,220,6.7,10,10,16.1,1980,9,999999999,250,0.1810,0,88,999.000,999.0,99.0 +1978,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,19.4,14.4,73,100500,50,922,385,8,7,7,800,400,800,190,220,4.6,10,9,14.5,2130,9,999999999,259,0.1020,0,88,999.000,999.0,99.0 +1978,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,20.0,16.1,78,100600,269,1334,401,27,10,25,3000,800,2800,720,260,6.7,10,10,11.3,1250,9,999999999,279,0.1020,0,88,999.000,999.0,99.0 +1978,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,18.3,16.7,90,100600,508,1334,393,91,9,87,10600,500,10400,3710,240,4.6,10,10,12.9,2740,9,999999999,290,0.1020,0,88,999.000,999.0,99.0 +1978,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.9,17.2,90,100600,734,1334,362,337,356,141,36800,36300,16800,3050,220,7.7,5,4,8.0,77777,9,999999999,300,0.1020,0,88,999.000,999.0,99.0 +1978,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,100500,932,1334,355,643,777,100,69400,78800,14300,2830,270,8.8,1,1,16.1,77777,9,999999999,290,0.1020,0,88,999.000,999.0,99.0 +1978,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.1,15.0,68,100500,1087,1334,380,700,523,274,75700,54600,31000,10370,260,8.2,7,7,16.1,1010,9,999999999,259,0.1020,0,88,999.000,999.0,99.0 +1978,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,14.4,58,100600,1189,1334,387,734,497,290,79900,52100,33400,14990,270,11.3,6,6,16.1,1010,9,999999999,259,0.1020,0,88,999.000,999.0,99.0 +1978,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.0,13.3,48,100600,1231,1334,399,699,394,335,75500,41200,37300,20800,290,11.3,7,7,16.1,1070,9,999999999,240,0.1020,0,88,999.000,999.0,99.0 +1978,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,24.4,13.3,50,100700,1211,1334,402,604,247,380,66600,26900,42200,19540,290,9.3,8,8,16.1,1070,9,999999999,240,0.1020,0,88,999.000,999.0,99.0 +1978,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.0,6.7,31,100700,1130,1334,376,800,725,185,86000,74400,22800,7860,300,10.3,3,3,24.1,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,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,23.9,6.1,32,100900,992,1334,362,694,794,103,72000,79300,12800,2720,320,9.8,1,1,24.1,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,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,22.2,5.6,34,101100,809,1334,346,579,800,95,61800,80200,13100,2300,340,10.8,0,0,24.1,77777,9,999999999,150,0.1020,0,88,999.000,999.0,99.0 +1978,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,20.6,3.9,34,101200,591,1334,337,384,701,75,40400,67700,10400,1570,330,8.8,0,0,24.1,77777,9,999999999,139,0.1020,0,88,999.000,999.0,99.0 +1978,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,19.4,4.4,37,101300,355,1334,332,194,537,52,20400,46100,8200,1000,320,8.8,0,0,24.1,77777,9,999999999,139,0.1020,0,88,999.000,999.0,99.0 +1978,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.3,3.3,37,101400,119,1334,326,41,184,25,4400,8800,3600,440,320,5.7,0,0,24.1,77777,9,999999999,129,0.1020,0,88,999.000,999.0,99.0 +1978,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.8,3.3,38,101600,0,56,323,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,129,0.1810,0,88,999.000,999.0,99.0 +1978,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,17.2,3.3,40,101600,0,0,321,0,0,0,0,0,0,0,290,4.6,0,0,24.1,77777,9,999999999,129,0.1810,0,88,999.000,999.0,99.0 +1978,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.7,3.9,43,101700,0,0,319,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,139,0.1810,0,88,999.000,999.0,99.0 +1978,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,16.1,3.9,44,101700,0,0,317,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,139,0.1810,0,88,999.000,999.0,99.0 +1978,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.1,3.3,43,101700,0,0,316,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,129,0.1810,0,88,999.000,999.0,99.0 +1978,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.0,3.3,46,101700,0,0,311,0,0,0,0,0,0,0,270,4.6,0,0,24.1,77777,9,999999999,129,0.1820,0,88,999.000,999.0,99.0 +1978,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,15.0,3.3,46,101700,0,0,311,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,129,0.1820,0,88,999.000,999.0,99.0 +1978,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,14.4,2.2,44,101700,0,0,307,0,0,0,0,0,0,0,300,6.2,0,0,24.1,77777,9,999999999,120,0.1820,0,88,999.000,999.0,99.0 +1978,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,14.4,1.7,42,101800,0,0,307,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,120,0.1820,0,88,999.000,999.0,99.0 +1978,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,14.4,2.2,44,101800,52,922,307,24,86,16,2300,3200,2100,280,280,5.7,0,0,24.1,77777,9,999999999,120,0.0920,0,88,999.000,999.0,99.0 +1978,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,3.3,48,101900,272,1333,309,137,468,42,14300,36400,6900,790,290,6.2,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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,15.6,3.3,44,101900,510,1333,314,324,680,64,33900,64100,9300,1320,290,6.7,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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.2,3.3,40,101800,736,1333,321,519,781,88,55000,77600,12100,2010,280,6.2,1,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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.9,2.8,34,101800,933,1333,328,698,854,99,72400,85100,12700,2410,300,7.2,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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,20.6,2.8,31,101700,1088,1333,336,840,894,110,86900,89500,13700,3470,290,8.2,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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,22.2,3.3,29,101700,1190,1333,343,931,911,117,96100,91400,14300,4950,270,6.2,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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,23.9,3.3,26,101600,1233,1333,351,971,920,119,100000,92300,14500,6010,290,9.3,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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,24.4,3.3,25,101500,1213,1333,354,952,916,118,98200,91900,14400,5450,290,10.3,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,5,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,3.3,25,101500,1131,1333,357,877,901,113,90700,90300,14000,3970,310,7.7,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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,26.1,3.3,23,101400,994,1333,362,753,872,103,78100,87100,13100,2730,280,9.8,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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,26.1,2.2,21,101400,811,1333,361,589,822,90,63200,82600,12900,2230,290,8.8,0,0,24.1,77777,9,999999999,120,0.0920,0,88,999.000,999.0,99.0 +1978,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,26.1,3.3,23,101400,594,1333,362,395,731,71,41800,70800,10200,1530,290,6.7,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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,25.6,3.3,24,101500,358,1333,360,200,565,50,21200,48800,8100,960,270,6.2,0,0,24.1,77777,9,999999999,129,0.0920,0,88,999.000,999.0,99.0 +1978,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,23.9,3.9,27,101500,122,1333,352,44,216,25,4500,11500,3500,440,280,5.7,0,0,24.1,77777,9,999999999,139,0.0920,0,88,999.000,999.0,99.0 +1978,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,23.3,4.4,29,101600,0,78,350,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,139,0.1820,0,88,999.000,999.0,99.0 +1978,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,21.1,3.3,31,101700,0,0,338,0,0,0,0,0,0,0,20,4.1,0,0,24.1,77777,9,999999999,129,0.1820,0,88,999.000,999.0,99.0 +1978,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,20.6,2.2,30,101800,0,0,335,0,0,0,0,0,0,0,350,4.1,0,0,24.1,77777,9,999999999,129,0.1820,0,88,999.000,999.0,99.0 +1978,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,16.1,5.6,50,101900,0,0,318,0,0,0,0,0,0,0,120,3.1,0,0,24.1,77777,9,999999999,150,0.1820,0,88,999.000,999.0,99.0 +1978,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,15.0,6.1,56,101900,0,0,314,0,0,0,0,0,0,0,140,2.6,0,0,24.1,77777,9,999999999,160,0.1820,0,88,999.000,999.0,99.0 +1978,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,16.1,3.3,43,101900,0,0,316,0,0,0,0,0,0,0,340,1.0,0,0,24.1,77777,9,999999999,129,0.1830,0,88,999.000,999.0,99.0 +1978,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,15.6,3.9,46,101900,0,0,314,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,139,0.1830,0,88,999.000,999.0,99.0 +1978,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.1,3.9,44,101900,0,0,317,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,139,0.1830,0,88,999.000,999.0,99.0 +1978,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,15.6,5.0,50,102000,0,0,316,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,150,0.1830,0,88,999.000,999.0,99.0 +1978,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,15.0,6.7,58,102000,53,944,315,22,70,16,2200,2700,2000,280,260,3.1,0,0,24.1,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1978,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,16.1,7.2,56,102000,274,1332,320,135,437,46,14100,34000,7100,850,280,2.6,0,0,24.1,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1978,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,17.8,6.7,48,102000,512,1332,327,322,656,69,33300,61700,9600,1390,280,3.6,0,0,24.1,77777,9,999999999,160,0.1060,0,88,999.000,999.0,99.0 +1978,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,20.0,7.2,44,102000,738,1332,338,516,767,91,54500,76100,12300,2060,280,5.2,0,0,24.1,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1978,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,7.8,42,102000,935,1332,344,692,832,108,74100,84100,15000,3020,250,5.7,0,0,24.1,77777,9,999999999,170,0.1060,0,88,999.000,999.0,99.0 +1978,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,23.3,8.3,38,102000,1089,1332,355,829,868,119,85500,86800,14400,3610,200,3.6,0,0,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1978,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,24.4,8.3,36,101900,1191,1332,360,921,887,127,94800,88900,15100,5240,320,3.6,0,0,24.1,77777,9,999999999,179,0.1060,0,88,999.000,999.0,99.0 +1978,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,8.9,35,101900,1234,1332,367,957,893,129,98400,89500,15300,6410,290,5.2,0,0,24.1,77777,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1978,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.7,8.9,33,101800,1214,1332,379,876,824,124,90100,82600,14700,5680,300,3.1,1,1,24.1,77777,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1978,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,27.8,8.9,31,101700,1133,1332,394,542,379,219,60200,39800,26300,9300,260,5.2,3,3,24.1,77777,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1978,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,25.6,10.0,38,101700,996,1332,384,696,672,194,73600,68200,22500,5980,160,2.6,6,3,24.1,77777,9,999999999,200,0.1060,0,88,999.000,999.0,99.0 +1978,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,23.9,12.2,48,101600,813,1332,378,482,425,223,50900,43600,24300,5380,140,5.7,6,3,24.1,77777,9,999999999,229,0.1060,0,88,999.000,999.0,99.0 +1978,5,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.6,39,101600,596,1332,388,271,283,145,29500,28800,16600,3020,180,5.7,7,4,24.1,7620,9,999999999,209,0.1060,0,88,999.000,999.0,99.0 +1978,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,23.9,9.4,40,101600,361,1332,377,173,300,92,18000,25500,11100,1710,200,7.2,8,4,24.1,77777,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1978,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,21.7,8.9,44,101600,125,1332,368,34,34,31,3700,1800,3600,640,190,6.7,8,5,24.1,7620,9,999999999,189,0.1060,0,88,999.000,999.0,99.0 +1978,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.1,8.9,46,101700,1,100,365,0,0,0,0,0,0,0,200,5.2,8,5,24.1,6710,9,999999999,189,0.1830,0,88,999.000,999.0,99.0 +1978,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,20.6,8.9,47,101700,0,0,360,0,0,0,0,0,0,0,230,5.7,8,4,24.1,77777,9,999999999,189,0.1830,0,88,999.000,999.0,99.0 +1978,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.0,9.4,51,101700,0,0,358,0,0,0,0,0,0,0,240,5.7,8,4,24.1,77777,9,999999999,189,0.1830,0,88,999.000,999.0,99.0 +1978,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,19.4,8.3,49,101700,0,0,343,0,0,0,0,0,0,0,230,5.2,6,1,24.1,77777,9,999999999,179,0.1830,0,88,999.000,999.0,99.0 +1978,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,17.8,8.3,54,101800,0,0,335,0,0,0,0,0,0,0,210,4.1,6,1,24.1,77777,9,999999999,179,0.1830,0,88,999.000,999.0,99.0 +1978,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,17.8,8.3,54,101800,0,0,340,0,0,0,0,0,0,0,220,3.1,5,2,24.1,77777,9,999999999,179,0.1830,0,88,999.000,999.0,99.0 +1978,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,15.6,8.3,62,101700,0,0,325,0,0,0,0,0,0,0,180,2.6,4,1,24.1,77777,9,999999999,179,0.1830,0,88,999.000,999.0,99.0 +1978,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,15.6,7.8,60,101700,0,0,325,0,0,0,0,0,0,0,230,4.1,6,1,24.1,77777,9,999999999,170,0.1830,0,88,999.000,999.0,99.0 +1978,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,15.0,8.3,65,101700,0,0,323,0,0,0,0,0,0,0,250,2.1,6,1,24.1,77777,9,999999999,179,0.1830,0,88,999.000,999.0,99.0 +1978,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,15.0,8.3,65,101800,55,966,333,19,0,19,2100,0,2100,640,250,4.1,10,4,20.9,77777,9,999999999,179,0.4090,0,88,999.000,999.0,99.0 +1978,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,16.1,8.3,60,101800,276,1332,344,80,25,75,8800,2100,8400,1880,240,3.6,10,6,20.9,7010,9,999999999,179,0.4090,0,88,999.000,999.0,99.0 +1978,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,17.2,8.9,58,101800,514,1332,354,226,134,174,24400,13000,19400,4050,240,4.6,10,7,20.9,7010,9,999999999,189,0.4090,0,88,999.000,999.0,99.0 +1978,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,6.7,45,101900,739,1332,365,238,66,201,26200,6600,22500,6480,230,5.7,10,8,20.9,7620,9,999999999,160,0.4090,0,88,999.000,999.0,99.0 +1978,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,21.1,4.4,34,101900,936,1332,381,417,112,339,46000,11500,37900,11850,230,5.7,10,9,24.1,7620,9,999999999,139,0.4090,0,88,999.000,999.0,99.0 +1978,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,22.8,6.1,34,101900,1091,1332,392,402,80,336,44400,8200,37600,14020,220,7.2,10,9,24.1,7620,9,999999999,160,0.4090,0,88,999.000,999.0,99.0 +1978,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,23.9,7.2,34,101900,1193,1332,411,342,1,341,40600,100,40500,15470,240,6.7,10,10,24.1,7620,9,999999999,170,0.4090,0,88,999.000,999.0,99.0 +1978,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,23.9,8.9,39,101900,1235,1332,394,825,358,492,89400,38800,53300,28580,220,7.2,10,8,24.1,7620,9,999999999,189,0.4090,0,88,999.000,999.0,99.0 +1978,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,22.8,10.6,46,101900,1215,1332,398,451,62,394,49800,6400,44000,19730,200,7.2,10,9,24.1,7620,9,999999999,209,0.4090,0,88,999.000,999.0,99.0 +1978,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,21.7,11.7,53,101900,1134,1332,394,532,68,474,58600,7100,52600,19810,210,8.2,10,9,24.1,7620,9,999999999,220,0.4090,0,88,999.000,999.0,99.0 +1978,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,12.8,61,101900,998,1332,400,330,40,299,36300,4100,33200,11410,210,6.2,10,10,24.1,2440,9,999999999,240,0.4090,0,88,999.000,999.0,99.0 +1978,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,12.8,66,101800,815,1332,394,229,26,213,25200,2600,23600,7250,190,6.2,10,10,24.1,1100,9,999999999,240,0.4090,0,88,999.000,999.0,99.0 +1978,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,18.9,13.9,73,101800,599,1332,393,116,4,114,13600,300,13500,4950,180,5.2,10,10,24.1,760,9,999999999,250,0.4090,0,88,999.000,999.0,99.0 +1978,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,17.8,14.4,81,101800,364,1332,387,53,0,53,6200,0,6200,2180,170,3.6,10,10,20.9,760,9,999999999,259,0.4090,0,88,999.000,999.0,99.0 +1978,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,17.2,14.4,84,101800,128,1332,384,15,0,15,1800,0,1800,570,180,4.6,10,10,16.1,370,9,999999999,259,0.4090,0,88,999.000,999.0,99.0 +1978,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,17.2,14.4,84,101800,1,122,384,0,0,0,0,0,0,0,170,3.6,10,10,16.1,1520,9,999999999,259,0.4090,0,88,999.000,999.0,99.0 +1978,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,16.7,14.4,87,101800,0,0,382,0,0,0,0,0,0,0,150,3.1,10,10,16.1,760,9,999999999,259,0.1830,0,88,999.000,999.0,99.0 +1978,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,15.6,13.3,87,101700,0,0,374,0,0,0,0,0,0,0,100,4.1,10,10,9.7,210,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1978,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,15.0,12.8,87,101700,0,0,371,0,0,0,0,0,0,0,90,4.1,10,10,8.0,1160,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,101700,0,0,368,0,0,0,0,0,0,0,70,5.2,10,10,8.0,1070,9,999999999,229,0.1830,0,88,999.000,999.0,99.0 +1978,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,14.4,12.8,90,101700,0,0,368,0,0,0,0,0,0,0,60,4.6,10,10,6.4,520,9,999999999,229,0.1840,0,88,999.000,999.0,99.0 +1978,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,13.9,12.2,90,101600,0,0,364,0,0,0,0,0,0,0,60,6.2,10,10,6.4,210,9,999999999,229,0.1840,0,88,999.000,999.0,99.0 +1978,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,13.9,12.2,90,101600,0,0,364,0,0,0,0,0,0,0,60,6.2,10,10,6.4,210,9,999999999,229,0.1840,0,88,999.000,999.0,99.0 +1978,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,13.9,12.8,93,101600,0,0,365,0,0,0,0,0,0,0,60,6.2,10,10,3.2,210,9,999999999,229,0.1840,0,88,999.000,999.0,99.0 +1978,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,13.9,12.8,93,101500,57,988,365,8,1,8,1000,0,1000,310,60,7.2,10,10,4.8,210,9,999999999,229,0.0780,0,88,999.000,999.0,99.0 +1978,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,13.9,12.8,93,101500,279,1331,365,40,2,39,4600,0,4600,1550,60,7.2,10,10,2.4,120,9,999999999,229,0.0780,0,88,999.000,999.0,99.0 +1978,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,13.3,12.8,96,101400,516,1331,362,95,1,94,11000,100,11000,3980,60,8.2,10,10,3.2,60,9,999999999,229,0.0780,0,88,999.000,999.0,99.0 +1978,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,13.9,13.3,96,101400,741,1331,366,162,1,162,19100,100,19000,7210,50,7.7,10,10,3.2,60,9,999999999,240,0.0780,0,88,999.000,999.0,99.0 +1978,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,13.9,13.3,96,101300,937,1331,366,200,1,199,23800,100,23700,9460,50,9.3,10,10,1.6,60,9,999999999,240,0.0780,0,88,999.000,999.0,99.0 +1978,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,13.9,12.8,93,101300,1092,1331,365,225,1,224,27200,100,27100,10970,50,10.3,10,10,1.3,60,9,999999999,229,0.0780,0,88,999.000,999.0,99.0 +1978,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,13.9,12.8,93,101400,1194,1331,365,240,0,240,29300,0,29300,11790,60,8.8,10,10,1.6,60,9,999999999,229,0.0780,0,88,999.000,999.0,99.0 +1978,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,13.9,13.3,96,101300,1236,1331,366,262,0,261,31800,0,31800,12710,50,7.7,10,10,0.8,60,9,999999999,240,0.0780,0,88,999.000,999.0,99.0 +1978,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,14.4,13.3,93,101400,1216,1331,368,254,1,253,30900,100,30900,12350,20,7.7,10,10,3.2,90,9,999999999,240,0.0780,0,88,999.000,999.0,99.0 +1978,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,13.9,13.3,96,101400,1136,1331,366,233,0,233,28200,0,28200,11410,40,7.2,10,10,3.2,150,9,999999999,240,0.0780,0,88,999.000,999.0,99.0 +1978,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,14.4,13.9,96,101400,999,1331,369,209,1,208,25000,100,25000,10060,40,7.2,10,10,3.2,90,9,999999999,250,0.0780,0,88,999.000,999.0,99.0 +1978,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,14.4,13.9,96,101400,817,1331,369,162,1,161,19200,100,19200,7510,30,7.7,10,10,2.4,90,9,999999999,250,0.0780,0,88,999.000,999.0,99.0 +1978,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,14.4,14.4,100,101400,601,1331,370,118,1,117,13800,100,13700,5060,30,7.7,10,10,2.8,120,9,999999999,259,0.0780,0,88,999.000,999.0,99.0 +1978,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,15.0,14.4,97,101400,367,1331,373,63,1,63,7400,0,7300,2520,50,7.7,10,10,2.4,90,9,999999999,259,0.0780,0,88,999.000,999.0,99.0 +1978,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,15.0,14.4,97,101400,131,1331,373,18,1,18,2100,0,2100,670,30,6.7,10,10,2.4,120,9,999999999,259,0.0780,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,101500,1,144,372,1,0,1,0,0,0,0,30,5.2,10,10,8.0,240,9,999999999,250,0.0780,0,88,999.000,999.0,99.0 +1978,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,15.0,13.3,90,101600,0,0,371,0,0,0,0,0,0,0,30,6.2,10,10,12.9,210,9,999999999,240,0.1840,0,88,999.000,999.0,99.0 +1978,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.0,13.3,90,101600,0,0,371,0,0,0,0,0,0,0,30,6.2,10,10,11.3,150,9,999999999,240,0.1840,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,101600,0,0,372,0,0,0,0,0,0,0,10,4.1,10,10,2.4,120,9,999999999,250,0.1840,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,101700,0,0,372,0,0,0,0,0,0,0,20,4.6,10,10,1.6,120,9,999999999,250,0.1840,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,101700,0,0,372,0,0,0,0,0,0,0,30,2.6,10,10,4.8,120,9,999999999,250,0.1840,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,101700,0,0,372,0,0,0,0,0,0,0,360,4.1,10,10,6.4,120,9,999999999,250,0.1840,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,101800,0,0,372,0,0,0,0,0,0,0,10,4.6,10,10,8.0,90,9,999999999,250,0.1840,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,101900,0,0,372,0,0,0,0,0,0,0,30,5.7,10,10,6.4,90,9,999999999,250,0.1840,0,88,999.000,999.0,99.0 +1978,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,14.4,13.3,93,102000,59,987,368,18,0,18,2000,0,2000,610,50,5.2,10,10,2.4,30,9,999999999,240,0.3130,0,88,999.000,999.0,99.0 +1978,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,13.9,12.8,93,102100,281,1331,365,70,0,70,7900,0,7900,2460,10,3.6,10,10,2.4,30,9,999999999,240,0.3130,0,88,999.000,999.0,99.0 +1978,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,13.9,13.3,96,102100,518,1331,366,140,0,140,15900,0,15900,5380,40,6.2,10,10,2.4,60,9,999999999,240,0.3130,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,102200,742,1331,372,231,1,231,26400,100,26400,9340,20,4.1,10,10,6.4,120,9,999999999,250,0.3130,0,88,999.000,999.0,99.0 +1978,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,16.1,14.4,90,102200,939,1331,378,310,1,310,35800,100,35700,13120,30,4.6,10,10,6.4,120,9,999999999,259,0.3130,0,88,999.000,999.0,99.0 +1978,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,17.2,15.0,87,102300,1093,1331,374,548,99,467,60400,10300,51900,18410,40,5.7,10,9,8.0,120,9,999999999,270,0.3130,0,88,999.000,999.0,99.0 +1978,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,17.2,15.0,87,102400,1195,1331,385,284,5,280,34300,400,33900,13350,40,7.2,10,10,8.0,120,9,999999999,270,0.3130,0,88,999.000,999.0,99.0 +1978,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,15.6,13.3,87,102400,1237,1331,374,356,5,352,42500,400,42100,15990,60,7.2,10,10,0.8,90,9,999999999,250,0.3130,0,88,999.000,999.0,99.0 +1978,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,15.6,13.9,90,102400,1217,1331,375,346,2,345,41300,200,41100,15690,60,3.1,10,10,4.8,90,9,999999999,250,0.3130,0,88,999.000,999.0,99.0 +1978,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,15.6,13.3,87,102400,1137,1331,374,313,1,312,37100,100,37000,14320,30,5.2,10,10,4.8,90,9,999999999,250,0.3130,0,88,999.000,999.0,99.0 +1978,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,15.6,13.3,87,102400,1001,1331,374,348,5,345,40200,500,39900,14590,40,5.7,10,10,6.4,150,9,999999999,250,0.3130,0,88,999.000,999.0,99.0 +1978,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,15.0,12.8,87,102400,819,1331,371,221,0,221,25600,0,25600,9600,40,5.2,10,10,6.4,120,9,999999999,240,0.3130,0,88,999.000,999.0,99.0 +1978,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,15.0,12.8,87,102400,604,1331,371,147,0,147,16900,0,16900,6050,40,5.2,10,10,8.0,120,9,999999999,240,0.3130,0,88,999.000,999.0,99.0 +1978,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,15.0,12.8,87,102500,369,1331,371,84,1,83,9500,100,9500,3140,80,4.6,10,10,1.6,30,9,999999999,240,0.3130,0,88,999.000,999.0,99.0 +1978,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,13.9,12.2,90,102500,134,1331,364,19,0,19,2200,0,2200,710,60,4.1,10,10,1.3,60,9,999999999,229,0.3130,0,88,999.000,999.0,99.0 +1978,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,13.3,12.2,93,102500,1,166,361,1,0,1,0,0,0,0,70,3.6,10,10,0.6,30,9,999999999,229,0.3130,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,102500,0,0,358,0,0,0,0,0,0,0,60,4.6,10,10,0.4,30,9,999999999,220,0.1840,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,102500,0,0,358,0,0,0,0,0,0,0,50,4.1,10,10,0.2,30,9,999999999,220,0.1840,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,102600,0,0,358,0,0,0,0,0,0,0,10,3.6,10,10,0.8,60,9,999999999,220,0.1840,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,102500,0,0,358,0,0,0,0,0,0,0,40,5.2,10,10,0.8,60,9,999999999,220,0.1840,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,102500,0,0,358,0,0,0,0,0,0,0,40,3.6,10,10,0.8,30,9,999999999,220,0.1850,0,88,999.000,999.0,99.0 +1978,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,11.7,93,102500,0,0,358,0,0,0,0,0,0,0,50,4.1,10,10,0.8,90,9,999999999,220,0.1850,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,102500,0,0,358,0,0,0,0,0,0,0,20,3.6,10,10,0.8,60,9,999999999,220,0.1850,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,102500,0,0,358,0,0,0,0,0,0,0,40,4.1,10,10,0.8,60,9,999999999,220,0.1850,0,88,999.000,999.0,99.0 +1978,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.8,11.7,93,102500,60,1009,358,11,0,11,1300,0,1300,410,360,3.1,10,10,0.8,60,9,999999999,220,0.0980,0,88,999.000,999.0,99.0 +1978,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.8,11.7,93,102600,283,1331,358,43,1,43,5000,0,5000,1690,50,3.1,10,10,1.6,60,9,999999999,220,0.0980,0,88,999.000,999.0,99.0 +1978,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,12.2,96,102600,520,1331,359,104,1,104,12100,100,12100,4330,20,2.6,10,10,2.4,120,9,999999999,229,0.0980,0,88,999.000,999.0,99.0 +1978,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,13.3,12.8,96,102700,744,1331,362,239,0,238,27100,0,27100,9540,60,2.6,10,10,2.8,120,9,999999999,229,0.0980,0,88,999.000,999.0,99.0 +1978,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,13.3,12.2,93,102700,940,1331,361,327,0,327,37500,0,37500,13590,100,4.1,10,10,1.3,60,9,999999999,229,0.0980,0,88,999.000,999.0,99.0 +1978,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,13.3,12.2,93,102700,1094,1331,361,221,1,220,26700,100,26700,10810,100,4.6,10,10,0.8,60,9,999999999,229,0.0980,0,88,999.000,999.0,99.0 +1978,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,13.3,12.2,93,102700,1196,1331,361,406,1,405,47600,100,47500,17430,80,3.6,10,10,3.2,120,9,999999999,229,0.0980,0,88,999.000,999.0,99.0 +1978,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,14.4,13.3,93,102600,1238,1331,368,420,2,418,49400,200,49200,18010,90,4.1,10,10,6.4,120,9,999999999,240,0.0980,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,102600,1219,1331,372,439,1,439,51400,100,51300,18470,90,4.1,10,10,6.4,460,9,999999999,250,0.0980,0,88,999.000,999.0,99.0 +1978,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,15.0,13.3,90,102500,1138,1331,344,621,175,472,67700,18600,51800,19420,140,3.6,7,6,6.4,120,9,999999999,240,0.0980,0,88,999.000,999.0,99.0 +1978,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,15.0,13.3,90,102500,1003,1331,332,701,745,141,73900,74900,17300,4140,120,4.1,3,2,16.1,77777,9,999999999,240,0.0980,0,88,999.000,999.0,99.0 +1978,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,15.0,13.3,90,102500,821,1331,338,389,403,141,43200,41600,17500,3310,90,4.6,4,4,19.3,77777,9,999999999,240,0.0980,0,88,999.000,999.0,99.0 +1978,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,15.0,12.8,87,102400,606,1331,338,272,292,140,29800,29800,16200,2900,120,4.1,5,4,8.0,77777,9,999999999,240,0.0980,0,88,999.000,999.0,99.0 +1978,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,14.4,12.2,87,102400,372,1331,332,197,389,89,20700,33500,11300,1650,110,3.6,3,3,6.4,77777,9,999999999,229,0.0980,0,88,999.000,999.0,99.0 +1978,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,13.3,11.7,90,102300,137,1331,319,45,178,28,4900,9300,3900,490,90,4.1,3,1,16.1,77777,9,999999999,220,0.0980,0,88,999.000,999.0,99.0 +1978,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,12.8,11.7,93,102300,2,188,332,0,1,0,0,0,0,0,70,3.1,6,6,1.3,60,9,999999999,220,0.0980,0,88,999.000,999.0,99.0 +1978,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,12.8,12.2,96,102300,0,0,359,0,0,0,0,0,0,0,120,3.1,10,10,0.6,60,9,999999999,229,0.1850,0,88,999.000,999.0,99.0 +1978,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,12.8,12.2,96,102200,0,0,359,0,0,0,0,0,0,0,100,2.1,10,10,0.4,60,9,999999999,229,0.1850,0,88,999.000,999.0,99.0 +1978,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,12.8,12.2,96,102200,0,0,359,0,0,0,0,0,0,0,90,1.5,10,10,0.2,30,9,999999999,229,0.1850,0,88,999.000,999.0,99.0 +1978,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,12.8,12.2,96,102200,0,0,359,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,229,0.1850,0,88,999.000,999.0,99.0 +1978,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,13.3,12.8,96,102200,0,0,362,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,229,0.1850,0,88,999.000,999.0,99.0 +1978,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,13.3,12.8,96,102100,0,0,362,0,0,0,0,0,0,0,0,0.0,10,10,0.2,30,9,999999999,229,0.1850,0,88,999.000,999.0,99.0 +1978,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,13.3,12.2,93,102100,0,0,344,0,0,0,0,0,0,0,140,2.1,8,8,0.4,30,9,999999999,229,0.1850,0,88,999.000,999.0,99.0 +1978,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,13.3,12.2,93,102100,0,0,327,0,0,0,0,0,0,0,170,2.6,3,3,1.6,77777,9,999999999,229,0.1850,0,88,999.000,999.0,99.0 +1978,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,12.8,96,102100,62,1031,314,25,74,18,2500,2600,2300,310,170,1.0,0,0,3.2,77777,9,999999999,229,0.1160,0,88,999.000,999.0,99.0 +1978,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.9,13.3,96,102100,285,1330,317,139,421,49,14400,33200,7300,900,180,2.6,0,0,8.0,77777,9,999999999,240,0.1160,0,88,999.000,999.0,99.0 +1978,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,15.0,15.0,100,102100,521,1330,324,321,632,74,34100,60300,10400,1500,180,4.1,0,0,16.1,77777,9,999999999,270,0.1160,0,88,999.000,999.0,99.0 +1978,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.7,16.1,97,102000,745,1330,332,511,739,96,53600,73300,12500,2150,160,2.6,0,0,19.3,77777,9,999999999,290,0.1160,0,88,999.000,999.0,99.0 +1978,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,18.3,17.8,97,102000,941,1330,342,677,795,114,72100,80300,15200,3170,160,3.1,0,0,19.3,77777,9,999999999,320,0.1160,0,88,999.000,999.0,99.0 +1978,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,20.0,18.9,93,102000,1095,1330,351,815,836,126,83900,83600,14900,3780,230,3.6,0,0,19.3,77777,9,999999999,340,0.1160,0,88,999.000,999.0,99.0 +1978,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.7,19.4,87,101900,1196,1330,360,902,854,133,92700,85600,15500,5540,140,3.6,0,0,19.3,77777,9,999999999,350,0.1160,0,88,999.000,999.0,99.0 +1978,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,23.3,19.4,79,101900,1239,1330,368,940,862,136,96500,86400,15800,6890,110,5.2,0,0,19.3,77777,9,999999999,350,0.1160,0,88,999.000,999.0,99.0 +1978,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,18.9,74,101800,1220,1330,386,907,740,228,97100,75700,27500,13340,120,6.7,3,3,19.3,77777,9,999999999,340,0.1160,0,88,999.000,999.0,99.0 +1978,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,23.9,18.3,71,101800,1140,1330,385,764,570,275,83100,59700,31900,12120,120,6.7,3,3,19.3,77777,9,999999999,329,0.1160,0,88,999.000,999.0,99.0 +1978,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,23.3,17.8,71,101700,1004,1330,385,652,560,229,70900,58400,26700,7210,130,4.6,5,4,19.3,77777,9,999999999,320,0.1160,0,88,999.000,999.0,99.0 +1978,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,23.9,18.3,71,101700,823,1330,395,419,323,219,45800,34500,24400,5420,190,6.7,6,6,19.3,7620,9,999999999,329,0.1160,0,88,999.000,999.0,99.0 +1978,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,25.0,18.3,67,101700,608,1330,394,364,503,134,38900,49700,16200,2690,200,6.2,4,4,19.3,77777,9,999999999,329,0.1160,0,88,999.000,999.0,99.0 +1978,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,23.9,18.3,71,101700,375,1330,395,148,188,95,15800,16600,11100,1830,190,6.2,6,6,24.1,7620,9,999999999,329,0.1160,0,88,999.000,999.0,99.0 +1978,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,101700,140,1330,382,43,95,34,4700,4700,4200,610,190,6.2,5,5,24.1,77777,9,999999999,320,0.1160,0,88,999.000,999.0,99.0 +1978,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,21.7,18.3,81,101700,2,211,377,0,1,0,0,0,0,0,230,5.2,4,4,24.1,77777,9,999999999,329,0.1160,0,88,999.000,999.0,99.0 +1978,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.8,84,101800,0,0,368,0,0,0,0,0,0,0,200,5.2,3,3,24.1,77777,9,999999999,320,0.1850,0,88,999.000,999.0,99.0 +1978,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.8,87,101800,0,0,368,0,0,0,0,0,0,0,220,5.7,4,4,24.1,77777,9,999999999,320,0.1850,0,88,999.000,999.0,99.0 +1978,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,19.4,17.2,87,101800,0,0,370,0,0,0,0,0,0,0,220,4.1,6,6,16.1,3050,9,999999999,300,0.1850,0,88,999.000,999.0,99.0 +1978,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,18.9,17.2,90,101800,0,0,362,0,0,0,0,0,0,0,230,3.6,4,4,19.3,77777,9,999999999,309,0.1850,0,88,999.000,999.0,99.0 +1978,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,17.2,90,101800,0,0,362,0,0,0,0,0,0,0,250,6.2,4,4,19.3,77777,9,999999999,309,0.1860,0,88,999.000,999.0,99.0 +1978,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.9,16.7,87,101800,0,0,350,0,0,0,0,0,0,0,220,5.7,1,1,19.3,77777,9,999999999,300,0.1860,0,88,999.000,999.0,99.0 +1978,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.9,16.7,87,101700,0,0,343,0,0,0,0,0,0,0,230,5.2,0,0,24.1,77777,9,999999999,300,0.1860,0,88,999.000,999.0,99.0 +1978,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,16.7,90,101700,0,0,355,0,0,0,0,0,0,0,250,4.1,3,3,24.1,77777,9,999999999,290,0.1860,0,88,999.000,999.0,99.0 +1978,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,18.3,16.7,90,101800,63,1030,382,21,4,21,2400,0,2400,700,240,4.1,10,9,24.1,150,9,999999999,300,0.0870,0,88,999.000,999.0,99.0 +1978,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,18.9,17.2,90,101800,286,1330,386,78,30,72,8600,2500,8100,1850,240,5.7,10,9,24.1,180,9,999999999,309,0.0870,0,88,999.000,999.0,99.0 +1978,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.9,17.8,93,101800,523,1330,378,194,104,153,21200,10200,17200,3570,240,5.7,8,8,19.3,270,9,999999999,320,0.0870,0,88,999.000,999.0,99.0 +1978,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.8,87,101700,746,1330,365,511,664,138,53600,66200,16400,3100,240,6.2,3,3,19.3,77777,9,999999999,320,0.0870,0,88,999.000,999.0,99.0 +1978,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.1,18.3,84,101700,942,1330,356,683,827,96,70800,82500,12300,2430,220,6.2,0,0,19.3,77777,9,999999999,329,0.0870,0,88,999.000,999.0,99.0 +1978,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,22.8,18.9,79,101600,1095,1330,365,816,861,107,84500,86200,13400,3510,250,6.2,0,0,19.3,77777,9,999999999,340,0.0870,0,88,999.000,999.0,99.0 +1978,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,24.4,18.3,69,101600,1197,1330,372,910,884,113,93900,88700,13900,5030,250,7.7,0,0,19.3,77777,9,999999999,329,0.0870,0,88,999.000,999.0,99.0 +1978,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,26.1,17.8,60,101600,1240,1330,380,952,896,115,98100,89900,14100,6180,220,7.2,0,0,19.3,77777,9,999999999,309,0.0870,0,88,999.000,999.0,99.0 +1978,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.3,18.9,57,101500,1221,1330,392,927,884,114,95600,88700,14000,5590,180,5.7,0,0,19.3,77777,9,999999999,340,0.0870,0,88,999.000,999.0,99.0 +1978,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,30.0,18.3,50,101500,1141,1330,401,858,872,109,88700,87400,13500,4040,200,8.2,0,0,19.3,77777,9,999999999,329,0.0870,0,88,999.000,999.0,99.0 +1978,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,18.9,53,101500,1006,1330,398,738,843,101,76700,84200,12800,2790,200,7.7,0,0,19.3,77777,9,999999999,340,0.0870,0,88,999.000,999.0,99.0 +1978,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,28.3,18.9,57,101400,825,1330,392,583,799,88,62800,80500,12800,2240,200,7.7,0,0,19.3,77777,9,999999999,340,0.0870,0,88,999.000,999.0,99.0 +1978,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,27.2,18.9,60,101400,611,1330,387,398,718,70,42400,70000,10200,1540,190,7.7,0,0,19.3,77777,9,999999999,329,0.0870,0,88,999.000,999.0,99.0 +1978,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,25.6,18.3,64,101500,377,1330,378,211,571,50,21900,50300,7700,1000,200,7.2,0,0,16.1,77777,9,999999999,320,0.0870,0,88,999.000,999.0,99.0 +1978,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,23.9,18.3,71,101400,143,1330,369,54,258,27,5600,15000,4000,490,190,5.7,0,0,16.1,77777,9,999999999,329,0.0870,0,88,999.000,999.0,99.0 +1978,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,23.3,18.3,74,101400,3,233,366,2,5,1,0,0,0,0,200,5.2,0,0,16.1,77777,9,999999999,329,0.0870,0,88,999.000,999.0,99.0 +1978,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,22.2,17.8,76,101500,0,0,360,0,0,0,0,0,0,0,220,4.1,0,0,16.1,77777,9,999999999,309,0.1860,0,88,999.000,999.0,99.0 +1978,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,20.6,17.8,84,101500,0,0,353,0,0,0,0,0,0,0,200,4.1,0,0,16.1,77777,9,999999999,320,0.1860,0,88,999.000,999.0,99.0 +1978,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,20.0,17.8,87,101500,0,0,350,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,309,0.1860,0,88,999.000,999.0,99.0 +1978,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,18.9,16.7,87,101500,0,0,343,0,0,0,0,0,0,0,200,4.1,0,0,16.1,77777,9,999999999,300,0.1860,0,88,999.000,999.0,99.0 +1978,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,18.9,17.2,90,101400,0,0,344,0,0,0,0,0,0,0,230,3.6,0,0,12.9,77777,9,999999999,300,0.1860,0,88,999.000,999.0,99.0 +1978,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,18.3,16.7,90,101400,0,0,340,0,0,0,0,0,0,0,230,4.6,0,0,12.9,77777,9,999999999,290,0.1860,0,88,999.000,999.0,99.0 +1978,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,18.3,16.1,87,101300,0,0,340,0,0,0,0,0,0,0,230,4.1,0,0,11.3,77777,9,999999999,279,0.1860,0,88,999.000,999.0,99.0 +1978,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,17.8,16.1,90,101300,0,0,338,0,0,0,0,0,0,0,260,3.6,0,0,9.7,77777,9,999999999,290,0.1860,0,88,999.000,999.0,99.0 +1978,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.1,87,101300,65,1052,340,23,39,19,2400,1700,2300,390,200,4.1,0,0,6.4,77777,9,999999999,279,0.1670,0,88,999.000,999.0,99.0 +1978,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,18.3,16.7,90,101300,288,1329,352,112,143,81,12200,11600,9700,1750,210,3.6,2,2,6.4,77777,9,999999999,290,0.1670,0,88,999.000,999.0,99.0 +1978,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,18.9,17.2,90,101300,524,1329,344,305,543,91,31800,51400,11600,1790,220,5.2,0,0,9.7,77777,9,999999999,300,0.1670,0,88,999.000,999.0,99.0 +1978,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,19.4,17.8,90,101300,747,1329,347,496,668,120,52500,67000,14800,2750,230,3.6,0,0,9.7,77777,9,999999999,309,0.1670,0,88,999.000,999.0,99.0 +1978,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.6,18.3,87,101200,942,1329,353,665,735,142,71200,75300,17800,4130,200,3.1,0,0,9.7,77777,9,999999999,329,0.1670,0,88,999.000,999.0,99.0 +1978,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.1,19.4,90,101200,1096,1329,357,801,778,158,84200,78300,19400,5670,180,4.6,0,0,9.7,77777,9,999999999,350,0.1670,0,88,999.000,999.0,99.0 +1978,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,21.7,19.4,87,101200,1198,1329,360,894,804,167,94500,81200,21200,8400,160,3.6,0,0,11.3,77777,9,999999999,350,0.1670,0,88,999.000,999.0,99.0 +1978,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,22.2,18.3,79,101200,1241,1329,361,939,822,171,99700,83100,22000,10490,130,5.7,0,0,11.3,77777,9,999999999,329,0.1670,0,88,999.000,999.0,99.0 +1978,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,23.9,18.9,74,101100,1222,1329,377,879,789,152,94200,80100,20400,8630,120,6.7,1,1,12.9,77777,9,999999999,340,0.1670,0,88,999.000,999.0,99.0 +1978,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,25.0,18.3,67,101100,1142,1329,382,758,674,178,81800,69400,22100,7960,120,6.7,1,1,16.1,77777,9,999999999,329,0.1670,0,88,999.000,999.0,99.0 +1978,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,25.6,17.8,62,101000,1007,1329,384,677,666,172,72300,68000,20600,5520,130,6.2,3,1,16.1,77777,9,999999999,309,0.1670,0,88,999.000,999.0,99.0 +1978,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,26.1,17.2,58,101000,827,1329,386,538,637,142,57000,64300,16900,3490,130,6.2,3,1,16.1,77777,9,999999999,300,0.1670,0,88,999.000,999.0,99.0 +1978,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,25.0,17.8,64,101000,613,1329,374,372,573,109,39000,55800,13300,2240,110,3.6,2,0,16.1,77777,9,999999999,309,0.1670,0,88,999.000,999.0,99.0 +1978,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,23.3,17.8,71,101000,380,1329,366,194,415,76,20800,36200,10500,1380,130,4.1,2,0,16.1,77777,9,999999999,309,0.1670,0,88,999.000,999.0,99.0 +1978,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,22.2,17.2,73,101100,146,1329,367,45,76,37,5000,4400,4500,770,160,4.6,4,1,16.1,77777,9,999999999,300,0.1670,0,88,999.000,999.0,99.0 +1978,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,22.2,17.2,73,101100,3,233,372,0,0,0,0,0,0,0,160,3.1,3,2,16.1,77777,9,999999999,300,0.1670,0,88,999.000,999.0,99.0 +1978,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,21.7,15.6,68,101200,0,0,355,0,0,0,0,0,0,0,180,2.1,2,0,16.1,77777,9,999999999,279,0.1860,0,88,999.000,999.0,99.0 +1978,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,19.4,16.1,81,101200,0,0,345,0,0,0,0,0,0,0,150,2.1,2,0,16.1,77777,9,999999999,279,0.1860,0,88,999.000,999.0,99.0 +1978,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,20.0,16.1,78,101200,0,0,348,0,0,0,0,0,0,0,170,2.1,0,0,16.1,77777,9,999999999,279,0.1860,0,88,999.000,999.0,99.0 +1978,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,19.4,16.1,81,101200,0,0,345,0,0,0,0,0,0,0,120,0.5,0,0,16.1,77777,9,999999999,279,0.1860,0,88,999.000,999.0,99.0 +1978,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,18.3,15.6,84,101200,0,0,339,0,0,0,0,0,0,0,70,1.5,0,0,16.1,77777,9,999999999,279,0.1870,0,88,999.000,999.0,99.0 +1978,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,17.2,15.0,87,101300,0,0,334,0,0,0,0,0,0,0,50,2.6,0,0,12.9,77777,9,999999999,270,0.1870,0,88,999.000,999.0,99.0 +1978,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,16.7,14.4,87,101300,0,0,371,0,0,0,0,0,0,0,50,3.1,9,9,6.4,90,9,999999999,259,0.1870,0,88,999.000,999.0,99.0 +1978,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,15.6,13.9,90,101200,0,0,375,0,0,0,0,0,0,0,20,3.6,10,10,0.8,60,9,999999999,250,0.1870,0,88,999.000,999.0,99.0 +1978,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,15.6,13.9,90,101300,66,1052,375,16,0,16,1800,0,1800,570,30,3.6,10,10,1.3,60,9,999999999,250,0.2120,0,88,999.000,999.0,99.0 +1978,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,15.0,13.9,93,101300,290,1329,372,68,2,67,7600,100,7600,2420,30,3.1,10,10,0.8,60,9,999999999,250,0.2120,0,88,999.000,999.0,99.0 +1978,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.0,13.9,93,101300,525,1329,372,135,2,135,15500,100,15400,5290,30,3.1,10,10,0.4,60,9,999999999,250,0.2120,0,88,999.000,999.0,99.0 +1978,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,15.6,14.4,93,101300,748,1329,376,259,1,259,29400,100,29300,10110,60,3.6,10,10,2.0,90,9,999999999,259,0.2120,0,88,999.000,999.0,99.0 +1978,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,16.1,15.0,93,101300,943,1329,379,285,2,284,33100,200,33000,12410,110,4.6,10,10,3.2,120,9,999999999,270,0.2120,0,88,999.000,999.0,99.0 +1978,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,16.1,14.4,90,101400,1097,1329,378,309,4,306,36500,400,36200,13990,90,6.2,10,10,0.8,60,9,999999999,259,0.2120,0,88,999.000,999.0,99.0 +1978,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,15.6,13.9,90,101300,1199,1329,375,432,0,431,50300,0,50300,18160,70,5.2,10,10,1.3,60,9,999999999,250,0.2120,0,88,999.000,999.0,99.0 +1978,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,16.1,14.4,90,101200,1241,1329,378,456,2,455,53400,200,53200,19030,80,6.7,10,10,4.0,150,9,999999999,259,0.2120,0,88,999.000,999.0,99.0 +1978,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,16.7,14.4,87,101200,1223,1329,382,390,1,389,46000,100,45900,17100,80,6.7,10,10,3.2,60,9,999999999,259,0.2120,0,88,999.000,999.0,99.0 +1978,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,17.2,15.0,87,101100,1143,1329,374,503,135,387,55500,14400,43100,16140,110,4.1,9,9,6.4,90,9,999999999,270,0.2120,0,88,999.000,999.0,99.0 +1978,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,16.7,14.4,87,101100,1009,1329,382,252,7,247,29900,600,29500,11570,70,5.7,10,10,3.2,90,9,999999999,259,0.2120,0,88,999.000,999.0,99.0 +1978,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,16.7,15.0,90,101000,829,1329,382,232,3,231,27000,300,26800,9990,80,6.2,10,10,2.4,60,9,999999999,270,0.2120,0,88,999.000,999.0,99.0 +1978,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,15.6,14.4,93,101000,615,1329,376,173,6,171,19800,500,19600,6810,100,6.2,10,10,1.6,60,9,999999999,259,0.2120,0,88,999.000,999.0,99.0 +1978,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.0,13.3,90,101000,382,1329,371,89,1,89,10100,100,10100,3360,110,6.2,10,10,0.6,60,9,999999999,240,0.2120,0,88,999.000,999.0,99.0 +1978,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,14.4,13.3,93,101000,149,1329,368,28,0,28,3200,0,3200,1000,80,5.7,10,10,0.4,30,9,999999999,240,0.2120,0,88,999.000,999.0,99.0 +1978,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,14.4,13.9,96,101000,4,255,369,0,0,0,0,0,0,0,90,4.1,10,10,0.4,30,9,999999999,250,0.2120,0,88,999.000,999.0,99.0 +1978,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,13.3,93,101100,0,0,368,0,0,0,0,0,0,0,360,4.1,10,10,0.4,30,9,999999999,240,0.1870,0,88,999.000,999.0,99.0 +1978,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,15.2,13.1,96,101000,0,0,372,0,0,0,0,0,0,0,50,4.8,10,10,3.2,90,9,999999999,250,0.1870,0,88,999.000,999.0,99.0 +1978,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,16.0,12.8,93,101000,0,0,376,0,0,0,0,0,0,0,30,5.6,10,10,2.4,60,9,999999999,240,0.1870,0,88,999.000,999.0,99.0 +1978,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,16.8,12.6,93,101000,0,0,380,0,0,0,0,0,0,0,60,6.3,10,10,2.4,90,9,999999999,229,0.1870,0,88,999.000,999.0,99.0 +2002,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,17.6,12.4,81,100000,0,0,333,0,0,0,0,0,0,0,240,7.1,0,0,16.0,77777,9,999999999,250,0.1890,0,88,0.130,0.0,1.0 +2002,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,18.4,12.2,78,100000,0,0,336,0,0,0,0,0,0,0,240,7.8,0,0,16.0,77777,9,999999999,209,0.1890,0,88,0.130,0.0,1.0 +2002,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.2,11.9,59,100000,0,0,339,0,0,0,0,0,0,0,250,8.6,0,0,16.0,77777,9,999999999,179,0.1890,0,88,0.130,0.0,1.0 +2002,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,20.0,11.7,59,100000,0,0,343,0,0,0,0,0,0,0,260,9.3,0,0,16.0,77777,9,999999999,150,0.1890,0,88,0.130,0.0,1.0 +2002,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,20.0,10.0,53,100000,68,1074,341,0,0,0,0,0,0,0,250,8.2,0,0,16.0,77777,9,999999999,139,0.1890,0,88,0.130,0.0,1.0 +2002,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,19.4,10.6,57,100000,291,1328,339,136,210,90,14200,16500,10600,1780,260,8.2,0,0,16.0,77777,9,999999999,129,0.1890,0,88,0.130,0.0,1.0 +2002,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,19.4,10.6,57,100100,526,1328,339,296,420,130,31200,40200,15300,2540,270,7.7,0,0,16.0,77777,9,999999999,129,0.1890,0,88,0.130,0.0,1.0 +2002,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,21.1,10.6,51,100100,749,1328,347,462,441,213,48500,44800,23100,4860,270,6.7,0,0,16.0,77777,9,999999999,139,0.1890,0,88,0.130,0.0,1.0 +2002,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,22.8,10.0,44,100100,944,1328,354,618,564,217,66900,58600,25200,6160,270,7.2,0,0,16.0,77777,9,999999999,150,0.1890,0,88,0.130,0.0,1.0 +2002,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.9,10.0,41,100100,1097,1328,360,766,616,257,80300,62100,28800,9790,250,6.2,0,0,16.0,9144,9,999999999,160,0.1890,0,88,0.130,0.0,1.0 +2002,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.1,9.4,35,100000,1199,1328,370,882,746,206,94700,76500,25400,11200,260,6.7,0,0,16.0,9144,9,999999999,170,0.1890,0,88,0.130,0.0,1.0 +2002,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,27.2,10.0,34,99900,1242,1328,395,916,739,224,98300,75700,27400,14750,230,9.8,4,4,16.0,9144,9,999999999,179,0.1890,0,88,0.130,0.0,1.0 +2002,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,28.3,9.4,31,99800,1224,1328,397,927,773,213,99600,79300,26400,12840,250,7.7,3,3,16.0,77777,9,999999999,179,0.1890,0,88,0.130,0.0,1.0 +2002,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.3,9.4,31,99700,1145,1328,403,783,538,319,84000,56200,35500,14460,240,10.8,5,5,16.0,9144,9,999999999,189,0.1890,0,88,0.130,0.0,1.0 +2002,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,10.6,32,99700,1011,1328,412,424,101,347,46700,10400,38800,13120,240,9.8,6,6,16.0,3962,9,999999999,200,0.1890,0,88,0.130,0.0,1.0 +2002,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,10.0,30,99600,831,1328,407,352,106,285,38600,10800,31900,9340,250,8.8,4,4,16.0,77777,9,999999999,200,0.1890,0,88,0.130,0.0,1.0 +2002,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,30.0,6.1,22,99600,618,1328,402,380,485,155,40200,48000,17800,3170,260,8.8,3,3,16.0,77777,9,999999999,189,0.1890,0,88,0.130,0.0,1.0 +2002,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,5.0,22,99700,385,1328,394,201,384,89,21100,33600,11400,1650,270,9.3,3,3,16.0,77777,9,999999999,179,0.1890,0,88,0.130,0.0,1.0 +2002,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,6.1,25,99700,152,1328,396,53,157,35,5500,8700,4500,620,260,7.7,7,5,16.0,77777,9,999999999,170,0.1890,0,88,0.130,0.0,1.0 +2002,6,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,5.0,25,99800,4,277,367,0,0,0,0,0,0,0,260,8.2,0,0,16.0,77777,9,999999999,160,0.1890,0,88,0.130,0.0,1.0 +2002,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,26.1,4.4,25,99900,0,0,363,0,0,0,0,0,0,0,270,7.2,0,0,16.0,77777,9,999999999,160,0.1890,0,88,0.130,0.0,1.0 +2002,6,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,4.4,26,99900,0,0,358,0,0,0,0,0,0,0,260,7.7,0,0,16.0,77777,9,999999999,150,0.1890,0,88,0.130,0.0,1.0 +2002,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,24.4,4.4,27,99900,0,0,355,0,0,0,0,0,0,0,250,6.2,0,0,16.0,77777,9,999999999,150,0.1890,0,88,0.130,0.0,1.0 +2002,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,22.8,5.0,31,99800,0,0,348,0,0,0,0,0,0,0,240,5.2,0,0,16.0,77777,9,999999999,150,0.1890,0,88,0.130,0.0,1.0 +2002,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,8.3,47,99800,0,0,339,0,0,0,0,0,0,0,230,5.2,0,0,16.0,77777,9,999999999,160,0.1890,0,88,0.130,0.0,1.0 +2002,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,20.0,9.4,50,99800,0,0,368,0,0,0,0,0,0,0,240,5.2,7,7,16.0,77777,9,999999999,160,0.1890,0,88,0.130,0.0,1.0 +2002,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,20.6,9.4,49,99800,0,0,377,0,0,0,0,0,0,0,320,5.2,8,8,16.0,3962,9,999999999,170,0.1890,0,88,0.130,0.0,1.0 +2002,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,20.0,8.3,47,99800,0,0,391,0,0,0,0,0,0,0,290,4.6,10,10,16.0,3962,9,999999999,179,0.1890,0,88,0.130,0.0,1.0 +2002,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,20.0,9.4,50,99800,69,1073,393,0,0,0,0,0,0,0,310,7.7,10,10,16.0,3048,9,999999999,200,0.1890,0,88,0.130,0.0,1.0 +2002,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,17.2,11.1,67,99700,292,1328,380,25,0,25,3100,0,3100,1060,300,6.2,10,10,12.8,1829,9,999999999,220,0.1890,0,88,0.130,0.0,1.0 +2002,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,16.7,12.2,75,99700,527,1328,379,63,0,63,7600,0,7600,2860,220,5.2,10,10,16.0,1524,9,999999999,240,0.1890,0,88,0.130,1.0,1.0 +2002,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,17.8,13.3,75,99700,750,1328,354,277,61,243,30500,6100,27000,7640,250,6.2,5,5,16.0,3962,9,999999999,229,0.1890,0,88,0.130,0.0,1.0 +2002,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,20.6,13.3,63,99700,945,1328,363,249,18,236,29300,1500,28200,10860,280,5.7,3,3,16.0,7620,9,999999999,220,0.1890,0,88,0.130,0.0,1.0 +2002,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.2,11.7,51,99700,1098,1328,372,741,550,286,79900,57500,32300,11290,270,9.3,4,4,16.0,7620,9,999999999,220,0.1890,0,88,0.130,0.0,1.0 +2002,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,23.3,8.9,40,99600,1200,1328,376,814,554,313,88100,58000,35600,17260,270,10.3,5,5,16.0,7620,9,999999999,209,0.1890,0,88,0.130,0.0,1.0 +2002,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,8.3,37,99700,1243,1328,393,904,679,268,95900,68900,31200,17570,290,8.8,8,8,16.0,2134,9,999999999,189,0.1890,0,88,0.130,0.0,1.0 +2002,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,22.2,7.2,38,99800,1224,1328,382,873,629,292,91800,63500,33100,17340,300,9.3,8,8,16.0,2286,9,999999999,179,0.1890,0,88,0.130,0.0,1.0 +2002,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,20.0,8.9,49,99800,1146,1328,373,789,514,345,83900,53600,37600,15770,300,5.7,8,8,16.0,2438,9,999999999,179,0.1890,0,88,0.130,0.0,1.0 +2002,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,22.8,5.6,33,99900,1012,1328,367,396,131,296,43900,14000,33200,9870,320,10.3,4,4,16.0,77777,9,999999999,170,0.1890,0,88,0.130,0.0,1.0 +2002,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,21.7,4.4,32,100000,833,1328,360,565,550,219,59900,56600,24400,5390,310,9.8,4,4,16.0,77777,9,999999999,170,0.1890,0,88,0.130,0.0,1.0 +2002,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,20.0,3.3,33,100200,620,1328,348,359,421,163,37800,41600,18300,3360,330,9.3,3,3,16.0,77777,9,999999999,170,0.1890,0,88,0.130,0.0,1.0 +2002,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,19.4,2.8,33,100300,388,1328,347,211,447,81,22500,39200,11100,1480,320,9.8,4,4,16.0,77777,9,999999999,160,0.1890,0,88,0.130,0.0,1.0 +2002,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,17.8,2.8,37,100400,154,1328,342,54,162,35,5600,9100,4600,620,310,7.7,6,5,16.0,77777,9,999999999,160,0.1890,0,88,0.130,0.0,1.0 +2002,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,16.7,3.3,41,100500,5,299,332,0,0,0,0,0,0,0,320,7.7,3,3,16.0,77777,9,999999999,150,0.1890,0,88,0.130,0.0,1.0 +2002,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,16.1,3.9,44,100600,0,0,330,0,0,0,0,0,0,0,330,4.1,3,3,16.0,77777,9,999999999,150,0.1890,0,88,0.130,0.0,1.0 +2002,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,15.0,3.9,47,100700,0,0,312,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,139,0.1890,0,88,0.130,0.0,1.0 +2002,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,15.0,3.9,47,100800,0,0,312,0,0,0,0,0,0,0,290,4.6,0,0,16.0,77777,9,999999999,139,0.1890,0,88,0.130,0.0,1.0 +2002,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,14.4,3.9,49,100800,0,0,309,0,0,0,0,0,0,0,290,4.1,0,0,16.0,77777,9,999999999,129,0.1890,0,88,0.130,0.0,1.0 +2002,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,13.9,3.9,51,100900,0,0,307,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,120,0.1900,0,88,0.130,0.0,1.0 +2002,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,13.3,3.3,51,100900,0,0,304,0,0,0,0,0,0,0,280,4.1,0,0,16.0,77777,9,999999999,120,0.1900,0,88,0.130,0.0,1.0 +2002,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,12.2,3.3,54,101000,0,0,299,0,0,0,0,0,0,0,280,5.2,0,0,16.0,77777,9,999999999,110,0.1900,0,88,0.130,0.0,1.0 +2002,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,12.2,2.8,53,101000,0,0,299,0,0,0,0,0,0,0,300,4.6,0,0,16.0,77777,9,999999999,110,0.1900,0,88,0.130,0.0,1.0 +2002,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,11.7,2.2,52,101100,70,1095,296,0,0,0,0,0,0,0,290,5.7,0,0,16.0,77777,9,999999999,100,0.1900,0,88,0.130,0.0,1.0 +2002,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,12.2,1.7,49,101200,293,1328,298,152,291,88,16000,22900,10900,1720,320,5.7,0,0,16.0,77777,9,999999999,89,0.1900,0,88,0.130,0.0,1.0 +2002,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,13.3,1.1,43,101200,528,1328,302,317,514,112,33900,49300,14200,2150,330,6.2,0,0,16.0,77777,9,999999999,80,0.1900,0,88,0.130,0.0,1.0 +2002,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,14.4,1.7,42,101300,750,1328,307,488,576,162,50600,57000,18300,3570,330,4.6,0,0,16.0,77777,9,999999999,80,0.1900,0,88,0.130,0.0,1.0 +2002,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,15.6,1.1,37,101300,945,1328,311,663,680,178,70000,69000,20800,5080,300,7.2,0,0,16.0,77777,9,999999999,80,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.2,1.7,35,101300,1098,1328,319,798,755,172,83100,75700,20300,6090,300,7.2,0,0,16.0,77777,9,999999999,80,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.8,1.1,32,101300,1200,1328,321,882,740,211,94600,75900,25800,11530,260,6.2,0,0,16.0,77777,9,999999999,100,0.1900,0,88,0.130,0.0,1.0 +2002,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,19.4,1.7,31,101300,1244,1328,343,928,775,201,96900,77700,23900,12300,320,5.2,3,3,16.0,77777,9,999999999,120,0.1900,0,88,0.130,0.0,1.0 +2002,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,20.0,1.1,28,101200,1225,1328,331,921,797,184,96800,80200,22600,10380,310,5.7,0,0,16.0,77777,9,999999999,139,0.1900,0,88,0.130,0.0,1.0 +2002,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,21.1,1.1,26,101300,1147,1328,350,842,765,180,87900,76800,21400,7360,300,8.2,3,3,16.0,77777,9,999999999,150,0.1900,0,88,0.130,0.0,1.0 +2002,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,21.7,2.2,28,101300,1013,1328,355,717,691,189,76000,70300,22300,6100,290,6.2,3,3,16.0,77777,9,999999999,170,0.1900,0,88,0.130,0.0,1.0 +2002,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,21.1,2.2,29,101300,834,1328,352,565,651,155,59400,65600,18100,3810,290,5.7,3,3,16.0,77777,9,999999999,179,0.1900,0,88,0.130,0.0,1.0 +2002,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,21.1,-0.6,23,101400,622,1328,334,392,602,109,41000,58800,13400,2260,340,5.7,0,0,16.0,77777,9,999999999,160,0.1900,0,88,0.130,0.0,1.0 +2002,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,20.6,-0.6,24,101500,390,1328,342,211,396,95,22100,34700,11900,1770,360,7.2,2,2,16.0,77777,9,999999999,139,0.1900,0,88,0.130,0.0,1.0 +2002,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,19.4,0.6,28,101600,157,1328,354,47,79,38,5200,4800,4600,800,360,3.6,7,7,16.0,6706,9,999999999,120,0.1900,0,88,0.130,0.0,1.0 +2002,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,18.3,1.7,33,101600,5,321,330,0,0,0,0,0,0,0,360,4.1,1,1,16.0,6706,9,999999999,110,0.1900,0,88,0.130,0.0,1.0 +2002,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,15.6,3.9,46,101700,0,0,314,0,0,0,0,0,0,0,40,3.1,0,0,16.0,77777,9,999999999,100,0.1900,0,88,0.130,0.0,1.0 +2002,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,15.0,2.2,42,101800,0,0,310,0,0,0,0,0,0,0,360,4.6,0,0,16.0,77777,9,999999999,89,0.1900,0,88,0.130,0.0,1.0 +2002,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,14.4,2.2,44,101900,0,0,307,0,0,0,0,0,0,0,10,4.6,0,0,16.0,77777,9,999999999,89,0.1900,0,88,0.130,0.0,1.0 +2002,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,12.2,3.3,54,101900,0,0,299,0,0,0,0,0,0,0,20,2.6,0,0,16.0,77777,9,999999999,89,0.1900,0,88,0.130,0.0,1.0 +2002,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,12.8,3.9,55,102000,0,0,302,0,0,0,0,0,0,0,350,2.1,0,0,16.0,77777,9,999999999,80,0.1900,0,88,0.130,0.0,1.0 +2002,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,11.1,4.4,63,102000,0,0,296,0,0,0,0,0,0,0,360,2.1,0,0,16.0,77777,9,999999999,80,0.1900,0,88,0.130,0.0,1.0 +2002,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,11.1,3.9,61,102100,0,0,295,0,0,0,0,0,0,0,360,1.5,0,0,16.0,77777,9,999999999,80,0.1900,0,88,0.130,0.0,1.0 +2002,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,11.7,4.4,61,102100,0,0,298,0,0,0,0,0,0,0,350,1.5,0,0,16.0,77777,9,999999999,80,0.1900,0,88,0.130,0.0,1.0 +2002,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,11.1,5.6,69,102200,71,1095,297,0,0,0,0,0,0,0,10,2.1,0,0,16.0,77777,9,999999999,100,0.1900,0,88,0.130,0.0,1.0 +2002,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,13.3,5.0,57,102200,294,1327,306,152,257,95,15900,20200,11400,1890,0,0.0,0,0,16.0,77777,9,999999999,110,0.1900,0,88,0.130,0.0,1.0 +2002,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,13.9,6.7,62,102300,529,1327,310,310,476,120,32900,45700,14700,2320,70,2.6,0,0,16.0,77777,9,999999999,120,0.1900,0,88,0.130,0.0,1.0 +2002,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,14.4,7.2,62,102400,751,1327,313,488,570,165,52600,58200,19600,3680,110,2.6,0,0,16.0,77777,9,999999999,139,0.1900,0,88,0.130,0.0,1.0 +2002,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,15.6,7.2,57,102200,945,1327,318,663,692,169,70300,70400,20000,4860,80,4.6,0,0,16.0,77777,9,999999999,170,0.1900,0,88,0.130,0.0,1.0 +2002,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,16.1,6.1,51,102400,1099,1327,319,773,676,212,82000,68900,24900,8290,100,5.7,0,0,16.0,77777,9,999999999,189,0.1900,0,88,0.130,0.0,1.0 +2002,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,16.7,3.3,41,102300,1201,1327,319,882,740,210,94600,75900,25800,11520,90,6.7,0,0,16.0,77777,9,999999999,209,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.2,4.4,43,102300,1244,1327,336,916,733,228,98200,75000,27800,15230,90,7.2,3,3,16.0,9144,9,999999999,229,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.2,5.6,46,102200,1226,1327,323,903,737,221,96900,75500,27000,13510,100,7.2,0,0,16.0,9144,9,999999999,250,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.2,5.0,44,102100,1148,1327,323,830,723,204,88800,74000,24700,9250,100,9.3,0,0,16.0,77777,9,999999999,259,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.2,8.3,56,102100,1015,1327,340,706,667,195,74700,67800,22700,6290,90,8.2,3,3,16.0,77777,9,999999999,279,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.2,8.9,58,102100,836,1327,341,576,680,147,60800,68700,17500,3650,100,8.2,3,3,16.0,9144,9,999999999,290,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.8,9.4,58,102000,623,1327,350,381,438,175,39800,43300,19400,3640,120,7.7,5,5,16.0,8230,9,999999999,290,0.1900,0,88,0.130,0.0,1.0 +2002,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,19.4,5.0,39,102000,392,1327,347,94,6,92,10700,300,10600,3480,200,6.7,3,3,16.0,3962,9,999999999,279,0.1900,0,88,0.130,0.0,1.0 +2002,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,18.3,4.4,40,102000,159,1327,377,58,94,47,6300,5700,5600,990,190,7.2,10,10,16.0,3353,9,999999999,279,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.8,6.1,46,102000,6,321,367,0,0,0,0,0,0,0,190,7.2,10,9,16.0,3658,9,999999999,300,0.1900,0,88,0.130,0.0,1.0 +2002,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,16.7,9.4,62,102100,0,0,357,0,0,0,0,0,0,0,200,7.2,9,8,16.0,2286,9,999999999,320,0.1900,0,88,0.130,0.0,1.0 +2002,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,16.1,11.1,72,102100,0,0,374,0,0,0,0,0,0,0,200,5.2,10,10,16.0,2286,9,999999999,329,0.1900,0,88,0.130,0.0,1.0 +2002,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,16.1,11.7,75,102000,0,0,375,0,0,0,0,0,0,0,190,5.7,10,10,16.0,1981,9,999999999,329,0.1900,0,88,0.130,0.0,1.0 +2002,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,15.6,12.8,83,102000,0,0,374,0,0,0,0,0,0,0,180,3.6,10,10,16.0,1829,9,999999999,329,0.1900,0,88,0.130,0.0,1.0 +2002,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,11.7,75,102000,0,0,375,0,0,0,0,0,0,0,200,4.6,10,10,16.0,1829,9,999999999,329,0.1900,0,88,0.130,0.0,1.0 +2002,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,16.1,10.0,67,101800,0,0,373,0,0,0,0,0,0,0,190,6.7,10,10,16.0,1829,9,999999999,350,0.1900,0,88,0.130,0.0,1.0 +2002,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.6,11.1,75,101700,0,0,372,0,0,0,0,0,0,0,180,6.2,10,10,16.0,1676,9,999999999,370,0.1900,0,88,0.130,0.0,1.0 +2002,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,15.6,11.1,75,101700,0,0,372,0,0,0,0,0,0,0,180,6.2,10,10,16.0,1372,9,999999999,390,0.1900,0,88,0.130,0.0,1.0 +2002,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,16.1,10.6,70,101700,72,1117,374,0,0,0,0,0,0,0,180,5.2,10,10,16.0,1189,9,999999999,390,0.1900,0,88,0.130,0.0,1.0 +2002,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.7,10.6,67,101700,295,1327,377,42,0,42,4900,0,4900,1680,200,5.2,10,10,16.0,1433,9,999999999,400,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.2,12.2,72,101700,529,1327,381,91,0,91,10700,0,10700,3920,210,7.2,10,10,16.0,1189,9,999999999,400,0.1900,0,88,0.130,0.0,1.0 +2002,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,17.8,13.9,78,101500,751,1327,368,191,6,188,22200,500,22000,8150,200,8.2,9,8,16.0,4877,9,999999999,409,0.1900,0,88,0.130,0.0,1.0 +2002,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,18.3,15.0,81,101500,946,1327,391,172,0,172,20800,0,20800,8440,210,7.2,10,10,16.0,427,9,999999999,409,0.1900,0,88,0.130,0.0,1.0 +2002,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,18.9,15.6,81,101500,1099,1327,395,212,0,212,25800,0,25800,10500,210,7.7,10,10,16.0,305,9,999999999,419,0.1900,0,88,0.130,0.0,1.0 +2002,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,18.9,15.6,81,101500,1201,1327,395,141,0,141,17900,0,17900,7460,220,8.8,10,10,16.0,305,9,999999999,430,0.1900,0,88,0.130,0.0,1.0 +2002,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,20.0,16.1,78,101400,1245,1327,401,205,0,205,25500,0,25500,10410,210,8.2,10,10,16.0,427,9,999999999,450,0.1900,0,88,0.130,0.0,1.0 +2002,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,21.1,16.7,76,101400,1227,1327,408,261,6,256,31900,500,31400,12500,220,9.8,10,10,16.0,427,9,999999999,459,0.1900,0,88,0.130,0.0,1.0 +2002,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,21.1,16.7,76,101300,1149,1327,408,246,0,246,29800,0,29800,11950,210,6.7,10,10,16.0,488,9,999999999,450,0.1900,0,88,0.130,0.0,1.0 +2002,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,22.2,17.2,73,101200,1016,1327,395,178,6,173,21700,500,21300,8690,200,7.7,8,8,16.0,5182,9,999999999,440,0.1900,0,88,0.130,0.0,1.0 +2002,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,22.8,17.8,73,101100,837,1327,419,425,249,268,45800,26600,29000,6950,220,6.2,10,10,16.0,549,9,999999999,430,0.1900,0,88,0.130,0.0,1.0 +2002,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,22.8,18.3,76,101100,625,1327,420,134,0,134,15600,0,15600,5740,220,4.6,10,10,14.4,671,9,999999999,430,0.1900,0,88,0.130,0.0,1.0 +2002,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,23.0,18.0,73,101000,394,1327,400,182,198,123,19100,17800,13900,2500,210,5.1,8,8,12.9,660,9,999999999,430,0.1900,0,88,0.130,0.0,1.0 +2002,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,21.7,18.3,81,101000,162,1327,380,44,50,38,4800,3100,4500,800,190,5.7,6,5,14.4,77777,9,999999999,430,0.1900,0,88,0.130,0.0,1.0 +2002,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,20.6,17.8,84,101000,6,343,368,0,0,0,0,0,0,0,200,6.2,3,3,16.0,77777,9,999999999,440,0.1900,0,88,0.130,0.0,1.0 +2002,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,21.1,18.3,84,101000,0,0,410,0,0,0,0,0,0,0,220,7.2,10,10,14.4,488,9,999999999,459,0.1900,0,88,0.130,0.0,1.0 +2002,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,21.7,18.3,81,101000,0,0,414,0,0,0,0,0,0,0,230,7.2,10,10,12.8,488,9,999999999,469,0.1900,0,88,0.130,0.0,1.0 +2002,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.7,18.3,81,101000,0,0,414,0,0,0,0,0,0,0,230,6.7,10,10,12.8,2438,9,999999999,480,0.1900,0,88,0.130,0.0,1.0 +2002,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.0,19.0,88,101000,0,0,411,0,0,0,0,0,0,0,220,7.7,10,10,4.8,690,9,999999999,480,0.1900,0,88,0.130,5.0,1.0 +2002,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,20.6,18.9,90,100900,0,0,408,0,0,0,0,0,0,0,210,3.1,10,10,6.4,2438,9,999999999,490,0.1910,0,88,0.130,2.0,1.0 +2002,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,19.4,18.3,93,100900,0,0,401,0,0,0,0,0,0,0,200,5.7,10,10,6.4,1189,9,999999999,490,0.1910,0,88,0.130,1.0,1.0 +2002,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,18.9,18.3,96,100800,0,0,387,0,0,0,0,0,0,0,170,4.6,10,9,6.4,3353,9,999999999,490,0.1910,0,88,0.130,2.0,1.0 +2002,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,19.4,18.3,93,100800,0,0,365,0,0,0,0,0,0,0,200,2.6,10,4,16.0,4267,9,999999999,480,0.1910,0,88,0.130,0.0,1.0 +2002,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,18.3,96,100800,73,1116,398,0,0,0,0,0,0,0,180,2.1,10,10,9.6,213,9,999999999,480,0.1910,0,88,0.130,0.0,1.0 +2002,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,20.0,18.9,93,100900,296,1326,405,25,0,25,3100,0,3100,1070,210,4.1,10,10,12.8,274,9,999999999,480,0.1910,0,88,0.130,0.0,1.0 +2002,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,20.0,18.9,93,101000,530,1326,405,56,0,56,6800,0,6800,2580,220,5.7,10,10,11.2,213,9,999999999,480,0.1910,0,88,0.130,0.0,1.0 +2002,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,20.6,18.9,90,101000,752,1326,408,86,0,86,10600,0,10600,4250,250,4.1,10,10,9.6,213,9,999999999,459,0.1910,0,88,0.130,0.0,1.0 +2002,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,21.1,19.4,90,101000,946,1326,412,108,0,108,13500,0,13500,5620,250,2.6,10,10,9.6,305,9,999999999,450,0.1910,0,88,0.130,0.0,1.0 +2002,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,19.4,18.3,93,101100,1099,1326,401,143,0,143,17900,0,17900,7480,360,6.2,10,10,2.4,762,9,999999999,440,0.1910,0,88,0.130,2.0,1.0 +2002,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,15.6,14.4,93,101200,1201,1326,376,141,0,141,17900,0,17900,7460,40,9.8,10,10,3.2,945,9,999999999,430,0.1910,0,88,0.130,3.0,1.0 +2002,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,15.0,13.9,93,101400,1245,1326,372,151,0,151,19200,0,19200,7960,30,7.2,10,10,3.2,305,9,999999999,430,0.1910,0,88,0.130,1.0,1.0 +2002,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,14.4,13.3,93,101400,1227,1326,368,154,0,154,19500,0,19500,8090,40,6.2,10,10,4.8,945,9,999999999,419,0.1910,0,88,0.130,0.0,1.0 +2002,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,14.4,12.8,90,101400,1150,1326,368,135,0,135,17100,0,17100,7140,40,6.7,10,10,4.8,244,9,999999999,419,0.1910,0,88,0.130,0.0,1.0 +2002,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,13.9,12.2,89,101600,1017,1326,364,172,0,172,21000,0,21000,8650,40,4.6,10,10,16.0,305,9,999999999,409,0.1910,0,88,0.130,0.0,1.0 +2002,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,13.3,12.2,93,101700,839,1326,361,112,0,112,13700,0,13700,5580,60,3.1,10,10,4.0,183,9,999999999,409,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,101600,627,1326,358,97,0,97,11600,0,11600,4420,70,4.1,10,10,16.0,274,9,999999999,400,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,101600,396,1326,358,49,0,49,5900,0,5900,2100,50,3.6,10,10,16.0,122,9,999999999,390,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,101600,164,1326,358,18,0,18,2100,0,2100,700,60,3.6,10,10,14.4,122,9,999999999,379,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.2,11.7,97,101500,7,365,355,0,0,0,0,0,0,0,60,3.1,10,10,14.4,122,9,999999999,379,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.8,11.1,89,101600,0,0,358,0,0,0,0,0,0,0,20,4.1,10,10,12.8,183,9,999999999,379,0.1910,0,88,0.130,1.0,1.0 +2002,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,12.8,11.1,89,101600,0,0,358,0,0,0,0,0,0,0,40,4.6,10,10,9.6,2438,9,999999999,379,0.1910,0,88,0.130,1.0,1.0 +2002,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,12.2,10.6,90,101600,0,0,354,0,0,0,0,0,0,0,20,4.6,10,10,16.0,2743,9,999999999,370,0.1910,0,88,0.130,2.0,1.0 +2002,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,12.2,11.1,93,101600,0,0,355,0,0,0,0,0,0,0,30,3.6,10,10,14.4,1524,9,999999999,370,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.2,11.1,93,101700,0,0,355,0,0,0,0,0,0,0,60,3.1,10,10,16.0,3048,9,999999999,359,0.1910,0,88,0.130,1.0,1.0 +2002,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,12.2,11.1,93,101600,0,0,355,0,0,0,0,0,0,0,30,4.1,10,10,14.4,2286,9,999999999,350,0.1910,0,88,0.130,1.0,1.0 +2002,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,12.2,11.1,93,101700,0,0,355,0,0,0,0,0,0,0,40,5.7,10,10,6.4,1311,9,999999999,350,0.1910,0,88,0.130,3.0,1.0 +2002,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,12.0,11.0,94,101800,0,0,353,0,0,0,0,0,0,0,20,5.1,10,10,6.4,570,9,999999999,340,0.1910,0,88,0.130,2.0,1.0 +2002,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,12.2,11.1,93,101800,73,1116,355,0,0,0,0,0,0,0,20,5.2,10,10,6.4,701,9,999999999,329,0.1910,0,88,0.130,3.0,1.0 +2002,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.0,12.0,94,101900,297,1326,360,25,0,25,3100,0,3100,1070,20,5.7,10,10,9.7,240,9,999999999,320,0.1910,0,88,0.130,1.0,1.0 +2002,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,13.3,11.7,90,102000,530,1326,361,63,0,63,7600,0,7600,2860,10,5.2,10,10,6.4,945,9,999999999,309,0.1910,0,88,0.130,1.0,1.0 +2002,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,12.8,11.7,93,102000,752,1326,358,86,0,86,10600,0,10600,4250,20,5.2,10,10,11.2,457,9,999999999,300,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,102000,946,1326,358,147,0,147,18000,0,18000,7380,40,6.7,10,10,8.0,274,9,999999999,300,0.1910,0,88,0.130,0.0,1.0 +2002,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,11.7,10.0,89,102100,1100,1326,351,150,0,150,18700,0,18700,7810,40,7.7,10,10,12.8,213,9,999999999,290,0.1910,0,88,0.130,0.0,1.0 +2002,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,11.0,10.0,94,102200,1202,1326,347,147,0,147,18600,0,18600,7740,20,8.2,10,10,4.0,210,9,999999999,279,0.1910,0,88,0.130,0.0,1.0 +2002,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,11.1,9.4,89,102300,1245,1326,347,151,0,151,19200,0,19200,7960,20,7.2,10,10,16.0,335,9,999999999,270,0.1910,0,88,0.130,0.0,1.0 +2002,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,11.1,9.4,89,102300,1228,1326,347,190,6,185,23800,400,23400,9510,30,7.2,10,10,11.2,610,9,999999999,270,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.2,8.9,80,102300,1150,1326,352,193,0,193,23800,0,23800,9780,40,7.2,10,10,16.0,610,9,999999999,240,0.1910,0,88,0.130,0.0,1.0 +2002,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,13.3,8.9,75,102300,1018,1326,357,207,6,202,24900,500,24600,9900,30,7.7,10,10,16.0,732,9,999999999,220,0.1910,0,88,0.130,0.0,1.0 +2002,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,14.4,9.4,72,102300,840,1326,329,341,95,281,37500,9700,31400,9330,40,6.2,3,3,16.0,5486,9,999999999,189,0.1910,0,88,0.130,0.0,1.0 +2002,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,13.3,8.9,75,102300,629,1326,323,392,515,148,41700,51200,17400,3030,50,5.7,3,3,16.0,77777,9,999999999,170,0.1910,0,88,0.130,0.0,1.0 +2002,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,13.3,8.3,72,102300,398,1326,309,208,374,95,21800,33100,11800,1770,70,4.1,0,0,16.0,77777,9,999999999,150,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.8,7.2,69,102400,166,1326,306,63,195,39,6600,11400,5200,700,50,4.6,0,0,16.0,77777,9,999999999,129,0.1910,0,88,0.130,0.0,1.0 +2002,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,11.7,6.1,68,102400,7,365,300,0,0,0,0,0,0,0,50,2.6,0,0,16.0,77777,9,999999999,120,0.1910,0,88,0.130,0.0,1.0 +2002,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,10.6,7.2,79,102500,0,0,297,0,0,0,0,0,0,0,20,2.6,0,0,16.0,77777,9,999999999,120,0.1910,0,88,0.130,0.0,1.0 +2002,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,10.6,6.1,74,102500,0,0,295,0,0,0,0,0,0,0,330,2.6,0,0,16.0,77777,9,999999999,110,0.1910,0,88,0.130,0.0,1.0 +2002,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,10.0,6.7,80,102500,0,0,294,0,0,0,0,0,0,0,360,2.6,0,0,16.0,77777,9,999999999,110,0.1910,0,88,0.130,0.0,1.0 +2002,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,8.9,6.7,86,102400,0,0,289,0,0,0,0,0,0,0,10,2.1,0,0,16.0,77777,9,999999999,110,0.1910,0,88,0.130,0.0,1.0 +2002,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,9.4,6.7,83,102500,0,0,291,0,0,0,0,0,0,0,330,2.6,0,0,16.0,77777,9,999999999,110,0.1910,0,88,0.130,0.0,1.0 +2002,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,8.9,6.1,83,102500,0,0,288,0,0,0,0,0,0,0,320,3.1,0,0,16.0,77777,9,999999999,110,0.1910,0,88,0.130,0.0,1.0 +2002,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,8.9,5.6,80,102500,0,0,288,0,0,0,0,0,0,0,330,2.6,0,0,16.0,77777,9,999999999,110,0.1910,0,88,0.130,0.0,1.0 +2002,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,8.9,5.6,80,102600,0,0,288,0,0,0,0,0,0,0,330,2.6,0,0,16.0,77777,9,999999999,120,0.1910,0,88,0.130,0.0,1.0 +2002,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,8.9,5.6,80,102600,74,1116,288,0,0,0,0,0,0,0,360,2.1,0,0,16.0,77777,9,999999999,120,0.1910,0,88,0.130,0.0,1.0 +2002,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,10.6,5.6,71,102600,297,1326,295,151,270,91,15900,21400,11100,1790,10,1.5,0,0,16.0,77777,9,999999999,120,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.8,6.1,64,102700,531,1326,305,309,470,121,32800,45100,14700,2350,30,1.5,0,0,16.0,77777,9,999999999,120,0.1910,0,88,0.130,0.0,1.0 +2002,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,13.3,7.8,69,102700,752,1326,309,501,606,157,52100,60100,18000,3490,140,3.1,0,0,16.0,77777,9,999999999,120,0.1910,0,88,0.130,0.0,1.0 +2002,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,13.9,6.1,59,102700,946,1326,309,669,716,157,71300,73100,19100,4570,140,2.6,0,0,16.0,77777,9,999999999,129,0.1910,0,88,0.130,0.0,1.0 +2002,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,13.9,7.2,64,102600,1100,1326,311,779,676,217,82500,68800,25400,8520,130,3.6,0,0,16.0,77777,9,999999999,129,0.1910,0,88,0.130,0.0,1.0 +2002,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,15.6,4.4,47,102600,1202,1326,329,900,776,195,93700,77800,23100,9810,120,3.1,3,3,16.0,77777,9,999999999,139,0.1910,0,88,0.130,0.0,1.0 +2002,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,15.6,6.7,55,102600,1246,1326,317,929,769,205,96800,77100,24200,12780,80,4.6,0,0,16.0,77777,9,999999999,150,0.1910,0,88,0.130,0.0,1.0 +2002,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,16.1,6.7,54,102500,1228,1326,320,921,791,187,96700,79600,22800,10780,100,5.2,0,0,16.0,77777,9,999999999,150,0.1910,0,88,0.130,0.0,1.0 +2002,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,16.7,7.2,53,102400,1151,1326,323,842,735,203,90200,75300,24700,9350,100,5.2,0,0,16.0,77777,9,999999999,160,0.1910,0,88,0.130,0.0,1.0 +2002,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,16.7,6.7,52,102400,1019,1326,333,706,613,234,73800,61700,26200,7470,110,7.2,2,2,16.0,9144,9,999999999,170,0.1910,0,88,0.130,0.0,1.0 +2002,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,16.7,6.7,52,102400,842,1326,339,537,550,187,58000,56800,21900,4590,110,8.2,4,4,16.0,9144,9,999999999,179,0.1910,0,88,0.130,0.0,1.0 +2002,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,16.1,8.9,62,102300,630,1326,348,371,409,176,38700,40600,19400,3670,110,8.2,8,7,16.0,9144,9,999999999,189,0.1910,0,88,0.130,0.0,1.0 +2002,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,15.6,9.4,67,102300,400,1326,360,163,119,127,17600,10800,14400,2840,120,5.7,10,9,16.0,9144,9,999999999,189,0.1910,0,88,0.130,0.0,1.0 +2002,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,15.6,8.3,62,102300,168,1326,368,49,45,43,5300,2800,5000,900,150,5.2,10,10,16.0,9144,9,999999999,200,0.1910,0,88,0.130,0.0,1.0 +2002,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,15.6,10.0,69,102200,8,387,338,0,0,0,0,0,0,0,200,6.7,4,4,16.0,9144,9,999999999,209,0.1910,0,88,0.130,0.0,1.0 +2002,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,14.4,8.9,70,102300,0,0,336,0,0,0,0,0,0,0,200,7.7,7,6,16.0,7620,9,999999999,220,0.1910,0,88,0.130,0.0,1.0 +2002,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,13.3,8.3,72,102300,0,0,315,0,0,0,0,0,0,0,210,5.7,1,1,16.0,77777,9,999999999,229,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.8,8.3,74,102200,0,0,323,0,0,0,0,0,0,0,200,6.2,4,4,16.0,77777,9,999999999,240,0.1910,0,88,0.130,0.0,1.0 +2002,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,12.8,7.8,72,102200,0,0,317,0,0,0,0,0,0,0,230,5.7,2,2,16.0,77777,9,999999999,250,0.1910,0,88,0.130,0.0,1.0 +2002,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.2,6.7,69,102200,0,0,316,0,0,0,0,0,0,0,220,4.1,4,3,16.0,77777,9,999999999,259,0.1920,0,88,0.130,0.0,1.0 +2002,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.7,6.7,71,102100,0,0,306,0,0,0,0,0,0,0,210,4.1,1,1,16.0,77777,9,999999999,270,0.1920,0,88,0.130,0.0,1.0 +2002,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,12.2,7.2,71,102000,0,0,340,0,0,0,0,0,0,0,220,5.2,10,9,16.0,4267,9,999999999,270,0.1920,0,88,0.130,0.0,1.0 +2002,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,12.2,7.8,74,102000,0,0,341,0,0,0,0,0,0,0,230,5.2,10,9,16.0,4267,9,999999999,270,0.1920,0,88,0.130,0.0,1.0 +2002,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,12.2,7.8,74,101900,75,1138,341,0,0,0,0,0,0,0,220,4.6,10,9,16.0,4267,9,999999999,279,0.1920,0,88,0.130,0.0,1.0 +2002,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,8.3,72,101900,298,1325,340,42,0,42,4900,0,4900,1690,220,5.2,10,8,16.0,4877,9,999999999,279,0.1920,0,88,0.130,0.0,1.0 +2002,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,14.4,8.9,70,101900,531,1325,353,169,19,161,19000,1400,18400,6010,230,6.7,10,9,16.0,4572,9,999999999,290,0.1920,0,88,0.130,0.0,1.0 +2002,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.7,10.0,65,101800,752,1325,376,244,25,230,27900,2200,26700,9420,240,6.7,10,10,16.0,7620,9,999999999,290,0.1920,0,88,0.130,0.0,1.0 +2002,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,11.1,67,101800,946,1325,362,178,0,178,21400,0,21400,8690,240,6.7,9,8,16.0,4572,9,999999999,290,0.1920,0,88,0.130,0.0,1.0 +2002,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.3,13.3,73,101700,1100,1325,370,287,18,272,34200,1500,33000,12820,230,5.2,8,8,16.0,4572,9,999999999,300,0.1920,0,88,0.130,0.0,1.0 +2002,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.7,13.9,61,101500,1202,1325,378,729,313,444,79300,34000,48400,23030,240,4.6,6,6,16.0,77777,9,999999999,309,0.1920,0,88,0.130,0.0,1.0 +2002,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,23.3,13.3,53,101400,1246,1325,390,229,18,212,25500,1800,23800,12280,250,5.2,7,7,16.0,5182,9,999999999,320,0.1920,0,88,0.130,0.0,1.0 +2002,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,25.0,14.4,52,101400,1229,1325,396,499,102,405,55400,10900,45200,21740,240,5.7,6,6,16.0,4572,9,999999999,340,0.1920,0,88,0.130,0.0,1.0 +2002,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,26.1,15.6,52,101400,1152,1325,377,761,484,339,81100,50500,37100,15900,280,7.2,0,0,16.0,77777,9,999999999,340,0.1920,0,88,0.130,0.0,1.0 +2002,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,27.2,15.6,49,101300,1020,1325,399,724,661,214,76100,66900,24500,6930,260,6.2,3,3,16.0,77777,9,999999999,340,0.1920,0,88,0.130,0.0,1.0 +2002,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,27.2,15.6,49,101200,843,1325,399,582,687,145,61700,69500,17400,3640,260,6.2,3,3,16.0,77777,9,999999999,329,0.1920,0,88,0.130,0.0,1.0 +2002,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,27.2,15.0,47,101200,632,1325,398,393,567,122,40800,55300,14500,2500,260,7.7,3,3,16.0,77777,9,999999999,309,0.1920,0,88,0.130,0.0,1.0 +2002,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,26.7,15.6,51,101200,402,1325,400,223,369,111,23100,32600,13200,2110,260,6.7,5,4,16.0,7620,9,999999999,279,0.1920,0,88,0.130,0.0,1.0 +2002,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,25.6,16.1,56,101200,170,1325,433,49,60,41,5300,3800,4900,860,250,4.6,10,10,16.0,7620,9,999999999,250,0.1920,0,88,0.130,0.0,1.0 +2002,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,16.1,58,101200,9,387,409,0,0,0,0,0,0,0,250,4.6,10,8,16.0,7620,9,999999999,229,0.1920,0,88,0.130,0.0,1.0 +2002,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,24.4,16.1,60,101300,0,0,399,0,0,0,0,0,0,0,260,4.6,7,7,16.0,7620,9,999999999,220,0.1920,0,88,0.130,0.0,1.0 +2002,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,22.8,16.1,66,101300,0,0,397,0,0,0,0,0,0,0,260,3.1,8,8,16.0,2438,9,999999999,200,0.1920,0,88,0.130,0.0,1.0 +2002,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,22.8,15.0,61,101400,0,0,376,0,0,0,0,0,0,0,320,5.2,3,3,16.0,77777,9,999999999,189,0.1920,0,88,0.130,0.0,1.0 +2002,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,21.1,13.3,61,101400,0,0,365,0,0,0,0,0,0,0,360,5.2,3,3,16.0,77777,9,999999999,179,0.1920,0,88,0.130,0.0,1.0 +2002,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,20.0,10.6,55,101500,0,0,342,0,0,0,0,0,0,0,340,6.2,0,0,16.0,77777,9,999999999,170,0.1920,0,88,0.130,0.0,1.0 +2002,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,19.4,9.4,52,101500,0,0,344,0,0,0,0,0,0,0,330,5.2,1,1,16.0,77777,9,999999999,170,0.1920,0,88,0.130,0.0,1.0 +2002,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,17.8,8.9,56,101500,0,0,341,0,0,0,0,0,0,0,330,4.1,2,2,16.0,77777,9,999999999,170,0.1920,0,88,0.130,0.0,1.0 +2002,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,17.2,7.2,52,101600,0,0,357,0,0,0,0,0,0,0,320,4.6,10,8,16.0,77777,9,999999999,170,0.1920,0,88,0.130,0.0,1.0 +2002,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,16.7,6.7,52,101700,75,1137,362,0,0,0,0,0,0,0,320,6.2,9,9,16.0,6096,9,999999999,160,0.1920,0,88,0.130,0.0,1.0 +2002,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,17.2,7.2,52,101700,298,1325,365,42,0,42,4900,0,4900,1690,330,4.6,9,9,16.0,4572,9,999999999,160,0.1920,0,88,0.130,0.0,1.0 +2002,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,17.8,7.2,50,101800,531,1325,360,330,426,159,34000,40800,17700,3180,340,3.6,8,8,16.0,4572,9,999999999,150,0.1920,0,88,0.130,0.0,1.0 +2002,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,18.9,7.2,47,101900,752,1325,353,508,637,145,53100,63500,17000,3260,20,4.6,5,5,16.0,77777,9,999999999,150,0.1920,0,88,0.130,0.0,1.0 +2002,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,7.2,43,101900,946,1325,352,663,686,172,70200,69700,20300,4950,30,4.6,3,3,16.0,77777,9,999999999,150,0.1920,0,88,0.130,0.0,1.0 +2002,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,20.0,8.9,49,101900,1100,1325,367,773,622,255,80900,62800,28700,9860,90,4.6,8,7,16.0,8230,9,999999999,150,0.1920,0,88,0.130,0.0,1.0 +2002,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,18.3,7.8,50,101900,1202,1325,358,735,373,396,80700,40600,43900,20320,140,4.1,10,7,16.0,6706,9,999999999,150,0.1920,0,88,0.130,0.0,1.0 +2002,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,19.4,6.1,42,101800,1246,1325,385,820,516,333,88700,54000,37800,23190,160,4.1,10,10,16.0,6706,9,999999999,160,0.1920,0,88,0.130,0.0,1.0 +2002,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,20.0,6.7,42,101800,1229,1325,371,862,581,321,93300,60800,36800,20450,140,4.1,9,8,16.0,8230,9,999999999,160,0.1920,0,88,0.130,0.0,1.0 +2002,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,22.8,8.3,39,101700,1153,1325,367,813,633,261,85500,64000,29700,11860,270,3.1,3,3,16.0,10668,9,999999999,170,0.1920,0,88,0.130,0.0,1.0 +2002,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,23.3,7.8,37,101700,1021,1325,369,729,709,182,77600,72400,21700,6020,320,4.6,4,3,16.0,8230,9,999999999,179,0.1920,0,88,0.130,0.0,1.0 +2002,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,21.7,9.4,45,101700,844,1325,383,560,604,175,58500,60600,19900,4290,150,4.1,10,8,16.0,8230,9,999999999,200,0.1920,0,88,0.130,0.0,1.0 +2002,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,21.1,9.4,47,101700,634,1325,374,355,339,193,38000,34800,21300,4280,120,4.1,10,7,16.0,7620,9,999999999,200,0.1920,0,88,0.130,0.0,1.0 +2002,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,20.6,10.6,53,101700,404,1325,368,139,62,120,15200,5700,13500,3160,120,3.1,10,6,16.0,4572,9,999999999,200,0.1920,0,88,0.130,0.0,1.0 +2002,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,18.9,12.2,65,101700,172,1325,390,53,81,42,5800,5100,5100,880,90,2.6,10,10,16.0,7620,9,999999999,200,0.1920,0,88,0.130,0.0,1.0 +2002,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,19.4,12.2,63,101700,9,409,355,0,0,0,0,0,0,0,200,5.2,4,3,16.0,77777,9,999999999,200,0.1920,0,88,0.130,0.0,1.0 +2002,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,17.8,11.7,67,101700,0,0,366,0,0,0,0,0,0,0,200,5.7,9,8,16.0,77777,9,999999999,200,0.1920,0,88,0.130,0.0,1.0 +2002,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,16.7,11.7,72,101700,0,0,339,0,0,0,0,0,0,0,200,4.1,2,2,16.0,77777,9,999999999,200,0.1920,0,88,0.130,0.0,1.0 +2002,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.1,11.1,72,101800,0,0,344,0,0,0,0,0,0,0,220,4.6,5,5,16.0,4877,9,999999999,220,0.1920,0,88,0.130,0.0,1.0 +2002,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,11.1,72,101800,0,0,351,0,0,0,0,0,0,0,210,3.6,7,7,16.0,3658,9,999999999,250,0.1920,0,88,0.130,0.0,1.0 +2002,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,15.0,11.1,77,101700,0,0,333,0,0,0,0,0,0,0,210,4.1,3,3,16.0,77777,9,999999999,270,0.1920,0,88,0.130,0.0,1.0 +2002,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.0,11.1,77,101600,0,0,351,0,0,0,0,0,0,0,230,5.7,8,8,16.0,77777,9,999999999,300,0.1920,0,88,0.130,0.0,1.0 +2002,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,15.0,10.6,75,101500,0,0,350,0,0,0,0,0,0,0,220,4.6,8,8,16.0,77777,9,999999999,329,0.1920,0,88,0.130,0.0,1.0 +2002,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,15.6,10.6,72,101500,0,0,371,0,0,0,0,0,0,0,220,6.7,10,10,16.0,3048,9,999999999,359,0.1920,0,88,0.130,0.0,1.0 +2002,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,16.1,10.0,67,101500,75,1137,373,0,0,0,0,0,0,0,220,6.2,10,10,16.0,3048,9,999999999,359,0.1920,0,88,0.130,0.0,1.0 +2002,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,16.1,10.0,67,101400,298,1325,373,67,0,67,7600,0,7600,2450,220,6.2,10,10,16.0,3048,9,999999999,350,0.1920,0,88,0.130,0.0,1.0 +2002,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,17.2,11.1,67,101400,531,1325,380,105,0,105,12200,0,12200,4410,220,7.7,10,10,16.0,2591,9,999999999,350,0.1920,0,88,0.130,0.0,1.0 +2002,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.9,12.8,68,101300,752,1325,391,409,239,273,44400,24800,30300,7170,230,7.7,10,10,16.0,3048,9,999999999,350,0.1920,0,88,0.130,0.0,1.0 +2002,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,21.7,15.6,68,101100,946,1325,399,523,291,314,56500,31400,34000,9270,220,7.7,9,9,16.0,6706,9,999999999,359,0.1920,0,88,0.130,0.0,1.0 +2002,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,24.4,17.2,64,101000,1100,1325,401,741,592,249,77800,59800,28100,9660,0,0.0,8,7,0.2,7500,9,999999999,359,0.1920,0,88,0.130,0.0,1.0 +2002,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,17.8,58,101000,1202,1325,406,827,602,279,87000,60800,31600,15230,250,7.7,5,5,12.8,77777,9,999999999,370,0.1920,0,88,0.130,0.0,1.0 +2002,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,18.3,55,100900,1247,1325,409,881,612,303,92500,61700,34300,20420,240,6.7,3,3,12.8,77777,9,999999999,370,0.1920,0,88,0.130,0.0,1.0 +2002,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,18.9,51,100800,1230,1325,401,874,629,288,91900,63600,32800,17830,240,7.7,0,0,11.2,77777,9,999999999,379,0.1920,0,88,0.130,0.0,1.0 +2002,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,18.9,48,100700,1153,1325,407,796,580,290,86300,60700,33300,13580,230,8.8,0,0,11.2,9144,9,999999999,379,0.1920,0,88,0.130,0.0,1.0 +2002,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,31.7,18.3,45,100600,1022,1325,431,724,661,213,76200,66900,24400,6940,250,8.2,4,4,12.8,9144,9,999999999,379,0.1920,0,88,0.130,0.0,1.0 +2002,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,17.8,13.3,75,100700,845,1325,367,521,426,249,54700,43800,26700,6310,60,9.8,8,8,16.0,1829,9,999999999,379,0.1920,0,88,0.130,0.0,1.0 +2002,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,16.1,12.8,81,100800,635,1325,353,86,0,86,10400,0,10400,4000,60,6.7,8,7,16.0,77777,9,999999999,379,0.1920,0,88,0.130,0.0,1.0 +2002,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,15.0,12.8,87,100900,405,1325,371,149,85,123,16300,7800,13900,3230,40,8.2,10,10,16.0,1676,9,999999999,379,0.1920,0,88,0.130,4.0,1.0 +2002,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,13.9,12.2,89,101000,174,1325,364,11,0,11,1400,0,1400,450,60,5.2,10,10,12.8,1676,9,999999999,390,0.1920,0,88,0.130,1.0,1.0 +2002,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,13.9,12.2,89,101000,10,431,364,0,0,0,0,0,0,0,50,4.1,10,10,14.4,305,9,999999999,400,0.1920,0,88,0.130,0.0,1.0 +2002,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,13.3,12.2,93,101000,0,0,361,0,0,0,0,0,0,0,50,4.1,10,10,16.0,305,9,999999999,419,0.1920,0,88,0.130,0.0,1.0 +2002,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,13.3,11.7,90,101000,0,0,361,0,0,0,0,0,0,0,40,4.6,10,10,16.0,244,9,999999999,440,0.1920,0,88,0.130,0.0,1.0 +2002,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,13.3,11.7,90,101100,0,0,361,0,0,0,0,0,0,0,20,6.2,10,10,16.0,305,9,999999999,430,0.1920,0,88,0.130,0.0,1.0 +2002,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,12.8,11.1,89,101000,0,0,358,0,0,0,0,0,0,0,20,4.6,10,10,16.0,305,9,999999999,430,0.1920,0,88,0.130,0.0,1.0 +2002,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,12.8,10.6,86,101000,0,0,357,0,0,0,0,0,0,0,20,5.2,10,10,16.0,305,9,999999999,419,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,10.6,90,100900,0,0,354,0,0,0,0,0,0,0,60,3.1,10,10,16.0,305,9,999999999,419,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,10.6,90,100900,0,0,354,0,0,0,0,0,0,0,40,3.1,10,10,16.0,305,9,999999999,430,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,10.6,90,100800,0,0,354,0,0,0,0,0,0,0,20,3.6,10,10,16.0,305,9,999999999,430,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,10.6,90,100800,76,1137,354,0,0,0,0,0,0,0,50,3.6,10,10,14.4,244,9,999999999,419,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,11.1,93,100800,298,1325,355,67,0,67,7600,0,7600,2450,30,3.1,10,10,6.4,244,9,999999999,419,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,11.1,93,100800,531,1325,355,84,0,84,10000,0,10000,3670,40,3.6,10,10,3.2,122,9,999999999,419,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.1,89,100800,752,1325,358,105,0,105,12800,0,12800,5070,30,3.1,10,10,3.2,183,9,999999999,430,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.1,89,100700,946,1325,358,159,0,159,19300,0,19300,7900,360,3.6,10,10,3.2,183,9,999999999,430,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.1,89,100700,1100,1325,358,162,0,162,20100,0,20100,8350,10,3.1,10,10,3.2,183,9,999999999,440,0.1930,0,88,0.130,0.0,1.0 +2002,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,13.3,11.1,87,100700,1202,1325,360,147,0,147,18600,0,18600,7740,40,3.1,10,10,16.0,244,9,999999999,440,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.1,89,100700,1247,1325,358,187,6,181,23400,400,23000,9350,30,4.1,10,10,16.0,244,9,999999999,430,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.1,89,100700,1230,1325,358,190,0,190,23700,0,23700,9740,20,4.6,10,10,14.4,244,9,999999999,430,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.1,89,100600,1154,1325,358,152,0,152,19100,0,19100,7940,30,6.2,10,10,16.0,305,9,999999999,440,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,10.6,90,100700,1023,1325,354,121,0,121,15200,0,15200,6360,10,6.7,10,10,9.6,244,9,999999999,440,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.0,11.0,94,100700,847,1325,353,106,0,106,13100,0,13100,5340,30,5.1,10,10,9.7,330,9,999999999,450,0.1930,0,88,0.130,3.0,1.0 +2002,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,11.7,10.6,93,100800,636,1325,352,102,0,102,12200,0,12200,4640,20,5.7,10,10,12.8,335,9,999999999,440,0.1930,0,88,0.130,0.0,1.0 +2002,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,11.7,10.6,93,100800,407,1325,352,80,0,80,9200,0,9200,3180,10,9.3,10,10,11.2,274,9,999999999,440,0.1930,0,88,0.130,0.0,1.0 +2002,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,11.1,10.0,93,100900,175,1325,348,15,0,15,1800,0,1800,610,20,6.2,10,10,9.6,274,9,999999999,430,0.1930,0,88,0.130,0.0,1.0 +2002,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,11.1,10.0,93,101000,10,430,348,0,0,0,0,0,0,0,30,6.2,10,10,14.4,274,9,999999999,400,0.1930,0,88,0.130,0.0,1.0 +2002,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,11.1,9.4,89,101000,0,0,347,0,0,0,0,0,0,0,20,7.2,10,10,16.0,274,9,999999999,370,0.1930,0,88,0.130,0.0,1.0 +2002,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,11.1,9.4,89,101100,0,0,347,0,0,0,0,0,0,0,30,6.2,10,10,16.0,274,9,999999999,340,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.6,9.4,92,101100,0,0,345,0,0,0,0,0,0,0,40,5.7,10,10,16.0,274,9,999999999,320,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.6,9.4,92,101100,0,0,345,0,0,0,0,0,0,0,20,4.1,10,10,11.2,274,9,999999999,290,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.6,9.4,92,101100,0,0,345,0,0,0,0,0,0,0,30,5.2,10,10,16.0,457,9,999999999,270,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.6,9.4,92,101100,0,0,345,0,0,0,0,0,0,0,20,3.6,10,10,14.4,305,9,999999999,270,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.6,8.9,89,101100,0,0,344,0,0,0,0,0,0,0,20,4.6,10,10,16.0,244,9,999999999,270,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.6,9.4,92,101200,0,0,345,0,0,0,0,0,0,0,20,3.1,10,10,16.0,305,9,999999999,259,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.6,10.0,96,101200,76,1137,345,0,0,0,0,0,0,0,360,2.6,10,10,3.2,183,9,999999999,270,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.6,9.4,92,101200,298,1324,345,50,0,50,5800,0,5800,1950,350,3.1,10,10,3.2,213,9,999999999,270,0.1930,0,88,0.130,0.0,1.0 +2002,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,11.7,9.4,86,101200,531,1324,350,119,0,119,13700,0,13700,4860,360,3.1,10,10,16.0,305,9,999999999,279,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,9.4,83,101200,752,1324,353,145,0,145,17200,0,17200,6660,10,2.1,10,10,16.0,366,9,999999999,270,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,10.0,83,101200,946,1324,356,261,12,253,30700,1000,29900,11460,40,2.6,10,10,16.0,366,9,999999999,259,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,10.0,83,101200,1099,1324,356,262,6,257,31400,500,31000,12270,140,3.6,10,10,16.0,427,9,999999999,240,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,10.0,83,101300,1202,1324,356,337,12,326,40200,1100,39300,15020,150,3.6,10,10,16.0,518,9,999999999,240,0.1930,0,88,0.130,0.0,1.0 +2002,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,13.9,10.6,80,101300,1247,1324,363,368,24,345,40700,2500,38400,19330,130,3.6,10,10,16.0,579,9,999999999,240,0.1930,0,88,0.130,0.0,1.0 +2002,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,14.4,11.1,81,101200,1231,1324,339,464,96,374,51600,10300,42000,20280,140,4.1,6,6,16.0,6706,9,999999999,240,0.1930,0,88,0.130,0.0,1.0 +2002,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,15.6,11.7,78,101200,1155,1324,339,813,556,328,87100,58100,36400,15550,130,4.6,4,4,16.0,6706,9,999999999,250,0.1930,0,88,0.130,0.0,1.0 +2002,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,16.1,11.7,75,101100,1024,1324,342,666,536,251,72000,55900,28600,8340,130,5.2,4,4,16.0,77777,9,999999999,259,0.1930,0,88,0.130,0.0,1.0 +2002,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,15.6,11.7,78,101100,848,1324,342,532,539,187,57600,55700,21900,4630,120,6.7,5,5,16.0,7620,9,999999999,259,0.1930,0,88,0.130,0.0,1.0 +2002,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,14.4,11.7,84,101100,638,1324,339,356,334,195,38100,34400,21500,4340,120,6.2,7,6,16.0,7620,9,999999999,259,0.1930,0,88,0.130,0.0,1.0 +2002,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,14.4,12.2,87,101100,409,1324,349,144,63,125,15800,5800,14000,3280,120,4.6,8,8,16.0,6096,9,999999999,250,0.1930,0,88,0.130,0.0,1.0 +2002,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,14.4,12.2,87,101100,177,1324,357,38,0,38,4300,0,4300,1330,130,1.5,9,9,16.0,6096,9,999999999,250,0.1930,0,88,0.130,0.0,1.0 +2002,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,16.7,12.8,78,101200,11,452,380,0,0,0,0,0,0,0,200,3.1,10,10,16.0,4572,9,999999999,240,0.1930,0,88,0.130,0.0,1.0 +2002,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,16.1,12.8,81,101200,0,0,358,0,0,0,0,0,0,0,220,3.6,9,8,16.0,4572,9,999999999,240,0.1930,0,88,0.130,0.0,1.0 +2002,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,15.6,12.2,80,101200,0,0,350,0,0,0,0,0,0,0,200,3.1,8,7,14.4,6096,9,999999999,229,0.1930,0,88,0.130,0.0,1.0 +2002,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,14.4,12.2,87,101100,0,0,337,0,0,0,0,0,0,0,200,2.1,7,5,12.8,77777,9,999999999,229,0.1930,0,88,0.130,0.0,1.0 +2002,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,13.9,12.2,89,101200,0,0,316,0,0,0,0,0,0,0,230,2.6,0,0,11.2,77777,9,999999999,229,0.1930,0,88,0.130,0.0,1.0 +2002,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,13.3,12.2,93,101200,0,0,313,0,0,0,0,0,0,0,210,3.6,0,0,11.2,77777,9,999999999,229,0.1930,0,88,0.130,0.0,1.0 +2002,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,13.3,11.7,90,101100,0,0,338,0,0,0,0,0,0,0,210,2.1,9,7,9.6,7620,9,999999999,229,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,101100,0,0,341,0,0,0,0,0,0,0,200,2.6,8,8,9.6,77777,9,999999999,229,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,101100,0,0,358,0,0,0,0,0,0,0,220,4.1,10,10,1.6,122,9,999999999,240,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,12.2,96,101100,76,1136,359,0,0,0,0,0,0,0,250,3.1,10,10,1.6,122,9,999999999,220,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,12.2,96,101100,298,1324,359,50,0,50,5800,0,5800,1950,200,1.5,10,10,1.6,122,9,999999999,209,0.1930,0,88,0.130,0.0,1.0 +2002,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,13.3,12.2,93,101100,531,1324,361,91,0,91,10700,0,10700,3930,190,2.1,10,10,1.2,61,9,999999999,200,0.1930,0,88,0.130,0.0,1.0 +2002,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,15.0,13.0,88,101100,752,1324,371,330,116,263,36100,11700,29500,8160,130,3.6,10,10,4.8,150,9,999999999,229,0.1930,0,88,0.130,0.0,1.0 +2002,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,15.6,12.8,83,101100,946,1324,346,280,18,267,32700,1600,31600,11920,110,2.6,10,6,4.8,6096,9,999999999,270,0.1930,0,88,0.130,0.0,1.0 +2002,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,15.6,12.8,83,101100,1099,1324,350,461,97,381,50900,10000,42600,15900,80,3.6,10,7,4.8,4572,9,999999999,300,0.1930,0,88,0.130,0.0,1.0 +2002,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,14.4,12.2,87,101100,1202,1324,340,300,12,289,36100,1000,35200,13710,80,4.6,10,6,11.2,3962,9,999999999,309,0.1930,0,88,0.130,0.0,1.0 +2002,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,14.4,12.2,87,101100,1247,1324,344,241,6,236,29700,500,29300,11730,80,4.6,10,7,16.0,3962,9,999999999,320,0.1930,0,88,0.130,0.0,1.0 +2002,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,13.9,11.7,87,101000,1231,1324,346,226,6,220,27800,500,27400,11040,90,7.2,10,8,16.0,1524,9,999999999,329,0.1930,0,88,0.130,0.0,1.0 +2002,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,13.3,12.2,93,101000,1155,1324,361,170,0,170,21200,0,21200,8770,80,5.2,10,10,4.8,122,9,999999999,340,0.1930,0,88,0.130,0.0,1.0 +2002,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,13.3,11.7,90,101000,1025,1324,361,184,0,184,22400,0,22400,9180,80,3.6,10,10,16.0,122,9,999999999,350,0.1930,0,88,0.130,0.0,1.0 +2002,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,13.3,11.7,90,101100,849,1324,361,135,0,135,16400,0,16400,6600,80,4.6,10,10,16.0,183,9,999999999,359,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,101100,639,1324,358,135,0,135,15800,0,15800,5840,80,5.2,10,10,16.0,244,9,999999999,359,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,101000,410,1324,358,60,0,60,7100,0,7100,2520,90,5.7,10,10,16.0,183,9,999999999,370,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,11.1,93,101000,178,1324,355,19,0,19,2300,0,2300,750,90,5.2,10,10,12.8,183,9,999999999,370,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,11.1,93,101000,11,452,355,0,0,0,0,0,0,0,100,6.7,10,10,16.0,335,9,999999999,370,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,10.6,90,101100,0,0,354,0,0,0,0,0,0,0,70,4.6,10,10,16.0,274,9,999999999,379,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.0,11.0,94,101000,0,0,353,0,0,0,0,0,0,0,50,4.6,10,10,16.1,2100,9,999999999,379,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,10.6,90,101000,0,0,354,0,0,0,0,0,0,0,50,4.1,10,10,16.0,1829,9,999999999,379,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,11.1,93,101000,0,0,355,0,0,0,0,0,0,0,20,4.1,10,10,14.4,1402,9,999999999,379,0.1930,0,88,0.130,0.0,1.0 +2002,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,11.7,10.6,93,101000,0,0,352,0,0,0,0,0,0,0,40,5.7,10,10,8.0,274,9,999999999,390,0.1930,0,88,0.130,1.0,1.0 +2002,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,11.7,10.6,93,100900,0,0,352,0,0,0,0,0,0,0,50,5.7,10,10,8.0,274,9,999999999,390,0.1930,0,88,0.130,1.0,1.0 +2002,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,11.7,10.6,93,100800,0,0,352,0,0,0,0,0,0,0,40,7.2,10,10,9.6,213,9,999999999,390,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.6,93,100800,0,0,352,0,0,0,0,0,0,0,40,6.7,10,10,6.4,549,9,999999999,400,0.1930,0,88,0.130,3.0,1.0 +2002,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.1,10.6,97,100700,76,1136,349,0,0,0,0,0,0,0,50,7.7,10,10,6.4,244,9,999999999,390,0.1930,0,88,0.130,3.0,1.0 +2002,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,11.7,10.6,93,100800,298,1324,352,50,0,50,5800,0,5800,1950,50,9.3,10,10,6.4,244,9,999999999,390,0.1930,0,88,0.130,1.0,1.0 +2002,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,11.7,10.6,93,100700,530,1324,352,49,0,49,6000,0,6000,2280,40,9.3,10,10,4.0,914,9,999999999,390,0.1930,0,88,0.130,2.0,1.0 +2002,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,11.7,10.6,93,100700,751,1324,352,86,0,86,10600,0,10600,4250,50,9.3,10,10,3.2,274,9,999999999,379,0.1930,0,88,0.130,2.0,1.0 +2002,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,11.7,10.6,93,100600,945,1324,352,127,0,127,15700,0,15700,6500,50,8.2,10,10,2.8,274,9,999999999,379,0.1930,0,88,0.130,1.0,1.0 +2002,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,12.2,11.1,93,100500,1099,1324,355,168,0,168,20800,0,20800,8620,30,10.3,10,10,4.8,213,9,999999999,379,0.1930,0,88,0.130,1.0,1.0 +2002,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,13.0,11.0,88,100500,1202,1324,358,159,0,159,20000,0,20000,8300,40,9.3,10,10,16.1,330,9,999999999,370,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,100500,1247,1324,358,338,24,315,37400,2400,35100,17830,40,9.8,10,10,8.0,335,9,999999999,359,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.1,89,100400,1231,1324,358,214,0,214,26500,0,26500,10780,40,8.8,10,10,11.2,305,9,999999999,340,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.8,11.1,89,100400,1156,1324,358,211,0,211,25900,0,25900,10550,40,10.3,10,10,8.0,396,9,999999999,329,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.2,10.0,86,100400,1026,1324,353,172,0,172,21000,0,21000,8670,40,7.7,10,10,9.6,396,9,999999999,320,0.1930,0,88,0.130,0.0,1.0 +2002,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,12.0,11.0,94,100400,850,1324,353,157,0,157,18800,0,18800,7500,30,8.7,10,10,4.0,210,9,999999999,309,0.1930,0,88,0.130,0.0,1.0 +2002,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,11.7,10.6,93,100400,640,1324,352,119,0,119,14000,0,14000,5290,20,7.2,10,10,4.0,274,9,999999999,279,0.1930,0,88,0.130,0.0,1.0 +2002,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,11.1,10.0,93,100500,411,1324,348,80,0,80,9200,0,9200,3200,20,7.7,10,10,4.8,274,9,999999999,259,0.1930,0,88,0.130,0.0,1.0 +2002,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,11.1,10.0,93,100500,180,1324,348,31,0,31,3600,0,3600,1140,20,6.2,10,10,6.4,274,9,999999999,229,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.6,9.4,92,100600,12,452,345,0,0,0,0,0,0,0,20,7.7,10,10,8.0,274,9,999999999,240,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.0,8.9,93,100600,0,0,341,0,0,0,0,0,0,0,20,6.2,10,10,11.2,274,9,999999999,250,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.0,8.3,89,100600,0,0,341,0,0,0,0,0,0,0,10,5.7,10,10,16.0,335,9,999999999,250,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.0,8.3,89,100700,0,0,341,0,0,0,0,0,0,0,350,3.6,10,10,16.0,366,9,999999999,250,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.0,8.9,93,100700,0,0,341,0,0,0,0,0,0,0,340,3.1,10,10,16.0,427,9,999999999,250,0.1930,0,88,0.130,0.0,1.0 +2002,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,10.0,8.3,89,100700,0,0,341,0,0,0,0,0,0,0,10,4.1,10,10,16.0,274,9,999999999,250,0.1940,0,88,0.130,0.0,1.0 +2002,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,10.0,8.3,89,100700,0,0,341,0,0,0,0,0,0,0,360,4.1,10,10,16.0,274,9,999999999,259,0.1940,0,88,0.130,0.0,1.0 +2002,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,10.0,8.0,87,100700,0,0,340,0,0,0,0,0,0,0,340,2.1,10,10,16.1,450,9,999999999,259,0.1940,0,88,0.130,0.0,1.0 +2002,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,10.6,8.3,86,100700,0,0,343,0,0,0,0,0,0,0,360,2.6,10,10,16.0,335,9,999999999,259,0.1940,0,88,0.130,0.0,1.0 +2002,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,10.6,8.9,89,100700,76,1136,344,0,0,0,0,0,0,0,20,2.1,10,10,16.0,335,9,999999999,250,0.1940,0,88,0.130,0.0,1.0 +2002,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,10.6,8.3,86,100800,298,1324,343,109,67,94,11900,5700,10700,2310,20,2.1,10,10,16.0,427,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,11.1,8.9,86,100800,530,1324,347,105,0,105,12200,0,12200,4410,90,1.5,10,10,12.8,427,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,11.1,8.9,86,100800,751,1324,347,132,0,132,15800,0,15800,6160,110,2.6,10,10,16.0,366,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,11.1,8.9,86,100800,945,1324,347,178,0,178,21400,0,21400,8690,130,2.1,10,10,16.0,427,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,11.1,9.4,89,100800,1099,1324,347,143,0,143,17900,0,17900,7480,120,2.1,10,10,16.0,305,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,11.7,9.4,86,100800,1202,1324,350,159,0,159,20000,0,20000,8300,110,2.6,10,10,16.0,366,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,12.2,10.0,86,100700,1247,1324,353,187,6,181,23400,400,23000,9350,90,3.6,10,10,16.0,366,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.3,10.6,84,100700,1231,1324,359,404,60,348,44700,6100,39000,18720,90,4.6,10,10,16.0,427,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.9,10.6,80,100700,1156,1324,345,691,335,398,75500,36400,43600,17780,80,5.7,8,8,16.0,579,9,999999999,250,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.9,11.1,83,100700,1026,1324,346,391,83,326,43100,8500,36500,12740,80,6.2,8,8,16.0,792,9,999999999,259,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.9,11.7,87,100700,851,1324,354,477,314,275,51400,33600,29800,7250,40,6.2,9,9,16.0,792,9,999999999,270,0.1940,0,88,0.130,0.0,1.0 +2002,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,12.8,10.6,86,100700,641,1324,357,297,176,211,32300,17900,23600,5200,20,6.7,10,10,16.0,1341,9,999999999,270,0.1940,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,100700,413,1324,358,35,0,35,4300,0,4300,1570,40,5.7,10,10,4.8,701,9,999999999,279,0.1940,0,88,0.130,5.0,1.0 +2002,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,12.2,11.1,93,100700,181,1324,355,23,0,23,2700,0,2700,890,120,3.1,10,10,14.4,183,9,999999999,290,0.1940,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,100700,12,474,358,0,0,0,0,0,0,0,200,3.1,10,10,14.4,122,9,999999999,279,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.3,12.2,93,100800,0,0,361,0,0,0,0,0,0,0,270,2.1,10,10,9.6,122,9,999999999,270,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.3,12.2,93,100800,0,0,344,0,0,0,0,0,0,0,310,2.1,8,8,3.2,152,9,999999999,259,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.3,12.2,93,100800,0,0,344,0,0,0,0,0,0,0,310,1.5,8,8,3.2,122,9,999999999,259,0.1940,0,88,0.130,0.0,1.0 +2002,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,12.8,11.7,93,100800,0,0,341,0,0,0,0,0,0,0,0,0.0,8,8,3.2,3353,9,999999999,259,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.3,12.8,97,100700,0,0,362,0,0,0,0,0,0,0,220,2.6,10,10,3.2,122,9,999999999,259,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.3,12.8,97,100700,0,0,362,0,0,0,0,0,0,0,220,2.6,10,10,1.6,61,9,999999999,250,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.3,12.8,97,100700,0,0,362,0,0,0,0,0,0,0,280,2.1,10,10,1.6,122,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.3,12.8,97,100800,0,0,362,0,0,0,0,0,0,0,200,2.6,10,10,4.8,122,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.3,12.8,97,100800,75,1136,362,0,0,0,0,0,0,0,210,2.1,10,10,3.2,122,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.9,12.8,93,100900,297,1323,348,109,47,98,11900,4000,11000,2380,200,2.6,8,8,3.2,122,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,14.4,13.3,93,100900,530,1323,351,211,88,176,23200,8500,19700,4840,210,2.1,8,8,3.2,122,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.1,13.9,87,101000,750,1323,327,495,533,192,52500,54300,21600,4350,180,2.1,0,0,12.8,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,19.4,13.3,68,100900,944,1323,357,663,674,181,69900,68300,21100,5180,270,5.2,3,3,16.0,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,21.1,12.2,57,100900,1098,1323,364,785,713,193,84000,73000,23300,7660,250,5.7,3,3,16.0,77777,9,999999999,189,0.1940,0,88,0.130,0.0,1.0 +2002,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,22.2,11.7,51,100900,1201,1323,369,870,692,240,92500,70500,28300,13280,260,6.2,3,3,16.0,77777,9,999999999,189,0.1940,0,88,0.130,0.0,1.0 +2002,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,22.8,11.1,48,100900,1247,1323,371,935,739,238,100100,75500,28800,16440,260,4.6,3,3,16.0,77777,9,999999999,189,0.1940,0,88,0.130,0.0,1.0 +2002,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,23.3,10.0,43,100900,1232,1323,375,850,533,353,91300,55700,39300,23000,260,6.2,4,4,16.0,7620,9,999999999,189,0.1940,0,88,0.130,0.0,1.0 +2002,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,23.9,10.0,41,100900,1157,1323,378,498,114,398,54900,12200,44200,17310,270,5.7,4,4,16.0,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,23.9,10.6,43,100900,1027,1323,396,581,304,344,63000,32900,37500,11500,240,5.2,8,8,16.0,2286,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,24.4,10.0,40,100900,851,1323,381,578,586,200,62100,60500,23100,5000,260,4.1,4,4,16.0,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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.9,10.0,41,100900,642,1323,375,405,562,131,41900,54800,15300,2680,230,5.2,3,3,16.0,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,24.4,9.4,39,101000,414,1323,377,234,444,96,24800,39800,12300,1790,240,5.2,3,3,16.0,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,23.3,9.4,41,101000,182,1323,377,70,199,42,7300,12300,5600,750,240,3.1,6,5,16.0,77777,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,19.0,12.0,64,101100,12,474,391,0,0,0,0,0,0,0,60,1.5,10,10,16.1,2700,9,999999999,229,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.7,13.3,80,101300,0,0,380,0,0,0,0,0,0,0,220,3.6,10,10,6.4,1219,9,999999999,240,0.1940,0,88,0.130,4.0,1.0 +2002,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,16.7,12.8,78,101400,0,0,380,0,0,0,0,0,0,0,260,4.1,10,10,16.0,2743,9,999999999,250,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.1,13.3,83,101300,0,0,377,0,0,0,0,0,0,0,170,3.1,10,10,16.0,3048,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.1,12.8,81,101300,0,0,349,0,0,0,0,0,0,0,220,2.6,6,6,16.0,77777,9,999999999,229,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.7,12.2,75,101400,0,0,361,0,0,0,0,0,0,0,250,3.1,8,8,16.0,2743,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,15.0,12.8,87,101300,0,0,338,0,0,0,0,0,0,0,210,3.1,4,4,16.0,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,15.6,12.2,80,101400,0,0,337,0,0,0,0,0,0,0,280,3.6,3,3,16.0,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,15.0,12.2,83,101500,0,0,321,0,0,0,0,0,0,0,290,4.1,0,0,16.0,77777,9,999999999,189,0.1940,0,88,0.130,0.0,1.0 +2002,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,15.6,11.1,75,101600,75,1136,322,0,0,0,0,0,0,0,290,3.6,0,0,16.0,77777,9,999999999,179,0.1940,0,88,0.130,0.0,1.0 +2002,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.2,10.6,65,101700,297,1323,329,151,249,95,15800,19700,11300,1890,270,3.6,0,0,16.0,77777,9,999999999,170,0.1940,0,88,0.130,0.0,1.0 +2002,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,11.1,65,101700,529,1323,332,302,445,124,32000,42700,14900,2410,290,4.6,0,0,16.0,77777,9,999999999,170,0.1940,0,88,0.130,0.0,1.0 +2002,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,18.9,11.1,61,101800,750,1323,337,488,570,165,52600,58200,19600,3680,290,5.2,0,0,16.0,77777,9,999999999,170,0.1940,0,88,0.130,0.0,1.0 +2002,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,20.0,10.6,55,101800,944,1323,348,663,680,177,70100,69000,20700,5070,280,5.2,1,1,16.0,77777,9,999999999,160,0.1940,0,88,0.130,0.0,1.0 +2002,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,21.1,10.6,51,101800,1098,1323,354,785,700,203,83600,71500,24200,8020,290,5.2,1,1,16.0,77777,9,999999999,160,0.1940,0,88,0.130,0.0,1.0 +2002,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,22.2,11.7,51,101800,1201,1323,360,894,777,188,93600,78100,22600,9600,280,3.6,1,1,16.0,77777,9,999999999,170,0.1940,0,88,0.130,0.0,1.0 +2002,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,23.3,11.1,46,101800,1247,1323,365,941,757,227,101100,77500,27800,15730,280,4.1,1,1,16.0,77777,9,999999999,179,0.1940,0,88,0.130,0.0,1.0 +2002,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,23.3,10.0,43,101900,1232,1323,357,832,557,313,90500,58400,36100,20340,280,4.6,0,0,16.0,77777,9,999999999,189,0.1940,0,88,0.130,0.0,1.0 +2002,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,24.4,11.1,43,101900,1157,1323,363,632,263,402,69000,28600,44000,18040,280,5.2,0,0,16.0,77777,9,999999999,189,0.1940,0,88,0.130,0.0,1.0 +2002,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,25.0,10.6,40,101900,1028,1323,366,719,560,283,76700,58300,31300,9570,290,5.2,0,0,16.0,2438,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,6,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,10.0,39,101900,852,1323,365,308,124,228,34200,13100,25700,6440,280,2.6,0,0,16.0,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,25.0,9.4,37,101900,643,1323,364,410,509,162,43300,50800,18600,3370,270,3.6,0,0,16.0,77777,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,25.0,10.0,39,101900,415,1323,381,230,410,101,24100,36800,12600,1890,270,3.6,3,3,16.0,77777,9,999999999,229,0.1940,0,88,0.130,0.0,1.0 +2002,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,20.0,12.8,63,102000,184,1323,359,70,194,43,7300,12000,5600,770,120,2.1,3,3,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,18.9,13.9,73,102100,13,474,355,0,0,0,0,0,0,0,70,2.1,3,3,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.2,13.3,78,102200,0,0,346,0,0,0,0,0,0,0,10,2.6,3,3,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.7,13.3,80,102200,0,0,346,0,0,0,0,0,0,0,10,2.6,4,4,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.1,13.9,87,102300,0,0,327,0,0,0,0,0,0,0,130,2.1,0,0,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.7,13.3,80,102300,0,0,340,0,0,0,0,0,0,0,0,0.0,2,2,16.0,6096,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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.9,12.2,65,102300,0,0,338,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.8,12.2,70,102300,0,0,333,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.8,11.7,67,102400,0,0,333,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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.2,12.2,72,102400,0,0,345,0,0,0,0,0,0,0,300,1.5,3,3,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,11.7,70,102500,75,1135,344,0,0,0,0,0,0,0,330,2.1,3,3,16.0,3658,9,999999999,229,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.2,12.2,72,102500,296,1323,381,67,0,67,7600,0,7600,2450,10,2.6,10,10,16.0,3048,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.8,13.3,75,102600,528,1323,367,197,75,167,21600,7200,18700,4650,20,2.1,8,8,16.0,3353,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,18.3,13.3,73,102700,749,1323,370,429,294,262,45700,31000,28100,6440,80,3.1,8,8,16.0,2591,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.8,12.8,73,102700,943,1323,375,268,24,250,31300,2100,29900,11350,70,2.6,9,9,16.0,2896,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.2,12.2,72,102800,1097,1323,371,156,0,156,19400,0,19400,8080,110,1.5,9,9,16.0,2134,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.7,13.3,80,102800,1201,1323,380,141,0,141,17900,0,17900,7460,80,4.1,10,10,16.0,3048,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.8,13.3,75,102800,1247,1323,367,314,36,280,34900,3700,31400,16040,80,2.1,8,8,16.0,3048,9,999999999,229,0.1940,0,88,0.130,0.0,1.0 +2002,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,19.4,13.9,70,102800,1232,1323,376,904,647,300,94900,65200,34000,18880,80,4.1,8,8,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,20.0,13.3,65,102800,1157,1323,398,855,771,179,89400,77500,21500,7730,90,4.1,10,10,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,19.4,13.9,70,102800,1028,1323,376,730,691,192,77500,70400,22600,6430,80,5.2,8,8,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,18.3,13.9,76,102800,853,1323,352,567,604,176,59200,60600,20000,4370,80,5.2,4,3,16.0,4877,9,999999999,250,0.1940,0,88,0.130,0.0,1.0 +2002,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,18.9,13.9,73,102800,644,1323,355,383,474,152,40800,47300,17700,3140,80,2.6,3,3,16.0,77777,9,999999999,250,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.8,13.9,78,102900,416,1323,350,215,336,109,22300,30100,12900,2060,70,4.6,3,3,16.0,77777,9,999999999,250,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.1,13.9,87,102900,185,1323,347,70,174,46,7400,10500,6000,840,70,2.6,6,5,16.0,77777,9,999999999,250,0.1940,0,88,0.130,0.0,1.0 +2002,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,15.6,13.9,90,102900,13,496,344,0,0,0,0,0,0,0,90,2.6,5,5,16.0,77777,9,999999999,240,0.1940,0,88,0.130,0.0,1.0 +2002,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,15.0,13.9,93,103000,0,0,336,0,0,0,0,0,0,0,110,1.5,3,3,16.0,77777,9,999999999,229,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.1,13.9,87,103000,0,0,327,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,15.6,13.9,90,103000,0,0,325,0,0,0,0,0,0,0,40,2.1,0,0,11.2,77777,9,999999999,220,0.1940,0,88,0.130,0.0,1.0 +2002,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,15.6,13.9,90,103000,0,0,325,0,0,0,0,0,0,0,0,0.0,0,0,12.8,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,15.0,13.9,93,103000,0,0,322,0,0,0,0,0,0,0,70,1.5,0,0,9.6,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,15.0,13.3,90,103000,0,0,322,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,14.4,13.3,93,103000,0,0,319,0,0,0,0,0,0,0,50,1.5,0,0,11.2,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,13.9,12.8,93,103100,0,0,316,0,0,0,0,0,0,0,10,1.5,0,0,6.4,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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.6,13.3,86,103100,74,1135,325,0,0,0,0,0,0,0,340,2.1,0,0,4.8,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.1,13.3,83,103200,295,1323,327,151,283,88,15900,22400,10900,1720,360,2.6,0,0,4.8,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.8,14.4,80,103200,527,1323,336,309,476,119,32800,45700,14600,2300,30,1.5,0,0,4.8,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,17.8,14.4,80,103300,748,1323,336,482,551,169,51700,56200,19800,3770,80,3.1,0,0,4.8,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,18.3,14.4,78,103300,943,1323,338,663,680,178,70100,69000,20800,5090,100,3.6,0,0,16.0,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,18.9,14.4,75,103300,1097,1323,341,785,719,188,84100,73700,22900,7460,80,3.6,0,0,16.0,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,20.0,15.6,76,103300,1200,1323,347,888,758,198,92300,75900,23200,9990,80,4.1,0,0,16.0,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,19.4,15.6,79,103300,1247,1323,344,941,805,181,99400,81200,22700,11770,90,5.2,0,0,16.0,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,19.4,15.6,79,103200,1232,1323,359,928,797,184,97700,80300,22700,10990,80,5.7,3,3,16.0,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,20.6,15.0,70,103200,1158,1323,365,855,771,179,89400,77500,21500,7740,80,5.2,3,3,16.0,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,22.8,13.9,57,103100,1029,1323,374,742,733,171,79400,75100,20900,5800,100,5.7,3,3,16.0,77777,9,999999999,209,0.1940,0,88,0.130,0.0,1.0 +2002,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,22.8,13.3,55,103100,854,1323,374,583,657,158,61400,66300,18500,3990,110,6.2,3,3,16.0,77777,9,999999999,200,0.1940,0,88,0.130,0.0,1.0 +2002,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,22.2,13.3,57,103000,645,1323,371,405,580,122,42200,56800,14500,2540,110,6.7,3,3,16.0,77777,9,999999999,189,0.1940,0,88,0.130,0.0,1.0 +2002,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,21.1,13.9,63,103000,417,1323,366,225,382,105,23600,34300,12800,1980,120,4.6,3,3,16.0,77777,9,999999999,189,0.1940,0,88,0.130,0.0,1.0 +2002,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,22.8,14.4,59,103000,185,1323,381,74,230,42,7800,14400,5800,750,200,4.1,5,5,16.0,77777,9,999999999,179,0.1940,0,88,0.130,0.0,1.0 +2002,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.1,13.3,61,103000,13,496,350,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,170,0.1940,0,88,0.130,0.0,1.0 +2002,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,20.0,11.7,59,103100,0,0,343,0,0,0,0,0,0,0,210,4.1,0,0,16.0,77777,9,999999999,170,0.1940,0,88,0.130,0.0,1.0 +2002,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,18.3,12.8,70,103100,0,0,336,0,0,0,0,0,0,0,210,2.6,0,0,16.0,77777,9,999999999,170,0.1940,0,88,0.130,0.0,1.0 +2002,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,12.8,73,103100,0,0,334,0,0,0,0,0,0,0,170,2.6,0,0,16.0,77777,9,999999999,170,0.1940,0,88,0.130,0.0,1.0 +2002,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,16.7,13.3,80,103100,0,0,329,0,0,0,0,0,0,0,170,1.5,0,0,16.0,77777,9,999999999,170,0.1940,0,88,0.130,0.0,1.0 +2002,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,12.8,75,103000,0,0,331,0,0,0,0,0,0,0,220,3.1,0,0,16.0,77777,9,999999999,170,0.1950,0,88,0.130,0.0,1.0 +2002,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,12.2,75,103000,0,0,328,0,0,0,0,0,0,0,210,3.1,0,0,16.0,77777,9,999999999,179,0.1950,0,88,0.130,0.0,1.0 +2002,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.1,12.2,78,103000,0,0,326,0,0,0,0,0,0,0,220,4.6,0,0,16.0,77777,9,999999999,189,0.1950,0,88,0.130,0.0,1.0 +2002,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,16.1,12.2,78,103000,0,0,326,0,0,0,0,0,0,0,220,4.6,0,0,16.0,77777,9,999999999,189,0.1950,0,88,0.130,0.0,1.0 +2002,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,11.7,75,103000,73,1135,325,0,0,0,0,0,0,0,220,4.6,0,0,16.0,77777,9,999999999,200,0.1950,0,88,0.130,0.0,1.0 +2002,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,12.2,72,103000,295,1322,331,143,243,89,15000,19200,10700,1750,220,4.6,0,0,16.0,77777,9,999999999,209,0.1950,0,88,0.130,0.0,1.0 +2002,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,19.4,12.8,66,103000,527,1322,341,302,451,123,32100,43300,14800,2390,220,4.6,0,0,16.0,77777,9,999999999,220,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.7,13.3,59,103000,748,1322,353,482,551,170,51700,56200,19900,3800,210,5.2,0,0,16.0,77777,9,999999999,229,0.1950,0,88,0.130,0.0,1.0 +2002,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,23.9,13.9,54,103000,942,1322,364,650,637,196,68200,64300,22300,5530,220,4.1,0,0,16.0,77777,9,999999999,240,0.1950,0,88,0.130,0.0,1.0 +2002,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,25.6,14.4,50,102900,1096,1322,373,779,682,213,82700,69500,25000,8350,210,5.2,0,0,16.0,77777,9,999999999,240,0.1950,0,88,0.130,0.0,1.0 +2002,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,27.2,16.1,51,102900,1200,1322,383,888,758,199,92300,75900,23300,10010,210,5.2,0,0,16.0,77777,9,999999999,250,0.1950,0,88,0.130,0.0,1.0 +2002,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,28.3,16.1,48,102800,1246,1322,389,917,721,237,98200,73700,28600,16390,200,6.2,0,0,16.0,77777,9,999999999,250,0.1950,0,88,0.130,0.0,1.0 +2002,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,28.9,15.6,44,102800,1232,1322,412,928,779,201,96800,78100,23800,11830,210,6.2,4,4,16.0,77777,9,999999999,250,0.1950,0,88,0.130,0.0,1.0 +2002,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,28.3,15.0,44,102700,1158,1322,411,849,735,204,90900,75300,24900,9690,210,6.2,5,5,16.0,9144,9,999999999,250,0.1950,0,88,0.130,0.0,1.0 +2002,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,28.3,16.1,48,102600,1029,1322,409,713,631,221,74900,63800,25100,7310,200,8.8,4,4,16.0,9144,9,999999999,240,0.1950,0,88,0.130,0.0,1.0 +2002,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,27.8,16.7,51,102500,854,1322,407,578,640,164,60800,64500,19000,4130,190,7.2,4,4,16.0,77777,9,999999999,240,0.1950,0,88,0.130,0.0,1.0 +2002,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,27.2,16.1,51,102500,646,1322,400,405,580,122,42300,56800,14500,2540,200,7.2,3,3,16.0,77777,9,999999999,229,0.1950,0,88,0.130,0.0,1.0 +2002,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,26.1,16.1,54,102500,417,1322,394,225,376,106,23500,33800,12800,2000,200,7.2,3,3,16.0,77777,9,999999999,209,0.1950,0,88,0.130,0.0,1.0 +2002,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,24.4,16.1,60,102500,186,1322,381,74,220,43,7700,13800,5800,770,200,6.2,10,2,16.0,77777,9,999999999,200,0.1950,0,88,0.130,0.0,1.0 +2002,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,23.9,16.1,62,102600,14,496,367,0,0,0,0,0,0,0,210,5.2,0,0,16.0,77777,9,999999999,209,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.7,16.1,70,102600,0,0,363,0,0,0,0,0,0,0,190,3.6,1,1,16.0,77777,9,999999999,209,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.1,15.6,71,102600,0,0,381,0,0,0,0,0,0,0,220,4.1,8,7,16.0,77777,9,999999999,220,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.6,15.6,73,102600,0,0,368,0,0,0,0,0,0,0,230,4.6,4,4,16.0,6096,9,999999999,229,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.0,15.0,73,102500,0,0,364,0,0,0,0,0,0,0,220,5.2,4,4,16.0,6096,9,999999999,250,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.0,15.0,73,102500,0,0,381,0,0,0,0,0,0,0,220,4.1,9,8,16.0,77777,9,999999999,259,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.0,14.4,70,102400,0,0,380,0,0,0,0,0,0,0,230,4.6,8,8,16.0,6096,9,999999999,270,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.0,13.9,68,102400,0,0,374,0,0,0,0,0,0,0,230,5.2,8,7,16.0,6096,9,999999999,279,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.0,13.9,68,102400,0,0,345,0,0,0,0,0,0,0,230,5.2,0,0,16.0,6096,9,999999999,290,0.1950,0,88,0.130,0.0,1.0 +2002,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,13.9,68,102400,73,1113,345,0,0,0,0,0,0,0,240,5.2,0,0,16.0,6096,9,999999999,300,0.1950,0,88,0.130,0.0,1.0 +2002,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,13.9,65,102500,294,1322,348,135,196,91,14100,15500,10700,1800,250,4.6,0,0,16.0,6096,9,999999999,309,0.1950,0,88,0.130,0.0,1.0 +2002,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.2,15.0,64,102500,526,1322,357,239,163,174,25900,16000,19500,4070,270,3.6,0,0,16.0,77777,9,999999999,309,0.1950,0,88,0.130,0.0,1.0 +2002,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,23.9,16.1,62,102500,747,1322,374,422,337,232,45400,35600,25300,5550,260,3.1,1,1,16.0,77777,9,999999999,340,0.1950,0,88,0.130,0.0,1.0 +2002,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,16.7,58,102500,941,1322,392,587,473,249,62600,49100,27600,7150,260,3.1,3,3,16.0,77777,9,999999999,379,0.1950,0,88,0.130,0.0,1.0 +2002,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,27.8,17.8,55,102500,1095,1322,420,686,453,310,73300,47300,34100,12360,330,2.1,8,7,14.4,6096,9,999999999,409,0.1950,0,88,0.130,0.0,1.0 +2002,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,27.8,18.9,58,102500,1200,1322,437,527,120,417,58000,12800,46400,20450,40,5.2,9,9,11.2,6096,9,999999999,409,0.1950,0,88,0.130,0.0,1.0 +2002,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,26.1,17.8,60,102500,1246,1322,417,700,288,428,76800,31300,47300,26860,50,6.7,9,8,9.6,5486,9,999999999,419,0.1950,0,88,0.130,0.0,1.0 +2002,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,25.0,18.9,69,102600,1232,1322,433,642,270,391,71000,29400,43500,22790,20,8.2,10,10,9.6,1676,9,999999999,419,0.1950,0,88,0.130,0.0,1.0 +2002,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,18.9,76,102600,1158,1322,397,223,24,202,24800,2400,22700,9890,40,7.2,9,7,6.4,4572,9,999999999,430,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.7,18.3,81,102600,1029,1322,402,632,375,340,68800,40600,37100,11410,40,7.2,10,9,6.4,1829,9,999999999,450,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.1,18.3,84,102500,855,1322,391,213,12,206,25100,1000,24500,9350,30,5.7,10,8,6.4,4572,9,999999999,459,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.6,17.8,84,102500,646,1322,396,194,12,189,22200,1000,21700,7530,50,4.6,10,9,8.0,1219,9,999999999,459,0.1950,0,88,0.130,0.0,1.0 +2002,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,18.9,16.7,87,102600,418,1322,385,100,0,100,11400,0,11400,3820,50,4.1,10,9,6.4,274,9,999999999,469,0.1950,0,88,0.130,0.0,1.0 +2002,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,18.3,16.7,90,102500,187,1322,393,51,46,44,5500,3100,5100,930,80,3.1,10,10,4.8,274,9,999999999,469,0.1950,0,88,0.130,0.0,1.0 +2002,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,16.1,93,102500,14,496,368,0,0,0,0,0,0,0,80,2.6,10,8,4.8,1676,9,999999999,459,0.1950,0,88,0.130,0.0,1.0 +2002,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,16.1,93,102600,0,0,362,0,0,0,0,0,0,0,80,2.1,10,7,8.0,6096,9,999999999,450,0.1950,0,88,0.130,0.0,1.0 +2002,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,17.2,16.1,93,102600,0,0,386,0,0,0,0,0,0,0,50,1.5,10,10,6.4,1128,9,999999999,440,0.1950,0,88,0.130,0.0,1.0 +2002,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.2,16.7,97,102600,0,0,387,0,0,0,0,0,0,0,0,0.0,10,10,3.2,152,9,999999999,440,0.1950,0,88,0.130,0.0,1.0 +2002,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,16.1,93,102500,0,0,386,0,0,0,0,0,0,0,50,3.1,10,10,3.2,213,9,999999999,430,0.1950,0,88,0.130,0.0,1.0 +2002,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.7,15.6,93,102500,0,0,383,0,0,0,0,0,0,0,30,2.1,10,10,6.4,213,9,999999999,419,0.1950,0,88,0.130,0.0,1.0 +2002,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,16.1,15.0,93,102500,0,0,379,0,0,0,0,0,0,0,70,1.5,10,10,6.4,213,9,999999999,409,0.1950,0,88,0.130,0.0,1.0 +2002,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,16.7,15.6,93,102400,0,0,383,0,0,0,0,0,0,0,360,1.5,10,10,6.4,213,9,999999999,400,0.1950,0,88,0.130,0.0,1.0 +2002,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,16.0,16.0,100,102400,0,0,380,0,0,0,0,0,0,0,70,2.1,10,10,0.4,30,9,999999999,390,0.1950,0,88,0.130,0.0,1.0 +2002,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,16.1,15.6,97,102300,72,1113,380,0,0,0,0,0,0,0,90,2.6,10,10,0.8,61,9,999999999,400,0.1950,0,88,0.130,0.0,1.0 +2002,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,16.1,15.6,97,102400,293,1322,380,34,0,34,4100,0,4100,1400,80,2.1,10,10,0.8,61,9,999999999,409,0.1950,0,88,0.130,0.0,1.0 +2002,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,15.6,15.6,100,102300,525,1322,377,106,0,106,12300,0,12300,4420,130,1.5,10,10,0.4,61,9,999999999,419,0.1950,0,88,0.130,0.0,1.0 +2002,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,17.2,16.1,93,102300,746,1322,386,112,0,112,13500,0,13500,5350,160,2.1,10,10,3.2,213,9,999999999,409,0.1950,0,88,0.130,0.0,1.0 +2002,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,18.9,17.2,90,102300,940,1322,378,255,12,246,29900,1000,29200,11200,170,2.6,8,8,3.2,3962,9,999999999,400,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.0,17.8,87,102200,1095,1322,392,337,18,322,39700,1600,38300,14520,170,2.6,9,9,4.8,1829,9,999999999,379,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.7,18.3,81,102100,1199,1322,402,594,175,436,65500,18700,48500,21360,160,1.5,9,9,4.8,1524,9,999999999,390,0.1950,0,88,0.130,0.0,1.0 +2002,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,23.3,18.9,76,102000,1246,1322,412,622,192,440,68600,20500,49200,25580,140,3.1,9,9,9.6,2438,9,999999999,390,0.1950,0,88,0.130,0.0,1.0 +2002,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,22.8,18.3,76,102000,1232,1322,420,737,371,391,81400,40400,43700,22800,110,4.6,10,10,6.4,2438,9,999999999,390,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.6,17.8,84,101800,1158,1322,381,738,460,334,78900,48000,36700,16130,130,4.6,7,7,6.4,4267,9,999999999,390,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.7,18.3,81,101800,1030,1322,380,523,220,351,57400,23400,39200,12070,80,4.6,5,5,6.4,4267,9,999999999,390,0.1950,0,88,0.130,0.0,1.0 +2002,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,22.2,17.8,76,101600,855,1322,379,426,190,304,46600,20000,33600,8620,90,3.1,4,4,6.4,6096,9,999999999,390,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.1,17.8,81,101600,647,1322,370,378,392,186,40600,40500,20800,4110,80,3.1,3,3,6.4,6096,9,999999999,390,0.1950,0,88,0.130,0.0,1.0 +2002,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,24.4,18.9,71,101500,419,1322,389,195,234,121,20700,21500,13900,2430,140,3.1,3,3,9.6,6096,9,999999999,400,0.1950,0,88,0.130,0.0,1.0 +2002,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.7,20.0,67,101500,188,1322,445,71,190,44,7400,11900,5700,790,210,5.2,10,10,9.6,6096,9,999999999,409,0.1950,0,88,0.130,0.0,1.0 +2002,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,101400,14,518,404,0,0,0,0,0,0,0,220,6.7,5,5,12.8,6096,9,999999999,419,0.1950,0,88,0.130,0.0,1.0 +2002,6,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101400,0,0,433,0,0,0,0,0,0,0,220,6.2,10,10,12.8,3048,9,999999999,430,0.1950,0,88,0.130,0.0,1.0 +2002,6,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101400,0,0,413,0,0,0,0,0,0,0,240,7.7,9,8,12.8,3353,9,999999999,450,0.1950,0,88,0.130,0.0,1.0 +2002,6,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101300,0,0,388,0,0,0,0,0,0,0,240,8.2,4,2,11.2,7620,9,999999999,450,0.1950,0,88,0.130,0.0,1.0 +2002,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,23.9,18.3,71,101200,0,0,388,0,0,0,0,0,0,0,240,7.7,5,4,11.2,77777,9,999999999,450,0.1950,0,88,0.130,0.0,1.0 +2002,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,23.3,18.3,74,101200,0,0,382,0,0,0,0,0,0,0,240,7.2,3,3,11.2,77777,9,999999999,459,0.1950,0,88,0.130,0.0,1.0 +2002,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,24.4,18.9,71,101200,0,0,418,0,0,0,0,0,0,0,280,5.2,10,9,9.6,77777,9,999999999,440,0.1950,0,88,0.130,0.0,1.0 +2002,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,24.4,19.4,74,101200,0,0,410,0,0,0,0,0,0,0,270,3.1,9,8,9.6,3658,9,999999999,430,0.1950,0,88,0.130,0.0,1.0 +2002,6,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101200,0,0,403,0,0,0,0,0,0,0,300,3.6,7,7,8.0,77777,9,999999999,409,0.1950,0,88,0.130,0.0,1.0 +2002,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,24.4,17.2,64,101300,71,1113,416,0,0,0,0,0,0,0,330,5.2,10,9,16.0,2438,9,999999999,400,0.1950,0,88,0.130,0.0,1.0 +2002,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,24.4,16.7,62,101400,292,1322,415,84,7,83,9400,300,9300,2810,320,3.6,10,9,16.0,6706,9,999999999,400,0.1950,0,88,0.130,0.0,1.0 +2002,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,24.4,15.6,58,101400,524,1322,385,275,269,168,29100,26500,18600,3580,340,6.7,3,3,16.0,7620,9,999999999,390,0.1950,0,88,0.130,0.0,1.0 +2002,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,13.3,50,101500,745,1322,382,482,539,178,51500,54900,20500,3980,330,8.2,3,3,16.0,77777,9,999999999,320,0.1950,0,88,0.130,0.0,1.0 +2002,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,25.0,7.8,33,101500,939,1322,378,663,686,175,70100,69600,20600,4990,310,8.2,3,3,16.0,77777,9,999999999,240,0.1950,0,88,0.130,0.0,1.0 +2002,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,25.6,6.7,30,101500,1094,1322,380,773,670,217,81900,68200,25300,8460,310,7.2,3,3,16.0,77777,9,999999999,170,0.1950,0,88,0.130,0.0,1.0 +2002,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,26.7,6.7,28,101500,1199,1322,369,895,765,200,93000,76600,23400,10000,310,8.2,0,0,16.0,77777,9,999999999,150,0.1950,0,88,0.130,0.0,1.0 +2002,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,27.2,8.3,30,101500,1245,1322,374,941,805,182,99400,81200,22800,11790,290,7.2,0,0,16.0,77777,9,999999999,129,0.1950,0,88,0.130,0.0,1.0 +2002,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,28.3,6.1,24,101400,1232,1322,376,922,779,195,96500,78200,23400,11560,310,5.2,0,0,16.0,77777,9,999999999,110,0.1950,0,88,0.130,0.0,1.0 +2002,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,28.9,4.4,21,101400,1158,1322,377,843,729,203,90300,74700,24800,9680,280,6.2,0,0,16.0,77777,9,999999999,110,0.1950,0,88,0.130,0.0,1.0 +2002,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,29.4,4.4,20,101400,1030,1322,380,742,745,161,77200,74600,19000,4890,300,8.8,0,0,16.0,77777,9,999999999,120,0.1950,0,88,0.130,0.0,1.0 +2002,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,30.0,4.4,20,101400,856,1322,383,589,669,155,62100,67600,18300,3940,300,6.2,0,0,16.0,77777,9,999999999,120,0.1950,0,88,0.130,0.0,1.0 +2002,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,29.4,3.9,20,101400,647,1322,379,411,609,112,43100,59900,13700,2370,310,6.2,0,0,16.0,77777,9,999999999,129,0.1950,0,88,0.130,0.0,1.0 +2002,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,28.3,6.1,24,101400,419,1322,376,240,456,96,25400,41100,12400,1790,280,8.2,0,0,16.0,77777,9,999999999,129,0.1950,0,88,0.130,0.0,1.0 +2002,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,27.2,5.0,24,101500,188,1322,391,75,216,44,7800,13600,5900,790,310,7.2,5,5,16.0,77777,9,999999999,129,0.1950,0,88,0.130,0.0,1.0 +2002,6,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,5.0,27,101600,14,518,362,0,0,0,0,0,0,0,300,4.6,0,0,16.0,77777,9,999999999,120,0.1950,0,88,0.130,0.0,1.0 +2002,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,24.4,3.3,25,101600,0,0,354,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,110,0.1950,0,88,0.130,0.0,1.0 +2002,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,23.3,2.8,26,101700,0,0,348,0,0,0,0,0,0,0,320,4.6,0,0,16.0,77777,9,999999999,100,0.1950,0,88,0.130,0.0,1.0 +2002,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.2,3.9,30,101700,0,0,344,0,0,0,0,0,0,0,310,3.6,0,0,16.0,77777,9,999999999,100,0.1950,0,88,0.130,0.0,1.0 +2002,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.6,3.9,33,101700,0,0,337,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,100,0.1950,0,88,0.130,0.0,1.0 +2002,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.6,5.0,36,101700,0,0,338,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,100,0.1950,0,88,0.130,0.0,1.0 +2002,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,18.9,5.6,42,101700,0,0,331,0,0,0,0,0,0,0,290,4.6,0,0,16.0,77777,9,999999999,110,0.1950,0,88,0.130,0.0,1.0 +2002,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,5.6,42,101800,0,0,331,0,0,0,0,0,0,0,300,4.6,0,0,16.0,77777,9,999999999,110,0.1950,0,88,0.130,0.0,1.0 +2002,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,101800,0,0,328,0,0,0,0,0,0,0,300,4.1,0,0,16.0,77777,9,999999999,110,0.1950,0,88,0.130,0.0,1.0 +2002,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,18.3,6.1,45,101800,70,1091,329,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,120,0.1950,0,88,0.130,0.0,1.0 +2002,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,19.4,5.6,40,101900,290,1322,340,144,257,87,15100,20200,10600,1700,330,2.1,1,1,16.0,77777,9,999999999,129,0.1950,0,88,0.130,0.0,1.0 +2002,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,6.7,38,102000,522,1322,345,310,495,114,33000,47400,14300,2190,340,1.5,0,0,16.0,77777,9,999999999,139,0.1950,0,88,0.130,0.0,1.0 +2002,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,8.3,38,101900,744,1322,355,482,533,182,51400,54300,20800,4080,0,0.0,0,0,16.0,77777,9,999999999,150,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.7,10.6,49,101900,938,1322,356,644,656,178,68000,66500,20700,5050,140,3.1,1,1,16.0,77777,9,999999999,160,0.1950,0,88,0.130,0.0,1.0 +2002,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,22.2,8.9,43,102000,1093,1322,350,779,664,229,82200,67400,26400,8860,130,4.1,0,0,16.0,77777,9,999999999,179,0.1950,0,88,0.130,0.0,1.0 +2002,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,23.3,9.4,41,101900,1198,1322,371,809,524,333,87000,54800,37300,18680,110,4.6,3,3,16.0,77777,9,999999999,200,0.1950,0,88,0.130,0.0,1.0 +2002,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,23.3,12.8,52,101900,1245,1322,367,537,126,418,59400,13500,46700,24250,100,4.1,1,1,16.0,77777,9,999999999,220,0.1950,0,88,0.130,0.0,1.0 +2002,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,22.8,13.9,57,101800,1232,1322,359,910,665,289,95800,67200,33100,18290,110,5.7,0,0,16.0,77777,9,999999999,240,0.1950,0,88,0.130,0.0,1.0 +2002,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,25.0,15.0,54,101800,1158,1322,371,843,729,203,90400,74700,24800,9680,140,4.6,0,0,16.0,77777,9,999999999,250,0.1950,0,88,0.130,0.0,1.0 +2002,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,28.9,8.9,29,101700,1030,1322,383,742,745,161,77200,74600,19000,4900,240,4.6,0,0,16.0,77777,9,999999999,270,0.1950,0,88,0.130,0.0,1.0 +2002,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,28.9,10.0,31,101600,856,1322,384,595,699,142,63200,70900,17200,3650,240,5.2,0,0,16.0,77777,9,999999999,290,0.1950,0,88,0.130,0.0,1.0 +2002,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,27.2,13.3,42,101600,648,1322,380,416,562,140,44600,56200,17100,2880,190,6.7,0,0,16.0,77777,9,999999999,290,0.1950,0,88,0.130,0.0,1.0 +2002,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,26.1,13.3,45,101600,420,1322,387,180,165,128,19600,15300,14800,2880,190,6.7,2,2,16.0,77777,9,999999999,290,0.1950,0,88,0.130,0.0,1.0 +2002,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,24.4,12.8,48,101600,188,1322,387,75,200,46,7700,12600,5900,830,200,5.2,5,5,16.0,77777,9,999999999,290,0.1950,0,88,0.130,0.0,1.0 +2002,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,22.8,12.2,51,101600,14,518,357,0,0,0,0,0,0,0,190,5.7,0,0,16.0,77777,9,999999999,300,0.1950,0,88,0.130,0.0,1.0 +2002,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,22.2,12.2,53,101600,0,0,354,0,0,0,0,0,0,0,210,4.1,0,0,16.0,77777,9,999999999,309,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.7,12.2,55,101600,0,0,358,0,0,0,0,0,0,0,200,3.6,1,1,16.0,77777,9,999999999,320,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.7,11.7,53,101600,0,0,351,0,0,0,0,0,0,0,220,5.2,0,0,16.0,77777,9,999999999,329,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.6,11.7,57,101600,0,0,357,0,0,0,0,0,0,0,230,5.7,2,2,16.0,77777,9,999999999,340,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.0,11.7,59,101600,0,0,343,0,0,0,0,0,0,0,220,4.1,0,0,16.0,6096,9,999999999,350,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.0,10.6,55,101500,0,0,359,0,0,0,0,0,0,0,220,4.6,4,4,16.0,77777,9,999999999,359,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.6,10.6,53,101500,0,0,398,0,0,0,0,0,0,0,230,5.2,10,10,16.0,2591,9,999999999,370,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.1,13.3,61,101400,0,0,365,0,0,0,0,0,0,0,240,5.2,4,3,16.0,77777,9,999999999,390,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.1,16.1,73,101400,69,1090,368,0,0,0,0,0,0,0,240,4.6,3,3,12.8,77777,9,999999999,400,0.1950,0,88,0.130,0.0,1.0 +2002,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,21.7,17.8,79,101400,289,1322,358,136,210,90,14200,16400,10600,1780,240,6.2,0,0,8.0,77777,9,999999999,409,0.1950,0,88,0.130,0.0,1.0 +2002,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,18.3,74,101500,521,1322,366,261,282,150,27900,27800,16900,3120,240,4.6,0,0,8.0,77777,9,999999999,430,0.1950,0,88,0.130,0.0,1.0 +2002,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,25.0,18.9,69,101400,742,1322,375,429,362,226,46200,38200,24800,5370,240,5.7,0,0,8.0,77777,9,999999999,419,0.1950,0,88,0.130,0.0,1.0 +2002,6,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,19.4,62,101400,937,1322,387,625,571,220,67600,59400,25400,6230,250,5.7,0,0,8.0,77777,9,999999999,419,0.1950,0,88,0.130,0.0,1.0 +2002,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,20.0,57,101300,1092,1322,413,761,634,236,80100,64200,26900,9080,240,4.6,2,2,8.0,77777,9,999999999,409,0.1950,0,88,0.130,0.0,1.0 +2002,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,31.1,20.6,54,101300,1197,1322,409,833,584,303,90500,61200,35000,16890,230,6.2,0,0,9.6,77777,9,999999999,419,0.1950,0,88,0.130,0.0,1.0 +2002,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,32.8,20.0,47,101200,1245,1322,426,911,673,277,96500,68200,32100,18890,230,6.7,1,1,8.0,77777,9,999999999,419,0.1950,0,88,0.130,0.0,1.0 +2002,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,33.3,18.9,43,101100,1231,1322,444,845,581,302,88600,58600,34000,19050,250,5.7,5,5,9.6,7620,9,999999999,430,0.1950,0,88,0.130,0.0,1.0 +2002,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,33.3,18.3,41,101000,1158,1322,460,808,556,320,86800,58100,35800,15440,230,7.7,10,8,9.6,7620,9,999999999,440,0.1950,0,88,0.130,0.0,1.0 +2002,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,32.8,18.9,44,101000,1030,1322,450,454,131,352,49900,13900,39000,12120,240,5.7,7,7,9.6,4572,9,999999999,440,0.1950,0,88,0.130,0.0,1.0 +2002,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,33.3,19.4,44,100900,856,1322,441,505,355,275,54500,38000,29900,7290,240,5.2,5,4,8.0,4572,9,999999999,450,0.1950,0,88,0.130,0.0,1.0 +2002,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,31.1,21.7,57,100900,648,1322,444,243,70,209,26700,7000,23300,6200,210,5.7,9,7,6.4,4572,9,999999999,430,0.1950,0,88,0.130,0.0,1.0 +2002,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,31.1,21.7,57,100900,420,1322,432,60,0,60,7100,0,7100,2550,230,8.8,5,4,4.8,4572,9,999999999,419,0.1950,0,88,0.130,0.0,1.0 +2002,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,29.4,21.7,63,100900,189,1322,463,63,103,48,6600,6300,5700,890,220,6.2,10,10,6.4,4267,9,999999999,409,0.1950,0,88,0.130,0.0,1.0 +2002,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,28.3,21.1,65,100900,14,518,422,0,0,0,0,0,0,0,210,7.2,8,6,8.0,6096,9,999999999,440,0.1950,0,88,0.130,0.0,1.0 +2002,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,27.8,20.0,63,100900,0,0,430,0,0,0,0,0,0,0,220,6.7,9,8,9.6,4267,9,999999999,469,0.1950,0,88,0.130,0.0,1.0 +2002,6,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,100900,0,0,416,0,0,0,0,0,0,0,230,5.7,8,7,12.8,7620,9,999999999,500,0.1950,0,88,0.130,0.0,1.0 +2002,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.0,19.4,71,100900,0,0,413,0,0,0,0,0,0,0,200,3.6,10,8,11.2,6096,9,999999999,500,0.1950,0,88,0.130,0.0,1.0 +2002,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.6,20.0,71,100800,0,0,417,0,0,0,0,0,0,0,210,4.1,9,8,12.8,6096,9,999999999,500,0.1950,0,88,0.130,0.0,1.0 +2002,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,24.4,20.6,79,100800,0,0,405,0,0,0,0,0,0,0,210,4.6,10,7,12.8,5486,9,999999999,500,0.1960,0,88,0.130,0.0,1.0 +2002,6,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,100700,0,0,409,0,0,0,0,0,0,0,220,4.6,8,7,14.4,5486,9,999999999,500,0.1960,0,88,0.130,0.0,1.0 +2002,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,24.4,21.1,82,100700,0,0,406,0,0,0,0,0,0,0,230,4.6,10,7,12.8,5486,9,999999999,500,0.1960,0,88,0.130,0.0,1.0 +2002,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,23.9,21.1,84,100600,0,0,403,0,0,0,0,0,0,0,220,4.6,9,7,12.8,7620,9,999999999,500,0.1960,0,88,0.130,0.0,1.0 +2002,6,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,100600,68,1090,395,0,0,0,0,0,0,0,220,7.2,5,4,9.6,7620,9,999999999,480,0.1960,0,88,0.130,0.0,1.0 +2002,6,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,100600,288,1322,391,127,163,92,13800,13100,10900,1990,230,7.7,2,2,9.6,7620,9,999999999,459,0.1960,0,88,0.130,0.0,1.0 +2002,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,26.7,21.7,74,100600,520,1322,411,205,82,172,22400,7900,19300,4710,240,6.2,6,5,9.6,7620,9,999999999,450,0.1960,0,88,0.130,0.0,1.0 +2002,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,28.3,21.7,67,100600,741,1322,419,443,368,236,47500,38800,25700,5660,240,7.2,6,5,9.6,7620,9,999999999,440,0.1960,0,88,0.130,0.0,1.0 +2002,6,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,21.1,63,100500,936,1322,431,485,225,326,53200,23800,36200,9990,250,6.2,7,7,9.6,7620,9,999999999,430,0.1960,0,88,0.130,0.0,1.0 +2002,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,29.4,21.1,61,100500,1092,1322,433,387,60,337,42700,6100,37600,14230,240,7.7,9,7,12.8,7620,9,999999999,430,0.1960,0,88,0.130,0.0,1.0 +2002,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,31.1,20.6,54,100500,1197,1322,434,784,464,364,83700,48500,39700,20410,260,8.2,5,5,12.8,7620,9,999999999,419,0.1960,0,88,0.130,0.0,1.0 +2002,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,31.1,20.0,52,100500,1244,1322,426,869,571,331,94200,59800,37800,23190,240,7.7,3,3,12.8,77777,9,999999999,419,0.1960,0,88,0.130,0.0,1.0 +2002,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,18.9,45,100400,1231,1322,434,868,605,304,91100,60900,34300,19150,260,7.7,4,4,14.4,7620,9,999999999,409,0.1960,0,88,0.130,0.0,1.0 +2002,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.8,19.4,45,100400,1158,1322,435,814,634,258,85800,64200,29500,12080,230,8.2,3,3,12.8,77777,9,999999999,419,0.1960,0,88,0.130,0.0,1.0 +2002,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.8,18.9,44,100300,1030,1322,441,696,590,235,72800,59500,26300,7750,250,7.2,5,5,12.8,77777,9,999999999,430,0.1960,0,88,0.130,0.0,1.0 +2002,6,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,19.4,48,100300,856,1322,444,561,580,185,58500,58100,20800,4590,230,8.8,10,7,12.8,6096,9,999999999,440,0.1960,0,88,0.130,0.0,1.0 +2002,6,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.0,52,100300,648,1322,459,362,305,212,38500,31500,23100,4810,230,5.7,10,9,11.2,1981,9,999999999,450,0.1960,0,88,0.130,0.0,1.0 +2002,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,23.9,19.4,76,100400,420,1322,428,65,0,65,7700,0,7700,2720,320,6.2,10,10,4.0,366,9,999999999,450,0.1960,0,88,0.130,23.0,1.0 +2002,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,23.9,21.1,84,100400,189,1322,430,24,0,24,2800,0,2800,930,220,4.1,10,10,9.6,7620,9,999999999,459,0.1960,0,88,0.130,9.0,1.0 +2002,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,22.2,20.0,87,100400,15,518,392,0,0,0,0,0,0,0,140,3.1,10,7,8.0,6096,9,999999999,469,0.1960,0,88,0.130,0.0,1.0 +2002,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,23.0,19.0,78,100600,0,0,422,0,0,0,0,0,0,0,320,9.3,10,10,16.1,1200,9,999999999,490,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.2,19.4,84,100600,0,0,398,0,0,0,0,0,0,0,300,4.6,9,8,16.0,2743,9,999999999,509,0.1960,0,88,0.130,0.0,1.0 +2002,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.2,19.4,84,100600,0,0,406,0,0,0,0,0,0,0,250,3.1,10,9,16.0,3048,9,999999999,500,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.7,19.4,87,100500,0,0,404,0,0,0,0,0,0,0,200,2.6,10,9,12.8,1463,9,999999999,480,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.1,19.4,90,100400,0,0,386,0,0,0,0,0,0,0,210,3.1,9,7,16.0,4572,9,999999999,469,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.1,20.0,93,100400,0,0,393,0,0,0,0,0,0,0,180,2.6,9,8,16.0,4572,9,999999999,469,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.7,20.0,90,100400,0,0,404,0,0,0,0,0,0,0,200,1.5,10,9,16.0,77777,9,999999999,469,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.7,20.0,90,100500,0,0,390,0,0,0,0,0,0,0,210,4.1,10,7,14.4,77777,9,999999999,469,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.2,20.0,87,100500,67,1068,392,0,0,0,0,0,0,0,220,5.7,10,7,9.6,4877,9,999999999,469,0.1960,0,88,0.130,0.0,1.0 +2002,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.8,20.6,87,100500,286,1322,403,119,115,94,12800,9200,10800,2040,230,5.2,10,8,9.6,4877,9,999999999,469,0.1960,0,88,0.130,0.0,1.0 +2002,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,23.3,20.0,82,100600,518,1322,398,141,6,139,16100,400,15900,5380,250,5.2,7,7,11.2,77777,9,999999999,469,0.1960,0,88,0.130,0.0,1.0 +2002,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,24.4,20.0,76,100600,740,1322,400,251,18,241,28500,1600,27700,9630,250,6.2,6,6,14.4,4267,9,999999999,440,0.1960,0,88,0.130,0.0,1.0 +2002,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,25.0,20.0,74,100600,935,1322,396,396,97,327,43600,9900,36500,11590,270,5.2,5,4,14.4,4267,9,999999999,419,0.1960,0,88,0.130,0.0,1.0 +2002,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,26.7,20.0,67,100600,1091,1322,402,711,519,282,76700,54200,31800,11060,300,6.2,3,3,16.0,77777,9,999999999,400,0.1960,0,88,0.130,0.0,1.0 +2002,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.8,20.0,63,100600,1196,1322,408,791,542,299,85900,56800,34500,16580,300,4.6,3,3,16.0,77777,9,999999999,400,0.1960,0,88,0.130,0.0,1.0 +2002,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,28.3,19.4,59,100600,1244,1322,416,827,559,300,90500,58600,35200,20900,260,6.7,5,5,16.0,5486,9,999999999,400,0.1960,0,88,0.130,0.0,1.0 +2002,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,28.3,18.9,57,100600,1231,1322,431,815,551,301,89000,57800,35100,19580,280,5.2,8,8,16.0,1981,9,999999999,390,0.1960,0,88,0.130,0.0,1.0 +2002,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,28.9,18.3,53,100600,1158,1322,427,761,496,326,81700,51800,36100,15750,270,4.1,7,7,16.0,77777,9,999999999,400,0.1960,0,88,0.130,0.0,1.0 +2002,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,25.0,18.9,69,100700,1030,1322,433,397,83,332,43800,8500,37100,13020,350,6.7,10,10,16.0,1676,9,999999999,400,0.1960,0,88,0.130,0.0,1.0 +2002,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,25.0,18.9,69,100700,857,1322,433,387,148,291,42300,15600,32200,8260,330,2.6,10,10,16.0,3048,9,999999999,400,0.1960,0,88,0.130,0.0,1.0 +2002,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,24.4,19.4,74,100800,648,1322,399,92,0,92,11100,0,11100,4280,60,3.6,8,6,16.0,6096,9,999999999,390,0.1960,0,88,0.130,0.0,1.0 +2002,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,25.0,19.4,71,100800,420,1322,407,75,0,75,8700,0,8700,3070,100,2.1,8,7,16.0,5486,9,999999999,390,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.2,19.4,84,100900,189,1322,418,24,0,24,2800,0,2800,930,130,4.1,10,10,16.0,5486,9,999999999,379,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.7,18.9,84,101000,14,518,395,0,0,0,0,0,0,0,70,2.1,9,8,16.0,5486,9,999999999,379,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.8,18.9,79,101100,0,0,390,0,0,0,0,0,0,0,10,2.6,6,6,16.0,4267,9,999999999,379,0.1960,0,88,0.130,0.0,1.0 +2002,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,23.3,17.2,69,101100,0,0,421,0,0,0,0,0,0,0,340,4.6,10,10,16.0,3048,9,999999999,370,0.1960,0,88,0.130,0.0,1.0 +2002,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,23.3,15.6,62,101100,0,0,399,0,0,0,0,0,0,0,290,3.1,10,8,16.0,6096,9,999999999,359,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.2,16.7,71,101200,0,0,394,0,0,0,0,0,0,0,320,4.1,10,8,16.0,6096,9,999999999,350,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.2,16.7,71,101200,0,0,403,0,0,0,0,0,0,0,320,4.6,10,9,16.0,6096,9,999999999,340,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.2,15.6,66,101200,0,0,376,0,0,0,0,0,0,0,330,5.7,4,4,16.0,6096,9,999999999,320,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.7,14.4,63,101300,0,0,354,0,0,0,0,0,0,0,320,5.2,0,0,16.0,7620,9,999999999,309,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.7,13.9,61,101400,0,0,408,0,0,0,0,0,0,0,310,4.1,10,10,16.0,2438,9,999999999,300,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.7,13.3,59,101400,66,1068,368,0,0,0,0,0,0,0,330,5.2,3,3,16.0,77777,9,999999999,279,0.1960,0,88,0.130,0.0,1.0 +2002,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,13.3,57,101500,285,1322,355,145,238,94,15100,18500,11200,1880,330,4.6,0,0,16.0,77777,9,999999999,270,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.8,13.9,57,101600,517,1322,359,297,445,122,31300,42500,14700,2360,360,5.7,0,0,16.0,77777,9,999999999,250,0.1960,0,88,0.130,0.0,1.0 +2002,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,15.6,62,101700,739,1322,363,483,576,160,50000,57000,18100,3490,40,4.1,0,0,16.0,77777,9,999999999,240,0.1960,0,88,0.130,0.0,1.0 +2002,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,24.4,15.6,58,101800,934,1322,385,664,698,170,70300,70900,20100,4820,40,3.6,3,3,16.0,77777,9,999999999,240,0.1960,0,88,0.130,0.0,1.0 +2002,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,23.9,14.4,55,101800,1090,1322,365,786,737,177,84400,75700,21900,6940,80,4.6,0,0,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,23.3,13.3,53,101900,1195,1322,376,889,771,190,92800,77400,22700,9490,80,5.7,3,3,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.8,14.4,59,101900,1243,1322,378,924,751,216,99500,77100,26800,14820,80,6.2,4,4,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.2,14.4,61,102000,1231,1322,375,904,725,228,96900,74200,27600,14590,100,6.2,4,4,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,22.2,14.4,61,101900,1158,1322,372,855,753,194,91900,77300,24100,9280,100,4.1,3,3,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.7,15.0,66,101900,1030,1322,370,725,667,204,76600,67800,23700,6840,90,4.6,3,3,16.0,77777,9,999999999,240,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.1,16.7,76,101900,857,1322,369,584,652,161,61500,65800,18800,4080,110,3.6,3,3,16.0,77777,9,999999999,240,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.1,17.2,78,101900,649,1322,354,400,539,135,43100,54000,16600,2770,110,2.6,0,0,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,20.0,16.7,81,101900,420,1322,349,235,427,99,24700,38500,12500,1850,110,2.6,0,0,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,19.4,16.7,84,102000,189,1322,374,71,185,44,7300,11700,5700,790,70,2.6,9,7,12.8,9144,9,999999999,220,0.1960,0,88,0.130,0.0,1.0 +2002,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,18.3,16.7,90,102000,14,518,355,0,0,0,0,0,0,0,70,3.1,3,3,14.4,9144,9,999999999,220,0.1960,0,88,0.130,0.0,1.0 +2002,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,17.2,16.7,97,102100,0,0,358,0,0,0,0,0,0,0,60,2.6,6,6,11.2,77777,9,999999999,220,0.1960,0,88,0.130,0.0,1.0 +2002,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,17.8,16.7,93,102100,0,0,338,0,0,0,0,0,0,0,80,3.1,0,0,11.2,77777,9,999999999,220,0.1960,0,88,0.130,0.0,1.0 +2002,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,18.3,16.1,87,102100,0,0,340,0,0,0,0,0,0,0,200,2.6,0,0,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,18.9,15.6,81,102200,0,0,342,0,0,0,0,0,0,0,200,2.1,0,0,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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.3,16.1,87,102100,0,0,357,0,0,0,0,0,0,0,160,1.5,4,4,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,17.8,16.1,90,102100,0,0,338,0,0,0,0,0,0,0,160,2.6,0,0,16.0,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,18.3,16.1,87,102100,0,0,373,0,0,0,0,0,0,0,190,2.1,8,8,16.0,2896,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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,18.3,16.7,90,102200,0,0,361,0,0,0,0,0,0,0,220,2.1,5,5,12.8,77777,9,999999999,229,0.1960,0,88,0.130,0.0,1.0 +2002,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.3,16.7,90,102200,64,1046,355,0,0,0,0,0,0,0,220,3.1,3,3,9.6,7620,9,999999999,240,0.1960,0,88,0.130,0.0,1.0 +2002,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,17.8,17.2,96,102300,283,1321,353,94,34,87,10300,2800,9700,2140,180,3.1,3,3,2.4,6096,9,999999999,250,0.1960,0,88,0.130,0.0,1.0 +2002,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,19.4,17.8,90,102300,515,1321,365,247,201,169,26800,19600,19200,3940,170,3.1,4,4,9.6,6096,9,999999999,250,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.7,17.8,79,102300,737,1321,379,423,319,245,45200,33600,26500,5910,160,3.6,5,5,14.4,6096,9,999999999,259,0.1960,0,88,0.130,0.0,1.0 +2002,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,23.3,17.8,71,102200,933,1321,366,638,619,201,66800,62300,22700,5570,170,3.6,0,0,14.4,77777,9,999999999,270,0.1960,0,88,0.130,0.0,1.0 +2002,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,23.9,18.9,74,102200,1089,1321,370,755,622,241,79300,62900,27300,9170,120,3.6,0,0,12.8,77777,9,999999999,270,0.1960,0,88,0.130,0.0,1.0 +2002,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,24.4,18.3,69,102200,1194,1321,388,877,716,228,93500,73100,27300,12380,110,4.6,3,3,14.4,77777,9,999999999,279,0.1960,0,88,0.130,0.0,1.0 +2002,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,25.6,18.3,64,102100,1243,1321,404,899,661,277,95200,67000,32000,18700,110,5.2,6,6,16.0,10668,9,999999999,290,0.1960,0,88,0.130,0.0,1.0 +2002,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,27.2,18.9,61,102100,1230,1321,410,851,587,303,89300,59100,34100,19010,120,4.6,5,5,16.0,10668,9,999999999,300,0.1960,0,88,0.130,0.0,1.0 +2002,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,25.6,17.8,62,102000,1158,1321,423,685,347,381,75100,37700,42000,17100,180,3.6,9,9,16.0,1829,9,999999999,309,0.1960,0,88,0.130,0.0,1.0 +2002,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,27.8,18.3,56,102000,1030,1321,427,610,357,331,66500,38700,36300,11090,210,7.7,8,8,16.0,3048,9,999999999,320,0.1960,0,88,0.130,0.0,1.0 +2002,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,27.2,19.4,62,101900,857,1321,419,258,59,220,28500,6000,24600,7760,190,7.2,8,7,16.0,9144,9,999999999,329,0.1960,0,88,0.130,0.0,1.0 +2002,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,27.2,19.4,62,101900,648,1321,410,378,363,200,40500,37500,22000,4490,220,7.7,6,5,16.0,7620,9,999999999,329,0.1960,0,88,0.130,0.0,1.0 +2002,6,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,101900,420,1321,412,195,217,126,20600,20000,14300,2550,210,7.2,7,7,16.0,10668,9,999999999,329,0.1960,0,88,0.130,0.0,1.0 +2002,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.0,18.3,66,102000,189,1321,433,51,36,46,5600,2600,5200,1130,210,7.7,10,10,16.0,9144,9,999999999,329,0.1960,0,88,0.130,0.0,1.0 +2002,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.9,17.8,69,101900,14,518,414,0,0,0,0,0,0,0,210,6.7,9,9,16.0,9144,9,999999999,329,0.1960,0,88,0.130,0.0,1.0 +2002,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,17.2,71,102000,0,0,392,0,0,0,0,0,0,0,220,6.7,7,7,16.0,7010,9,999999999,340,0.1960,0,88,0.130,0.0,1.0 +2002,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,21.6,16.8,76,102000,0,0,377,0,0,0,0,0,0,0,210,6.2,5,5,16.0,7010,9,999999999,340,0.1960,0,88,0.130,0.0,1.0 +2002,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,20.4,16.4,78,102000,0,0,368,0,0,0,0,0,0,0,220,5.7,4,4,16.0,7010,9,999999999,359,0.1960,0,88,0.130,0.0,1.0 +2002,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,19.2,16.0,81,101900,0,0,355,0,0,0,0,0,0,0,230,5.2,2,2,16.0,7010,9,999999999,370,0.1960,0,88,0.130,0.0,1.0 +1981,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,18.0,15.6,100,102600,0,0,390,0,0,0,0,0,0,0,80,4.6,10,10,0.8,90,9,999999999,250,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.8,15.2,100,102600,0,0,383,0,0,0,0,0,0,0,80,4.1,10,10,0.6,90,9,999999999,259,0.1950,0,88,999.000,999.0,99.0 +1981,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,15.6,14.8,100,102600,0,0,376,0,0,0,0,0,0,0,50,3.6,10,10,0.8,90,9,999999999,259,0.1950,0,88,999.000,999.0,99.0 +1981,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,14.4,14.4,100,102600,0,0,370,0,0,0,0,0,0,0,50,3.1,10,10,0.4,90,9,999999999,259,0.1950,0,88,999.000,999.0,99.0 +1981,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,14.4,14.4,100,102700,63,1046,370,10,0,10,1200,0,1200,380,50,3.6,10,10,0.4,90,9,999999999,259,0.2220,0,88,999.000,999.0,99.0 +1981,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,15.0,15.0,100,102800,281,1321,373,41,5,40,4800,100,4800,1600,70,3.1,10,10,0.4,90,9,999999999,270,0.2220,0,88,999.000,999.0,99.0 +1981,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,15.6,15.6,100,102800,514,1321,377,151,7,149,17100,500,16900,5610,50,3.6,10,10,0.8,90,9,999999999,279,0.2220,0,88,999.000,999.0,99.0 +1981,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,17.2,15.6,90,102900,736,1321,386,174,4,171,20200,300,20100,7520,40,4.1,10,10,1.6,90,9,999999999,279,0.2220,0,88,999.000,999.0,99.0 +1981,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,18.3,16.7,90,102900,932,1321,393,242,2,241,28500,200,28400,10980,60,4.1,10,10,4.0,90,9,999999999,300,0.2220,0,88,999.000,999.0,99.0 +1981,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,18.9,16.1,84,102900,1088,1321,395,348,7,342,40700,600,40200,15120,80,5.2,10,10,4.0,90,9,999999999,290,0.2220,0,88,999.000,999.0,99.0 +1981,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,20.0,16.7,81,103000,1194,1321,402,358,2,356,42400,200,42200,15990,90,6.2,10,10,4.8,150,9,999999999,300,0.2220,0,88,999.000,999.0,99.0 +1981,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,20.0,16.7,81,102900,1242,1321,402,381,2,380,45300,200,45100,16940,80,5.2,10,10,8.0,240,9,999999999,300,0.2220,0,88,999.000,999.0,99.0 +1981,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,19.4,16.1,81,103000,1230,1321,398,425,2,423,49900,200,49700,18150,90,5.2,10,10,9.7,180,9,999999999,290,0.2220,0,88,999.000,999.0,99.0 +1981,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,19.4,16.1,81,103000,1157,1321,398,384,1,383,45000,100,44900,16650,90,7.2,10,10,1.3,180,9,999999999,290,0.2220,0,88,999.000,999.0,99.0 +1981,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,18.9,16.1,84,103000,1030,1321,395,339,0,339,39400,0,39400,14700,70,5.2,10,10,0.8,90,9,999999999,290,0.2220,0,88,999.000,999.0,99.0 +1981,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,18.3,16.1,87,103000,856,1321,392,279,0,279,32000,0,32000,11630,80,5.7,10,10,0.8,90,9,999999999,290,0.2220,0,88,999.000,999.0,99.0 +1981,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,18.3,16.1,87,103000,648,1321,392,205,1,205,23300,100,23200,7970,70,4.6,10,10,1.3,90,9,999999999,290,0.2220,0,88,999.000,999.0,99.0 +1981,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,18.3,16.7,90,103000,420,1321,393,120,1,120,13500,100,13500,4340,60,6.2,10,10,0.8,60,9,999999999,300,0.2220,0,88,999.000,999.0,99.0 +1981,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,18.3,16.7,90,103000,188,1321,393,47,0,47,5200,0,5200,1580,70,4.1,10,10,1.6,60,9,999999999,300,0.2220,0,88,999.000,999.0,99.0 +1981,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,17.2,16.7,97,103000,14,496,387,6,0,6,0,0,0,0,60,4.6,10,10,0.4,30,9,999999999,300,0.2220,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,103000,0,0,384,0,0,0,0,0,0,0,50,4.6,10,10,0.2,0,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,103100,0,0,384,0,0,0,0,0,0,0,70,4.6,10,10,0.4,30,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,103100,0,0,384,0,0,0,0,0,0,0,30,4.1,10,10,0.4,90,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,103100,0,0,384,0,0,0,0,0,0,0,40,4.6,10,10,0.4,90,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,103100,0,0,384,0,0,0,0,0,0,0,40,3.6,10,10,0.4,90,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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.7,16.7,100,103100,0,0,384,0,0,0,0,0,0,0,30,4.1,10,10,0.4,90,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,103100,0,0,384,0,0,0,0,0,0,0,40,4.1,10,10,0.4,90,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,103100,0,0,384,0,0,0,0,0,0,0,50,3.6,10,10,0.4,90,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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,17.2,17.2,100,103100,62,1024,388,11,0,11,1300,0,1300,410,30,5.2,10,10,0.2,60,9,999999999,309,0.1970,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,103100,280,1321,384,79,0,79,8800,0,8800,2670,40,5.7,10,10,0.6,60,9,999999999,300,0.1970,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,103200,512,1321,384,92,1,92,10800,100,10800,3910,40,4.6,10,10,0.2,60,9,999999999,300,0.1970,0,88,999.000,999.0,99.0 +1981,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,17.2,17.2,100,103200,734,1321,388,150,0,150,17700,0,17700,6780,50,5.2,10,10,0.2,60,9,999999999,309,0.1970,0,88,999.000,999.0,99.0 +1981,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,17.8,17.2,97,103200,930,1321,391,342,1,342,39200,100,39100,13940,50,6.7,10,10,0.4,60,9,999999999,309,0.1970,0,88,999.000,999.0,99.0 +1981,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,18.3,17.2,93,103200,1087,1321,394,381,0,381,44200,0,44200,16240,70,5.2,10,10,1.6,90,9,999999999,309,0.1970,0,88,999.000,999.0,99.0 +1981,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,18.9,17.2,90,103200,1193,1321,397,414,1,413,48500,100,48400,17680,60,5.2,10,10,1.6,90,9,999999999,309,0.1970,0,88,999.000,999.0,99.0 +1981,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,20.0,17.2,84,103200,1241,1321,403,417,1,416,49100,100,49000,18010,80,5.2,10,10,3.2,60,9,999999999,309,0.1970,0,88,999.000,999.0,99.0 +1981,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,20.0,17.2,84,103200,1229,1321,403,423,1,422,49700,100,49600,18120,80,4.6,10,10,2.4,60,9,999999999,309,0.1970,0,88,999.000,999.0,99.0 +1981,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,19.4,17.2,87,103100,1157,1321,400,388,1,387,45400,100,45300,16770,70,4.6,10,10,3.2,60,9,999999999,309,0.1970,0,88,999.000,999.0,99.0 +1981,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,19.4,16.7,84,103100,1030,1321,374,549,210,385,60000,22300,42600,13260,70,5.2,9,7,1.6,120,9,999999999,300,0.1970,0,88,999.000,999.0,99.0 +1981,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,19.4,16.7,84,103000,856,1321,399,227,2,226,26500,200,26400,10030,90,6.2,10,10,0.2,60,9,999999999,300,0.1970,0,88,999.000,999.0,99.0 +1981,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,17.8,16.7,93,103000,648,1321,390,173,0,173,19800,0,19800,7100,80,5.2,10,10,0.8,90,9,999999999,300,0.1970,0,88,999.000,999.0,99.0 +1981,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,17.8,16.7,93,103000,420,1321,390,69,1,68,8000,0,8000,2830,70,5.2,10,10,0.2,60,9,999999999,300,0.1970,0,88,999.000,999.0,99.0 +1981,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,17.2,16.1,93,103000,188,1321,386,37,1,37,4200,0,4200,1330,80,5.2,10,10,0.2,60,9,999999999,290,0.1970,0,88,999.000,999.0,99.0 +1981,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,16.7,16.1,97,103000,14,496,384,6,0,6,0,0,0,0,80,4.1,10,10,0.4,90,9,999999999,290,0.1970,0,88,999.000,999.0,99.0 +1981,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,16.1,16.1,100,103000,0,0,380,0,0,0,0,0,0,0,90,4.1,10,10,0.2,60,9,999999999,290,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.1,16.1,100,103000,0,0,380,0,0,0,0,0,0,0,90,3.6,10,10,0.2,60,9,999999999,290,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.1,16.1,100,103000,0,0,380,0,0,0,0,0,0,0,60,3.6,10,10,0.4,60,9,999999999,290,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.1,100,103000,0,0,380,0,0,0,0,0,0,0,70,3.1,10,10,0.4,60,9,999999999,290,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.1,100,103000,0,0,380,0,0,0,0,0,0,0,70,3.6,10,10,0.4,60,9,999999999,290,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.1,100,102900,0,0,380,0,0,0,0,0,0,0,70,3.6,10,10,0.4,60,9,999999999,290,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.1,16.1,100,102900,0,0,380,0,0,0,0,0,0,0,60,1.5,10,10,0.4,60,9,999999999,290,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,102900,0,0,384,0,0,0,0,0,0,0,30,1.0,10,10,0.4,60,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.7,16.7,100,102900,60,1024,384,10,0,10,1200,0,1200,380,70,2.6,10,10,0.4,60,9,999999999,300,0.2830,0,88,999.000,999.0,99.0 +1981,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.7,16.7,100,102900,278,1321,384,47,1,47,5500,0,5500,1820,90,2.6,10,10,0.2,30,9,999999999,300,0.2830,0,88,999.000,999.0,99.0 +1981,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,17.2,97,102900,511,1321,391,85,1,85,10100,100,10000,3660,80,2.6,10,10,0.2,30,9,999999999,309,0.2830,0,88,999.000,999.0,99.0 +1981,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,18.3,17.8,97,102900,733,1321,394,123,0,122,14600,0,14600,5720,70,3.1,10,10,0.4,30,9,999999999,320,0.2830,0,88,999.000,999.0,99.0 +1981,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,18.9,17.8,93,102900,929,1321,398,305,1,304,35100,100,35100,12930,80,3.1,10,10,2.4,90,9,999999999,320,0.2830,0,88,999.000,999.0,99.0 +1981,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,20.0,17.8,87,102800,1085,1321,404,399,1,399,46200,100,46100,16700,40,2.6,10,10,8.0,90,9,999999999,320,0.2830,0,88,999.000,999.0,99.0 +1981,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,21.1,17.8,81,102800,1192,1321,384,714,348,399,78300,37800,44100,20010,90,5.2,9,7,9.7,3660,9,999999999,320,0.2830,0,88,999.000,999.0,99.0 +1981,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,21.7,17.8,79,102700,1241,1321,393,662,239,437,72500,26000,48100,26880,80,5.2,10,8,8.0,3660,9,999999999,320,0.2830,0,88,999.000,999.0,99.0 +1981,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,22.2,17.8,76,102700,1229,1321,390,654,243,428,71700,26400,47100,24890,90,5.2,10,7,8.0,3660,9,999999999,320,0.2830,0,88,999.000,999.0,99.0 +1981,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,21.7,17.8,79,102600,1157,1321,387,651,264,419,70800,28600,45600,18960,90,6.2,10,7,8.0,3660,9,999999999,320,0.2830,0,88,999.000,999.0,99.0 +1981,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,20.6,17.2,81,102500,1029,1321,395,360,70,305,39700,7100,34100,12120,70,3.6,10,9,8.0,610,9,999999999,309,0.2830,0,88,999.000,999.0,99.0 +1981,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,20.6,17.2,81,102500,856,1321,387,387,78,337,42600,8000,37400,10940,70,3.1,10,8,8.0,3050,9,999999999,309,0.2830,0,88,999.000,999.0,99.0 +1981,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,21.1,17.8,81,102400,648,1321,398,249,50,224,27300,5000,24800,6540,70,2.6,10,9,11.3,3050,9,999999999,320,0.2830,0,88,999.000,999.0,99.0 +1981,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,22.2,17.8,76,102400,419,1321,396,141,48,126,15500,4400,14100,3340,140,3.1,10,8,19.3,3050,9,999999999,320,0.2830,0,88,999.000,999.0,99.0 +1981,7,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,102300,187,1321,413,52,8,51,5800,100,5800,1670,210,5.7,10,8,19.3,3050,9,999999999,340,0.2830,0,88,999.000,999.0,99.0 +1981,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,23.9,18.9,74,102300,14,496,415,8,0,8,0,0,0,0,200,5.2,10,9,19.3,3050,9,999999999,340,0.2830,0,88,999.000,999.0,99.0 +1981,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,23.3,19.4,79,102200,0,0,424,0,0,0,0,0,0,0,200,4.6,10,10,19.3,3050,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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,23.3,19.4,79,102200,0,0,424,0,0,0,0,0,0,0,200,4.6,10,10,19.3,3660,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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,22.8,18.9,79,102200,0,0,409,0,0,0,0,0,0,0,190,4.6,10,9,19.3,7620,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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,22.2,18.9,82,102100,0,0,417,0,0,0,0,0,0,0,190,4.1,10,10,19.3,7620,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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.2,18.9,82,102100,0,0,417,0,0,0,0,0,0,0,170,3.6,10,10,16.1,3660,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.7,19.4,87,102100,0,0,389,0,0,0,0,0,0,0,220,3.6,8,7,16.1,3660,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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,102000,0,0,395,0,0,0,0,0,0,0,190,3.1,8,8,12.9,1070,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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.7,19.4,87,102000,0,0,415,0,0,0,0,0,0,0,170,2.6,10,10,12.9,400,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.7,19.4,87,102000,59,1002,415,8,0,8,1000,0,1000,310,180,2.6,10,10,11.3,340,9,999999999,350,0.2180,0,88,999.000,999.0,99.0 +1981,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,22.2,19.4,84,102000,276,1321,418,49,2,49,5700,100,5700,1870,200,3.1,10,10,11.3,520,9,999999999,350,0.2180,0,88,999.000,999.0,99.0 +1981,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,22.8,20.0,84,101900,509,1321,422,126,2,126,14500,100,14400,4970,190,4.1,10,10,11.3,240,9,999999999,359,0.2180,0,88,999.000,999.0,99.0 +1981,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,23.9,20.0,79,101900,731,1321,428,214,8,210,24600,700,24200,8720,190,4.6,10,10,16.1,460,9,999999999,359,0.2180,0,88,999.000,999.0,99.0 +1981,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,20.0,71,101900,927,1321,426,412,65,366,45300,6700,40600,12560,190,5.2,10,9,16.1,3050,9,999999999,359,0.2180,0,88,999.000,999.0,99.0 +1981,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,26.1,19.4,67,101900,1084,1321,428,431,87,359,47500,8900,40200,14870,180,5.2,10,9,24.1,3050,9,999999999,350,0.2180,0,88,999.000,999.0,99.0 +1981,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,27.8,18.9,58,101800,1191,1321,437,550,83,476,60800,8600,53000,22440,190,7.2,10,9,24.1,3660,9,999999999,340,0.2180,0,88,999.000,999.0,99.0 +1981,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,27.8,18.9,58,101800,1240,1321,437,402,100,308,45400,10800,35200,17520,180,5.2,10,9,24.1,3660,9,999999999,340,0.2180,0,88,999.000,999.0,99.0 +1981,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,27.2,19.4,63,101700,1228,1321,447,232,6,227,28600,500,28200,11330,210,4.1,10,10,24.1,790,9,999999999,350,0.2180,0,88,999.000,999.0,99.0 +1981,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,25.6,21.1,77,101700,1156,1321,440,167,6,162,20900,400,20500,8410,220,5.2,10,10,16.1,790,9,999999999,390,0.2180,0,88,999.000,999.0,99.0 +1981,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,24.4,20.6,79,101700,1029,1321,432,165,1,164,20200,100,20200,8340,270,7.2,10,10,24.1,880,9,999999999,370,0.2180,0,88,999.000,999.0,99.0 +1981,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,25.0,20.0,74,101600,855,1321,435,208,5,205,24500,400,24200,9320,180,1.5,10,10,24.1,3050,9,999999999,359,0.2180,0,88,999.000,999.0,99.0 +1981,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,23.9,21.1,85,101600,647,1321,430,93,0,93,11200,0,11200,4320,230,6.7,10,10,16.1,610,9,999999999,390,0.2180,0,88,999.000,999.0,99.0 +1981,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,23.9,21.1,85,101500,419,1321,430,109,3,108,12300,200,12300,4030,250,3.6,10,10,24.1,1830,9,999999999,390,0.2180,0,88,999.000,999.0,99.0 +1981,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,23.3,21.1,87,101500,186,1321,426,23,1,23,2700,0,2700,900,220,3.1,10,10,19.3,1830,9,999999999,379,0.2180,0,88,999.000,999.0,99.0 +1981,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,23.3,20.0,82,101500,13,495,425,5,0,5,0,0,0,0,210,4.6,10,10,19.3,1520,9,999999999,359,0.2180,0,88,999.000,999.0,99.0 +1981,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,22.8,20.0,84,101500,0,0,422,0,0,0,0,0,0,0,200,4.1,10,10,19.3,1520,9,999999999,359,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.7,19.4,87,101500,0,0,415,0,0,0,0,0,0,0,200,3.6,10,10,19.3,3660,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.7,18.9,84,101400,0,0,414,0,0,0,0,0,0,0,140,3.1,10,10,19.3,3660,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.1,19.4,90,101400,0,0,412,0,0,0,0,0,0,0,110,3.1,10,10,16.1,610,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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,20.0,18.3,90,101300,0,0,404,0,0,0,0,0,0,0,110,4.1,10,10,3.2,310,9,999999999,320,0.1950,0,88,999.000,999.0,99.0 +1981,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,20.0,17.8,87,101100,0,0,404,0,0,0,0,0,0,0,110,5.7,10,10,3.2,310,9,999999999,309,0.1950,0,88,999.000,999.0,99.0 +1981,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,18.9,17.8,93,101100,0,0,398,0,0,0,0,0,0,0,120,4.1,10,10,3.2,310,9,999999999,309,0.1950,0,88,999.000,999.0,99.0 +1981,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.3,17.8,97,101000,0,0,394,0,0,0,0,0,0,0,110,4.6,10,10,3.2,240,9,999999999,309,0.1950,0,88,999.000,999.0,99.0 +1981,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.9,18.3,97,100900,57,1002,398,9,0,9,1100,0,1100,340,110,4.1,10,10,2.0,240,9,999999999,329,0.0930,0,88,999.000,999.0,99.0 +1981,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,18.9,17.8,93,100900,274,1321,398,47,1,47,5500,0,5500,1810,120,4.1,10,10,2.0,210,9,999999999,309,0.0930,0,88,999.000,999.0,99.0 +1981,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,20.0,19.4,97,100900,507,1321,406,153,0,153,17200,0,17200,5660,110,3.6,10,10,3.2,240,9,999999999,350,0.0930,0,88,999.000,999.0,99.0 +1981,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,20.6,18.9,90,100900,729,1321,408,236,1,235,26800,100,26700,9390,90,3.6,10,10,3.2,270,9,999999999,329,0.0930,0,88,999.000,999.0,99.0 +1981,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,22.2,20.6,90,100800,926,1321,419,343,1,342,39100,100,39100,13900,90,3.1,10,10,3.2,270,9,999999999,370,0.0930,0,88,999.000,999.0,99.0 +1981,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,21.1,19.4,90,100800,1083,1321,412,368,1,367,42800,100,42700,15830,130,3.6,10,10,3.2,460,9,999999999,340,0.0930,0,88,999.000,999.0,99.0 +1981,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,23.3,20.6,84,100700,1190,1321,426,411,1,410,48100,100,48000,17580,130,3.6,10,10,8.0,460,9,999999999,370,0.0930,0,88,999.000,999.0,99.0 +1981,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,23.3,20.0,82,100600,1239,1321,425,466,1,465,54400,100,54300,19310,160,3.6,10,10,8.0,460,9,999999999,359,0.0930,0,88,999.000,999.0,99.0 +1981,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,23.3,20.0,82,100500,1228,1321,425,455,1,455,53200,100,53100,18990,150,4.6,10,10,8.0,460,9,999999999,359,0.0930,0,88,999.000,999.0,99.0 +1981,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,24.4,21.1,82,100500,1156,1321,433,436,1,435,50600,100,50500,18040,170,6.7,10,10,4.8,400,9,999999999,379,0.0930,0,88,999.000,999.0,99.0 +1981,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,24.4,21.1,82,100500,1029,1321,433,223,1,223,26800,100,26800,10770,230,5.7,10,10,6.4,400,9,999999999,379,0.0930,0,88,999.000,999.0,99.0 +1981,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,23.3,20.6,84,100600,855,1321,426,189,0,189,22300,0,22300,8750,290,5.7,10,10,9.7,340,9,999999999,370,0.0930,0,88,999.000,999.0,99.0 +1981,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,22.8,20.6,87,100600,647,1321,423,225,1,225,25300,100,25300,8430,290,4.1,10,10,16.1,340,9,999999999,370,0.0930,0,88,999.000,999.0,99.0 +1981,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,22.8,20.6,87,100600,418,1321,423,70,0,70,8200,0,8200,2890,270,5.2,10,10,11.3,1070,9,999999999,370,0.0930,0,88,999.000,999.0,99.0 +1981,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,22.2,20.6,90,100600,186,1321,419,26,0,26,3000,0,3000,1000,250,3.6,10,10,12.9,1070,9,999999999,370,0.0930,0,88,999.000,999.0,99.0 +1981,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,22.2,20.6,90,100600,13,495,419,4,0,4,0,0,0,0,280,3.6,10,10,8.0,730,9,999999999,370,0.0930,0,88,999.000,999.0,99.0 +1981,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,22.2,20.0,87,100700,0,0,407,0,0,0,0,0,0,0,270,2.6,10,9,16.1,3050,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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,22.2,20.6,90,100700,0,0,408,0,0,0,0,0,0,0,230,4.1,9,9,19.3,1980,9,999999999,370,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.7,20.0,90,100700,0,0,372,0,0,0,0,0,0,0,240,4.1,3,2,20.9,77777,9,999999999,359,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.7,20.0,90,100700,0,0,385,0,0,0,0,0,0,0,240,4.6,7,6,20.9,2440,9,999999999,359,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.7,19.4,87,100700,0,0,384,0,0,0,0,0,0,0,250,3.6,6,6,20.9,1830,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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,22.2,19.4,84,100700,0,0,387,0,0,0,0,0,0,0,270,4.1,6,6,20.9,1490,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.7,19.4,87,100700,0,0,372,0,0,0,0,0,0,0,270,4.1,3,2,20.9,77777,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.7,19.4,87,100700,0,0,372,0,0,0,0,0,0,0,270,4.6,3,2,20.9,77777,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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,21.7,19.4,87,100700,56,980,389,15,1,15,1700,0,1700,530,290,3.6,8,7,24.1,1680,9,999999999,340,0.2630,0,88,999.000,999.0,99.0 +1981,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,19.4,82,100800,272,1321,395,82,59,70,9000,4700,8000,1510,290,4.6,8,7,24.1,1980,9,999999999,350,0.2630,0,88,999.000,999.0,99.0 +1981,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,19.4,84,100800,505,1321,406,176,56,154,19200,5400,17200,4270,300,3.6,10,9,24.1,1830,9,999999999,340,0.2630,0,88,999.000,999.0,99.0 +1981,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,23.3,19.4,79,100900,728,1321,424,216,5,213,24700,400,24500,8780,280,3.6,10,10,19.3,3050,9,999999999,350,0.2630,0,88,999.000,999.0,99.0 +1981,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,24.4,19.4,74,100900,925,1321,419,364,110,287,40100,11700,31900,8690,290,4.1,10,9,19.3,3050,9,999999999,350,0.2630,0,88,999.000,999.0,99.0 +1981,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,26.7,20.0,67,100800,1082,1321,385,776,688,211,82200,70100,24700,7990,270,3.6,0,0,16.1,77777,9,999999999,359,0.2630,0,88,999.000,999.0,99.0 +1981,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,28.3,19.4,59,100800,1189,1321,406,849,632,278,89100,63800,31600,14550,280,4.6,2,2,16.1,77777,9,999999999,350,0.2630,0,88,999.000,999.0,99.0 +1981,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,28.9,19.4,57,100800,1238,1321,417,772,436,362,82700,45600,39900,24680,270,4.6,4,4,16.1,77777,9,999999999,350,0.2630,0,88,999.000,999.0,99.0 +1981,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,29.4,17.8,49,100700,1227,1321,417,808,502,340,87000,52500,38100,21800,280,4.1,4,4,16.1,77777,9,999999999,309,0.2630,0,88,999.000,999.0,99.0 +1981,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,28.9,18.3,53,100700,1155,1321,415,764,486,338,81600,50700,37100,16210,360,3.1,4,4,16.1,77777,9,999999999,320,0.2630,0,88,999.000,999.0,99.0 +1981,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,31.1,18.9,48,100700,1028,1321,425,660,485,282,70500,50500,31100,9570,320,3.1,3,3,12.9,77777,9,999999999,329,0.2630,0,88,999.000,999.0,99.0 +1981,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,28.3,18.9,57,100700,855,1321,409,535,460,237,56600,47400,25900,6050,130,3.1,3,3,12.9,77777,9,999999999,340,0.2630,0,88,999.000,999.0,99.0 +1981,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,27.8,18.9,58,100700,646,1321,403,374,391,182,39000,39000,19900,3840,140,5.2,2,2,11.3,77777,9,999999999,329,0.2630,0,88,999.000,999.0,99.0 +1981,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,27.8,20.6,65,100700,417,1321,392,204,339,97,21500,30500,11900,1810,160,3.6,0,0,12.9,77777,9,999999999,370,0.2630,0,88,999.000,999.0,99.0 +1981,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,29.4,18.3,51,100700,185,1321,397,62,100,48,6500,6000,5700,890,250,3.6,0,0,12.9,77777,9,999999999,320,0.2630,0,88,999.000,999.0,99.0 +1981,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,18.3,53,100700,13,473,395,6,0,6,0,0,0,0,260,3.1,0,0,12.9,77777,9,999999999,320,0.2630,0,88,999.000,999.0,99.0 +1981,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,27.8,19.4,61,100800,0,0,390,0,0,0,0,0,0,0,260,2.6,0,0,11.3,77777,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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.2,19.4,63,100800,0,0,387,0,0,0,0,0,0,0,280,3.6,0,0,11.3,77777,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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,26.7,19.4,65,100800,0,0,385,0,0,0,0,0,0,0,280,4.6,0,0,11.3,77777,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,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,25.6,18.9,67,100900,0,0,379,0,0,0,0,0,0,0,290,4.1,0,0,11.3,77777,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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,25.6,18.9,67,100800,0,0,379,0,0,0,0,0,0,0,290,5.2,0,0,11.3,77777,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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,25.0,18.9,69,100800,0,0,375,0,0,0,0,0,0,0,290,5.7,0,0,11.3,77777,9,999999999,329,0.1950,0,88,999.000,999.0,99.0 +1981,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,24.4,18.9,71,100800,0,0,372,0,0,0,0,0,0,0,280,4.6,0,0,11.3,77777,9,999999999,329,0.1950,0,88,999.000,999.0,99.0 +1981,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,23.9,18.9,74,100800,0,0,377,0,0,0,0,0,0,0,270,4.6,2,1,11.3,77777,9,999999999,340,0.1950,0,88,999.000,999.0,99.0 +1981,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.9,18.9,74,100800,54,958,377,14,7,13,1500,400,1500,330,280,5.2,2,1,11.3,77777,9,999999999,340,0.2530,0,88,999.000,999.0,99.0 +1981,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,18.9,74,100900,270,1321,370,109,207,66,11500,15700,8300,1230,290,5.2,0,0,9.7,77777,9,999999999,340,0.2530,0,88,999.000,999.0,99.0 +1981,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,26.1,18.9,65,100900,503,1321,381,283,405,128,29600,38400,15000,2480,290,5.7,4,0,9.7,77777,9,999999999,340,0.2530,0,88,999.000,999.0,99.0 +1981,7,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,100900,726,1321,392,484,510,203,50800,51700,22300,4540,320,6.2,8,0,11.3,77777,9,999999999,340,0.2530,0,88,999.000,999.0,99.0 +1981,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,18.9,53,100900,923,1321,411,632,496,284,66300,51300,30400,8040,320,6.2,10,2,11.3,77777,9,999999999,329,0.2530,0,88,999.000,999.0,99.0 +1981,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,18.9,48,101000,1081,1321,421,767,544,320,81400,56700,34900,12340,300,4.1,10,2,12.9,77777,9,999999999,329,0.2530,0,88,999.000,999.0,99.0 +1981,7,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,101000,1188,1321,424,825,561,318,88900,58700,36000,17120,300,7.2,7,2,16.1,77777,9,999999999,340,0.2530,0,88,999.000,999.0,99.0 +1981,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,17.8,40,101000,1237,1321,442,742,364,400,81800,39600,44600,24060,320,7.2,5,5,12.9,77777,9,999999999,320,0.2530,0,88,999.000,999.0,99.0 +1981,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,17.8,38,100900,1226,1321,435,855,550,343,92000,57500,38500,21920,290,5.7,7,2,12.9,77777,9,999999999,309,0.2530,0,88,999.000,999.0,99.0 +1981,7,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.1,34,101000,1155,1321,433,837,593,317,89900,62000,35600,15120,360,8.2,8,2,16.1,77777,9,999999999,279,0.2530,0,88,999.000,999.0,99.0 +1981,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,33.3,16.1,36,101000,1028,1321,433,709,547,283,75700,57000,31300,9590,340,6.7,7,3,16.1,77777,9,999999999,290,0.2530,0,88,999.000,999.0,99.0 +1981,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,33.3,16.1,36,101000,854,1321,433,538,524,199,58000,54100,22900,5000,340,5.7,6,3,16.1,77777,9,999999999,290,0.2530,0,88,999.000,999.0,99.0 +1981,7,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.7,38,101000,645,1321,427,382,438,167,40200,43700,18800,3490,330,6.2,3,2,16.1,77777,9,999999999,290,0.2530,0,88,999.000,999.0,99.0 +1981,7,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,14.4,36,101100,416,1321,401,219,327,116,23300,30000,13800,2310,320,6.2,6,0,16.1,77777,9,999999999,259,0.2530,0,88,999.000,999.0,99.0 +1981,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,30.6,13.9,36,101100,184,1321,406,59,76,48,6400,5000,5700,1010,330,5.2,6,1,16.1,77777,9,999999999,250,0.2530,0,88,999.000,999.0,99.0 +1981,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,28.9,13.9,40,101200,12,473,389,7,0,7,0,0,0,0,330,4.1,3,0,16.1,77777,9,999999999,250,0.2530,0,88,999.000,999.0,99.0 +1981,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,28.9,13.9,40,101300,0,0,389,0,0,0,0,0,0,0,340,4.1,0,0,17.7,77777,9,999999999,250,0.1950,0,88,999.000,999.0,99.0 +1981,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,27.8,13.9,43,101300,0,0,384,0,0,0,0,0,0,0,330,2.6,0,0,19.3,77777,9,999999999,250,0.1950,0,88,999.000,999.0,99.0 +1981,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.2,13.9,44,101300,0,0,381,0,0,0,0,0,0,0,320,3.1,0,0,19.3,77777,9,999999999,250,0.1950,0,88,999.000,999.0,99.0 +1981,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,25.6,14.4,50,101300,0,0,373,0,0,0,0,0,0,0,310,3.1,2,0,19.3,77777,9,999999999,259,0.1950,0,88,999.000,999.0,99.0 +1981,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,25.6,15.0,52,101300,0,0,374,0,0,0,0,0,0,0,310,2.6,2,0,19.3,77777,9,999999999,270,0.1950,0,88,999.000,999.0,99.0 +1981,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,15.6,58,101300,0,0,369,0,0,0,0,0,0,0,310,2.1,3,0,19.3,77777,9,999999999,279,0.1950,0,88,999.000,999.0,99.0 +1981,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,22.2,16.7,71,101300,0,0,359,0,0,0,0,0,0,0,250,1.5,0,0,19.3,77777,9,999999999,290,0.1950,0,88,999.000,999.0,99.0 +1981,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,22.8,16.7,69,101300,0,0,378,0,0,0,0,0,0,0,270,3.6,4,3,19.3,77777,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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,16.7,69,101300,53,958,374,17,11,16,1800,600,1800,390,240,3.1,7,2,14.5,77777,9,999999999,300,0.1890,0,88,999.000,999.0,99.0 +1981,7,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101300,267,1321,382,111,157,79,11600,11800,9200,1530,230,4.6,8,2,9.7,77777,9,999999999,290,0.1890,0,88,999.000,999.0,99.0 +1981,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,26.7,17.2,56,101200,501,1321,389,278,459,103,29700,43600,13200,1950,240,6.2,2,1,12.9,77777,9,999999999,300,0.1890,0,88,999.000,999.0,99.0 +1981,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,28.9,18.3,53,101200,724,1321,402,452,581,132,47300,57800,15600,2930,260,4.6,2,1,12.9,77777,9,999999999,329,0.1890,0,88,999.000,999.0,99.0 +1981,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,30.0,18.3,50,101100,921,1321,408,626,655,168,66200,66500,19700,4670,240,6.2,2,1,12.9,77777,9,999999999,329,0.1890,0,88,999.000,999.0,99.0 +1981,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,17.8,44,101100,1079,1321,417,754,686,191,80300,70200,22900,7250,260,7.2,3,1,12.9,77777,9,999999999,320,0.1890,0,88,999.000,999.0,99.0 +1981,7,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,101000,1187,1321,425,868,664,270,91400,67200,30900,14040,260,6.7,6,2,12.9,77777,9,999999999,309,0.1890,0,88,999.000,999.0,99.0 +1981,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,17.2,36,100900,1237,1321,437,895,701,237,95600,71600,28400,15630,270,8.2,8,2,19.3,77777,9,999999999,300,0.1890,0,88,999.000,999.0,99.0 +1981,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,16.7,32,100800,1225,1321,447,841,530,347,90300,55400,38800,22100,290,8.8,9,3,19.3,77777,9,999999999,290,0.1890,0,88,999.000,999.0,99.0 +1981,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,16.1,30,100700,1154,1321,449,818,584,307,88200,61100,34800,14590,280,9.3,9,3,19.3,77777,9,999999999,279,0.1890,0,88,999.000,999.0,99.0 +1981,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.1,16.7,31,100600,1027,1321,446,718,571,273,76900,59500,30600,9220,280,9.8,8,2,19.3,77777,9,999999999,290,0.1890,0,88,999.000,999.0,99.0 +1981,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,35.6,15.6,30,100600,853,1321,441,581,548,226,61700,56500,25100,5730,280,9.8,8,2,19.3,77777,9,999999999,270,0.1890,0,88,999.000,999.0,99.0 +1981,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,35.0,16.7,34,100600,645,1321,434,393,509,144,42000,50900,17200,2970,290,9.3,7,1,19.3,77777,9,999999999,300,0.1890,0,88,999.000,999.0,99.0 +1981,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,35.0,16.7,34,100600,416,1321,426,221,416,90,23500,37400,11700,1670,290,6.7,3,0,19.3,77777,9,999999999,300,0.1890,0,88,999.000,999.0,99.0 +1981,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,33.3,16.1,36,100600,182,1321,415,69,155,47,7200,9300,5900,870,290,7.2,3,0,19.3,77777,9,999999999,279,0.1890,0,88,999.000,999.0,99.0 +1981,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,32.2,13.9,33,100700,12,474,407,6,2,5,0,0,0,0,290,6.7,0,0,19.3,77777,9,999999999,250,0.1890,0,88,999.000,999.0,99.0 +1981,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,30.6,14.4,37,100700,0,0,399,0,0,0,0,0,0,0,280,7.2,0,0,19.3,77777,9,999999999,250,0.1950,0,88,999.000,999.0,99.0 +1981,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,29.4,16.1,45,100700,0,0,395,0,0,0,0,0,0,0,280,6.2,0,0,19.3,77777,9,999999999,290,0.1950,0,88,999.000,999.0,99.0 +1981,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,29.4,17.2,48,100700,0,0,396,0,0,0,0,0,0,0,290,6.2,0,0,19.3,77777,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1981,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,29.4,17.8,49,100700,0,0,397,0,0,0,0,0,0,0,280,6.2,0,0,19.3,77777,9,999999999,309,0.1950,0,88,999.000,999.0,99.0 +1981,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,27.8,17.8,55,100600,0,0,388,0,0,0,0,0,0,0,280,6.2,0,0,19.3,77777,9,999999999,320,0.1950,0,88,999.000,999.0,99.0 +1981,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,27.8,18.3,56,100600,0,0,389,0,0,0,0,0,0,0,280,5.2,0,0,19.3,77777,9,999999999,320,0.1950,0,88,999.000,999.0,99.0 +1981,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,27.2,18.3,58,100600,0,0,386,0,0,0,0,0,0,0,270,4.6,0,0,19.3,77777,9,999999999,320,0.1950,0,88,999.000,999.0,99.0 +1981,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,26.7,18.9,62,100700,0,0,384,0,0,0,0,0,0,0,300,5.7,0,0,9.7,77777,9,999999999,329,0.1950,0,88,999.000,999.0,99.0 +1981,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,26.1,18.9,65,100700,51,936,381,24,90,16,2300,3400,2100,280,290,5.2,0,0,8.0,77777,9,999999999,340,0.0900,0,88,999.000,999.0,99.0 +1981,7,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,100700,265,1321,384,133,453,41,13700,35100,6700,770,290,5.2,0,0,8.0,77777,9,999999999,329,0.0900,0,88,999.000,999.0,99.0 +1981,7,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,100700,499,1321,392,312,657,62,32500,61900,9100,1290,290,4.1,0,0,9.7,77777,9,999999999,340,0.0900,0,88,999.000,999.0,99.0 +1981,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,27.8,19.4,61,100700,722,1321,390,496,756,81,52800,75300,11600,1890,110,2.6,0,0,8.0,77777,9,999999999,350,0.0900,0,88,999.000,999.0,99.0 +1981,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,31.1,20.0,52,100700,920,1321,409,677,774,136,70400,77400,16400,3480,270,4.6,5,0,9.7,77777,9,999999999,359,0.0900,0,88,999.000,999.0,99.0 +1981,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,32.2,20.0,48,100600,1078,1321,415,822,816,154,86400,82200,19200,5380,270,5.2,5,0,9.7,77777,9,999999999,350,0.0900,0,88,999.000,999.0,99.0 +1981,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,33.9,19.4,43,100600,1186,1321,423,910,852,143,93100,85300,16400,5690,270,5.2,3,0,9.7,77777,9,999999999,350,0.0900,0,88,999.000,999.0,99.0 +1981,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,34.4,18.3,38,100500,1236,1321,424,984,822,213,101900,82200,24900,12740,260,6.2,8,0,11.3,77777,9,999999999,320,0.0900,0,88,999.000,999.0,99.0 +1981,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,36.1,18.3,35,100400,1225,1321,442,870,761,163,92700,77100,21100,9620,290,6.7,8,1,11.3,77777,9,999999999,320,0.0900,0,88,999.000,999.0,99.0 +1981,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,36.7,18.9,35,100400,1153,1321,457,769,579,262,80800,58600,29600,12050,290,7.7,9,3,12.9,77777,9,999999999,329,0.0900,0,88,999.000,999.0,99.0 +1981,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,37.2,18.9,34,100300,1026,1321,464,590,449,240,64000,46900,27500,8020,290,6.7,9,4,16.1,77777,9,999999999,329,0.0900,0,88,999.000,999.0,99.0 +1981,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,36.1,19.4,38,100300,852,1321,458,561,597,174,58600,60000,19800,4340,290,6.7,8,4,16.1,77777,9,999999999,350,0.0900,0,88,999.000,999.0,99.0 +1981,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,35.6,20.0,40,100300,644,1321,463,399,446,181,41600,44400,20000,3820,290,7.2,9,6,16.1,1520,9,999999999,350,0.0900,0,88,999.000,999.0,99.0 +1981,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,34.4,20.0,43,100300,414,1321,456,136,152,88,14700,14000,10300,1660,300,6.2,9,6,16.1,1520,9,999999999,359,0.0900,0,88,999.000,999.0,99.0 +1981,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,33.9,20.0,44,100400,181,1321,453,57,65,48,6200,4200,5600,1010,290,6.7,9,6,16.1,1680,9,999999999,350,0.0900,0,88,999.000,999.0,99.0 +1981,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,32.8,20.6,49,100400,11,451,440,4,4,3,0,0,0,0,290,5.7,8,4,16.1,77777,9,999999999,370,0.0900,0,88,999.000,999.0,99.0 +1981,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,31.1,18.9,48,100600,0,0,470,0,0,0,0,0,0,0,320,10.3,10,10,12.9,1310,9,999999999,329,0.1950,0,88,999.000,999.0,99.0 +1981,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,25.0,20.6,76,100500,0,0,408,0,0,0,0,0,0,0,290,3.1,7,7,19.3,2130,9,999999999,370,0.1950,0,88,999.000,999.0,99.0 +1981,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,20.6,76,100400,0,0,390,0,0,0,0,0,0,0,250,4.1,2,2,19.3,77777,9,999999999,370,0.1950,0,88,999.000,999.0,99.0 +1981,7,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,100400,0,0,401,0,0,0,0,0,0,0,290,4.6,3,3,19.3,77777,9,999999999,350,0.1950,0,88,999.000,999.0,99.0 +1981,7,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,100400,0,0,385,0,0,0,0,0,0,0,290,4.1,0,0,19.3,77777,9,999999999,350,0.1940,0,88,999.000,999.0,99.0 +1981,7,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,100400,0,0,385,0,0,0,0,0,0,0,290,5.2,0,0,19.3,77777,9,999999999,359,0.1940,0,88,999.000,999.0,99.0 +1981,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,26.1,20.6,72,100500,0,0,383,0,0,0,0,0,0,0,310,6.7,0,0,19.3,77777,9,999999999,370,0.1940,0,88,999.000,999.0,99.0 +1981,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,24.4,20.6,79,100600,0,0,374,0,0,0,0,0,0,0,330,5.7,0,0,19.3,77777,9,999999999,370,0.1940,0,88,999.000,999.0,99.0 +1981,7,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,100700,49,914,394,18,0,18,2000,0,2000,600,340,6.7,7,4,16.1,3660,9,999999999,370,0.3570,0,88,999.000,999.0,99.0 +1981,7,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,100900,263,1322,376,101,110,79,10900,8500,9200,1700,360,5.7,4,0,16.1,77777,9,999999999,340,0.3570,0,88,999.000,999.0,99.0 +1981,7,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,101000,497,1322,381,251,320,131,27000,31100,15300,2650,340,5.7,0,0,19.3,77777,9,999999999,340,0.3570,0,88,999.000,999.0,99.0 +1981,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,26.7,16.1,52,101000,720,1322,381,443,472,184,46800,47800,20700,4060,360,4.1,0,0,24.1,77777,9,999999999,279,0.3570,0,88,999.000,999.0,99.0 +1981,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,28.3,15.6,46,101000,918,1322,396,599,540,223,64400,56000,25400,6140,360,4.1,1,1,24.1,77777,9,999999999,279,0.3570,0,88,999.000,999.0,99.0 +1981,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,28.9,15.0,43,101000,1076,1322,404,693,472,307,73800,49200,33700,11680,260,3.6,2,2,24.1,77777,9,999999999,270,0.3570,0,88,999.000,999.0,99.0 +1981,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,27.2,16.1,51,101000,1184,1322,391,833,622,273,87500,62900,31000,14050,150,3.6,1,1,24.1,77777,9,999999999,290,0.3570,0,88,999.000,999.0,99.0 +1981,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,28.3,15.6,46,101000,1235,1322,388,910,669,283,95900,67700,32500,18270,130,5.7,0,0,24.1,77777,9,999999999,279,0.3570,0,88,999.000,999.0,99.0 +1981,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,12.8,33,100900,1224,1322,399,901,668,281,95000,67600,32300,17160,290,6.2,0,0,24.1,77777,9,999999999,240,0.3570,0,88,999.000,999.0,99.0 +1981,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,31.1,12.2,31,100900,1152,1322,399,830,641,269,87000,64700,30500,12310,330,6.7,0,0,24.1,77777,9,999999999,220,0.3570,0,88,999.000,999.0,99.0 +1981,7,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,10.6,28,100900,1025,1322,396,725,614,247,75500,61700,27500,8000,290,5.7,0,0,24.1,77777,9,999999999,200,0.3570,0,88,999.000,999.0,99.0 +1981,7,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,10.6,28,100900,852,1322,396,560,538,213,59900,55500,24100,5370,300,5.7,0,0,24.1,77777,9,999999999,200,0.3570,0,88,999.000,999.0,99.0 +1981,7,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.3,34,100900,643,1322,400,376,424,170,39600,42200,19000,3560,310,5.2,1,0,24.1,77777,9,999999999,240,0.3570,0,88,999.000,999.0,99.0 +1981,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,13.3,35,100900,413,1322,397,194,253,115,20600,23200,13400,2290,300,5.7,2,0,24.1,77777,9,999999999,240,0.3570,0,88,999.000,999.0,99.0 +1981,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,29.4,13.3,37,100900,180,1322,391,58,49,51,6300,3200,5800,1070,310,4.6,1,0,24.1,77777,9,999999999,240,0.3570,0,88,999.000,999.0,99.0 +1981,7,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,100900,11,452,389,6,0,6,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,240,0.3570,0,88,999.000,999.0,99.0 +1981,7,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,13.3,40,101000,0,0,385,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,240,0.1940,0,88,999.000,999.0,99.0 +1981,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,24.4,17.2,64,101000,0,0,370,0,0,0,0,0,0,0,230,5.2,0,0,24.1,77777,9,999999999,300,0.1940,0,88,999.000,999.0,99.0 +1981,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,23.9,17.2,66,101000,0,0,368,0,0,0,0,0,0,0,230,3.6,0,0,24.1,77777,9,999999999,300,0.1940,0,88,999.000,999.0,99.0 +1981,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,16.1,62,101000,0,0,367,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,290,0.1940,0,88,999.000,999.0,99.0 +1981,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,24.4,15.6,58,101000,0,0,369,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,279,0.1940,0,88,999.000,999.0,99.0 +1981,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,23.3,15.6,62,101000,0,0,363,0,0,0,0,0,0,0,280,5.7,0,0,24.1,77777,9,999999999,279,0.1940,0,88,999.000,999.0,99.0 +1981,7,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,101000,0,0,363,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,279,0.1940,0,88,999.000,999.0,99.0 +1981,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,22.8,15.0,62,101000,0,0,360,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,270,0.1940,0,88,999.000,999.0,99.0 +1981,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,22.8,14.4,59,101100,48,914,359,19,28,16,2000,1200,1900,330,290,5.2,0,0,24.1,77777,9,999999999,259,0.1640,0,88,999.000,999.0,99.0 +1981,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,23.9,14.4,56,101100,260,1322,365,117,313,54,12200,23300,7700,960,300,6.2,0,0,24.1,77777,9,999999999,259,0.1640,0,88,999.000,999.0,99.0 +1981,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,26.1,13.9,47,101200,494,1322,375,293,528,94,30200,49200,11800,1800,300,6.7,2,0,24.1,77777,9,999999999,250,0.1640,0,88,999.000,999.0,99.0 +1981,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,27.8,14.4,44,101200,718,1322,384,501,603,171,53300,61200,20000,3740,290,5.7,8,0,24.1,77777,9,999999999,259,0.1640,0,88,999.000,999.0,99.0 +1981,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,28.9,13.9,40,101200,916,1322,389,686,672,219,71100,67200,24400,5820,290,5.7,9,0,24.1,77777,9,999999999,250,0.1640,0,88,999.000,999.0,99.0 +1981,7,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.9,35,101100,1075,1322,401,845,712,264,88000,71600,29700,9580,320,4.6,10,0,24.1,77777,9,999999999,250,0.1640,0,88,999.000,999.0,99.0 +1981,7,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,12.8,32,101200,1183,1322,403,949,739,285,99400,74500,32600,14540,290,6.7,10,0,24.1,77777,9,999999999,240,0.1640,0,88,999.000,999.0,99.0 +1981,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,32.2,10.0,25,101100,1234,1322,401,1002,757,293,105300,76400,33800,18760,330,8.2,10,0,24.1,77777,9,999999999,189,0.1640,0,88,999.000,999.0,99.0 +1981,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,33.3,9.4,23,101100,1223,1322,420,936,695,292,98400,70200,33400,17700,300,7.7,9,2,24.1,77777,9,999999999,189,0.1640,0,88,999.000,999.0,99.0 +1981,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,33.3,10.0,24,101100,1152,1322,425,780,447,389,82000,46600,41300,18570,310,6.7,8,3,24.1,77777,9,999999999,200,0.1640,0,88,999.000,999.0,99.0 +1981,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,32.8,11.1,26,101100,1025,1322,406,759,745,180,80800,76100,21700,6040,300,6.2,4,0,24.1,77777,9,999999999,209,0.1640,0,88,999.000,999.0,99.0 +1981,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,33.3,11.1,26,101100,851,1322,417,574,681,135,61200,69200,16500,3470,340,5.7,1,1,24.1,77777,9,999999999,209,0.1640,0,88,999.000,999.0,99.0 +1981,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,32.2,10.0,25,101100,642,1322,409,415,642,102,43700,63300,12900,2170,340,5.2,1,1,24.1,77777,9,999999999,189,0.1640,0,88,999.000,999.0,99.0 +1981,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,31.1,11.1,29,101100,412,1322,418,169,222,100,18200,20300,11800,1930,300,5.2,4,4,24.1,77777,9,999999999,209,0.1640,0,88,999.000,999.0,99.0 +1981,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,30.6,11.7,31,101100,178,1322,423,59,50,52,6400,3200,5900,1100,350,3.6,6,6,24.1,1370,9,999999999,220,0.1640,0,88,999.000,999.0,99.0 +1981,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,29.4,12.2,35,101200,10,430,407,4,1,4,0,0,0,0,360,2.6,3,3,24.1,77777,9,999999999,229,0.1640,0,88,999.000,999.0,99.0 +1981,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,27.8,14.4,44,101300,0,0,401,0,0,0,0,0,0,0,320,3.6,3,3,24.1,77777,9,999999999,259,0.1940,0,88,999.000,999.0,99.0 +1981,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,27.2,13.3,42,101300,0,0,380,0,0,0,0,0,0,0,340,6.2,0,0,24.1,77777,9,999999999,240,0.1940,0,88,999.000,999.0,99.0 +1981,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,26.1,12.8,44,101300,0,0,374,0,0,0,0,0,0,0,340,6.7,0,0,24.1,77777,9,999999999,240,0.1940,0,88,999.000,999.0,99.0 +1981,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,25.6,13.3,47,101300,0,0,372,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,240,0.1940,0,88,999.000,999.0,99.0 +1981,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,25.0,13.9,50,101400,0,0,370,0,0,0,0,0,0,0,270,5.2,0,0,24.1,77777,9,999999999,250,0.1940,0,88,999.000,999.0,99.0 +1981,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,24.4,13.9,52,101400,0,0,367,0,0,0,0,0,0,0,300,4.6,2,0,24.1,77777,9,999999999,250,0.1940,0,88,999.000,999.0,99.0 +1981,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,24.4,12.8,48,101400,0,0,372,0,0,0,0,0,0,0,340,6.2,6,1,24.1,77777,9,999999999,229,0.1940,0,88,999.000,999.0,99.0 +1981,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,22.2,13.3,57,101400,0,0,367,0,0,0,0,0,0,0,360,4.1,7,2,24.1,77777,9,999999999,240,0.1940,0,88,999.000,999.0,99.0 +1981,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,21.7,13.3,59,101500,46,892,377,19,11,18,2000,600,2000,430,360,3.1,10,6,24.1,7620,9,999999999,240,0.0870,0,88,999.000,999.0,99.0 +1981,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,21.7,13.3,59,101600,258,1322,374,103,135,77,11200,10400,9200,1650,360,2.6,9,5,24.1,7620,9,999999999,240,0.0870,0,88,999.000,999.0,99.0 +1981,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,22.8,13.3,55,101700,492,1322,383,233,205,157,25300,19800,18000,3630,50,2.1,10,6,24.1,7620,9,999999999,240,0.0870,0,88,999.000,999.0,99.0 +1981,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,24.4,11.1,43,101700,716,1322,382,418,448,174,44400,45400,19800,3810,70,1.5,10,4,24.1,77777,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1981,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,12.2,47,101600,915,1322,386,614,540,240,65600,56000,26800,6620,150,3.1,10,5,24.1,77777,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1981,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,11.1,38,101600,1074,1322,397,789,591,307,84000,61600,33900,11590,190,3.6,10,5,24.1,77777,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1981,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,27.8,10.0,33,101600,1182,1322,395,790,554,293,85900,58000,33900,15350,140,4.6,10,3,24.1,77777,9,999999999,200,0.0870,0,88,999.000,999.0,99.0 +1981,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,28.3,8.9,30,101500,1233,1322,392,941,817,176,99400,82500,22300,10680,140,4.6,8,2,24.1,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1981,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,29.4,10.6,31,101500,1222,1322,400,927,836,151,94600,83700,17100,6990,130,5.2,5,2,24.1,77777,9,999999999,200,0.0870,0,88,999.000,999.0,99.0 +1981,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,10.6,32,101400,1151,1322,402,787,628,239,83300,63800,27600,10980,130,6.7,4,3,24.1,77777,9,999999999,200,0.0870,0,88,999.000,999.0,99.0 +1981,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,28.9,10.6,32,101400,1024,1322,405,721,638,225,75500,64400,25500,7340,120,6.2,6,4,24.1,7620,9,999999999,200,0.0870,0,88,999.000,999.0,99.0 +1981,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,26.1,15.0,50,101300,850,1322,402,534,438,251,56000,45100,27000,6410,130,5.2,8,6,24.1,4880,9,999999999,259,0.0870,0,88,999.000,999.0,99.0 +1981,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,28.9,14.4,41,101300,640,1322,403,417,641,105,43800,63100,13200,2230,200,8.8,3,2,24.1,77777,9,999999999,259,0.0870,0,88,999.000,999.0,99.0 +1981,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,27.8,13.9,43,101300,411,1322,391,207,433,71,21400,38700,9300,1350,220,6.7,3,1,24.1,77777,9,999999999,250,0.0870,0,88,999.000,999.0,99.0 +1981,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,25.6,13.9,49,101300,177,1322,395,62,97,49,6700,6200,5900,1030,200,5.2,8,5,24.1,7620,9,999999999,250,0.0870,0,88,999.000,999.0,99.0 +1981,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,25.0,14.4,52,101300,10,430,396,6,3,5,0,0,0,0,230,6.2,8,6,24.1,7620,9,999999999,259,0.0870,0,88,999.000,999.0,99.0 +1981,7,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,101200,0,0,392,0,0,0,0,0,0,0,240,5.2,8,6,24.1,3660,9,999999999,290,0.1940,0,88,999.000,999.0,99.0 +1981,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,24.4,16.7,62,101200,0,0,427,0,0,0,0,0,0,0,240,5.7,10,10,19.3,3350,9,999999999,290,0.1940,0,88,999.000,999.0,99.0 +1981,7,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,101100,0,0,415,0,0,0,0,0,0,0,240,5.7,10,9,19.3,3350,9,999999999,290,0.1940,0,88,999.000,999.0,99.0 +1981,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,23.9,17.2,66,101100,0,0,413,0,0,0,0,0,0,0,230,6.2,10,9,19.3,3350,9,999999999,300,0.1940,0,88,999.000,999.0,99.0 +1981,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,23.9,17.2,66,101000,0,0,425,0,0,0,0,0,0,0,230,6.2,10,10,19.3,3350,9,999999999,300,0.1940,0,88,999.000,999.0,99.0 +1981,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,23.9,17.8,69,101100,0,0,425,0,0,0,0,0,0,0,270,4.6,10,10,19.3,1830,9,999999999,320,0.1940,0,88,999.000,999.0,99.0 +1981,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,18.9,79,101000,0,0,421,0,0,0,0,0,0,0,320,2.6,10,10,16.1,2440,9,999999999,340,0.1940,0,88,999.000,999.0,99.0 +1981,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,21.7,18.9,84,100900,0,0,414,0,0,0,0,0,0,0,170,5.2,10,10,16.1,2740,9,999999999,329,0.1940,0,88,999.000,999.0,99.0 +1981,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,21.7,18.9,84,100900,44,870,414,11,0,11,1300,0,1300,400,200,4.1,10,10,16.1,2440,9,999999999,329,0.2470,0,88,999.000,999.0,99.0 +1981,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.2,19.4,84,100900,255,1322,418,33,2,33,3900,0,3900,1320,40,2.1,10,10,12.9,2440,9,999999999,340,0.2470,0,88,999.000,999.0,99.0 +1981,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,22.2,19.4,84,100900,490,1322,418,65,5,63,7800,300,7700,2790,150,3.1,10,10,11.3,2740,9,999999999,340,0.2470,0,88,999.000,999.0,99.0 +1981,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,22.2,19.4,84,100800,714,1322,418,115,0,115,13800,0,13800,5380,150,4.1,10,10,12.9,2740,9,999999999,340,0.2470,0,88,999.000,999.0,99.0 +1981,7,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,100700,913,1322,418,457,221,303,50000,23400,33800,9060,180,3.6,9,8,12.9,2740,9,999999999,370,0.2470,0,88,999.000,999.0,99.0 +1981,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,28.9,18.9,55,100600,1072,1322,435,663,360,370,72000,39000,40300,13550,240,5.2,8,8,12.9,3050,9,999999999,329,0.2470,0,88,999.000,999.0,99.0 +1981,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,30.0,18.3,50,100500,1181,1322,450,429,104,336,47900,11200,37900,15610,250,6.2,10,9,12.9,3050,9,999999999,320,0.2470,0,88,999.000,999.0,99.0 +1981,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,29.4,17.2,48,100500,1231,1322,457,342,19,324,41000,1600,39400,15060,240,7.2,10,10,12.9,3050,9,999999999,300,0.2470,0,88,999.000,999.0,99.0 +1981,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,28.3,18.3,55,100400,1221,1322,452,205,6,199,25400,500,25000,10130,250,5.7,10,10,12.9,1830,9,999999999,320,0.2470,0,88,999.000,999.0,99.0 +1981,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.2,18.9,60,100300,1150,1322,446,324,4,320,38400,400,38100,14650,240,6.7,10,10,16.1,1980,9,999999999,329,0.2470,0,88,999.000,999.0,99.0 +1981,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,26.7,17.8,58,100300,1023,1322,442,284,1,283,33400,100,33300,12910,240,5.7,10,10,16.1,1980,9,999999999,309,0.2470,0,88,999.000,999.0,99.0 +1981,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,22.2,17.8,76,100300,849,1322,416,179,0,179,21200,0,21200,8350,20,4.1,10,10,16.1,1830,9,999999999,309,0.2470,0,88,999.000,999.0,99.0 +1981,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,22.2,17.8,76,100200,639,1322,372,363,417,161,38400,41500,18200,3340,160,3.1,3,2,16.1,77777,9,999999999,309,0.2470,0,88,999.000,999.0,99.0 +1981,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,21.7,18.3,81,100200,409,1322,370,183,264,101,19600,24100,12100,1960,220,3.1,2,2,16.1,77777,9,999999999,320,0.2470,0,88,999.000,999.0,99.0 +1981,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,21.7,18.3,81,100200,175,1322,370,55,78,45,6000,5000,5400,950,130,2.1,3,2,16.1,77777,9,999999999,320,0.2470,0,88,999.000,999.0,99.0 +1981,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,19.4,16.7,84,100400,9,408,399,1,0,1,0,0,0,0,350,1.5,10,10,8.0,520,9,999999999,290,0.2470,0,88,999.000,999.0,99.0 +1981,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,19.4,17.8,90,100300,0,0,400,0,0,0,0,0,0,0,220,4.6,10,10,19.3,3050,9,999999999,309,0.1940,0,88,999.000,999.0,99.0 +1981,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.0,17.8,87,100200,0,0,374,0,0,0,0,0,0,0,250,6.2,6,6,19.3,3050,9,999999999,309,0.1940,0,88,999.000,999.0,99.0 +1981,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.6,17.8,84,100200,0,0,364,0,0,0,0,0,0,0,270,5.7,2,2,19.3,77777,9,999999999,309,0.1940,0,88,999.000,999.0,99.0 +1981,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,20.6,17.2,81,100100,0,0,367,0,0,0,0,0,0,0,290,4.1,3,3,19.3,77777,9,999999999,300,0.1940,0,88,999.000,999.0,99.0 +1981,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,20.6,16.7,79,100000,0,0,367,0,0,0,0,0,0,0,290,3.6,3,3,19.3,77777,9,999999999,290,0.1940,0,88,999.000,999.0,99.0 +1981,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,20.6,16.7,79,100000,0,0,367,0,0,0,0,0,0,0,290,4.1,3,3,19.3,77777,9,999999999,290,0.1940,0,88,999.000,999.0,99.0 +1981,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,19.4,16.7,84,99900,0,0,346,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,290,0.1940,0,88,999.000,999.0,99.0 +1981,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,20.6,16.7,79,99800,0,0,376,0,0,0,0,0,0,0,280,3.1,6,6,24.1,3050,9,999999999,290,0.1940,0,88,999.000,999.0,99.0 +1981,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,20.6,16.7,79,99800,42,848,376,11,2,11,1300,0,1300,400,300,4.6,6,6,19.3,1220,9,999999999,290,0.2600,0,88,999.000,999.0,99.0 +1981,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,21.1,16.7,76,99800,252,1322,375,85,84,69,9300,6400,8000,1480,270,4.6,5,5,19.3,77777,9,999999999,290,0.2600,0,88,999.000,999.0,99.0 +1981,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,22.8,17.2,71,99900,487,1322,407,111,35,98,12200,3300,11000,2900,270,6.2,9,9,19.3,1680,9,999999999,300,0.2600,0,88,999.000,999.0,99.0 +1981,7,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,99900,712,1322,390,281,164,192,31000,17100,21800,4920,300,6.7,5,5,19.3,77777,9,999999999,300,0.2600,0,88,999.000,999.0,99.0 +1981,7,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,99900,911,1322,424,214,8,209,25400,600,24900,9740,310,6.2,10,10,24.1,3050,9,999999999,290,0.2600,0,88,999.000,999.0,99.0 +1981,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,24.4,15.0,56,99900,1070,1322,384,693,484,300,74000,50500,33000,11220,340,7.2,3,3,24.1,77777,9,999999999,259,0.2600,0,88,999.000,999.0,99.0 +1981,7,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,99900,1179,1322,390,854,635,286,89500,64000,32300,14350,320,6.7,4,4,24.1,77777,9,999999999,229,0.2600,0,88,999.000,999.0,99.0 +1981,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,23.9,13.3,52,99900,1230,1322,385,884,626,300,92800,63100,33900,18820,310,7.7,5,5,24.1,77777,9,999999999,240,0.2600,0,88,999.000,999.0,99.0 +1981,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,25.6,12.8,45,99900,1220,1322,417,493,103,398,54700,11000,44500,20910,300,8.2,9,9,24.1,2130,9,999999999,229,0.2600,0,88,999.000,999.0,99.0 +1981,7,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,100000,1149,1322,387,770,561,281,83600,58700,32500,13050,290,8.8,3,3,24.1,77777,9,999999999,229,0.2600,0,88,999.000,999.0,99.0 +1981,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,24.4,13.3,50,100000,1022,1322,388,610,383,313,66600,41500,34500,10250,290,8.2,5,5,24.1,77777,9,999999999,240,0.2600,0,88,999.000,999.0,99.0 +1981,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,25.0,13.3,48,100000,847,1322,388,532,463,234,56200,47700,25600,5910,310,9.3,4,4,24.1,77777,9,999999999,240,0.2600,0,88,999.000,999.0,99.0 +1981,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,23.9,13.9,54,100100,638,1322,394,209,44,187,22900,4300,20800,5630,290,7.7,7,7,24.1,1220,9,999999999,250,0.2600,0,88,999.000,999.0,99.0 +1981,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,23.9,13.3,52,100100,407,1322,382,201,299,108,21400,27300,13000,2120,320,8.2,4,4,24.1,77777,9,999999999,240,0.2600,0,88,999.000,999.0,99.0 +1981,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,22.8,13.3,55,100200,173,1322,387,37,21,34,4000,1500,3800,860,310,7.7,7,7,24.1,1220,9,999999999,240,0.2600,0,88,999.000,999.0,99.0 +1981,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,21.1,14.4,66,100300,9,386,380,5,0,5,0,0,0,0,340,5.7,7,7,24.1,1220,9,999999999,259,0.2600,0,88,999.000,999.0,99.0 +1981,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,20.6,14.4,68,100300,0,0,364,0,0,0,0,0,0,0,330,5.2,3,3,24.1,77777,9,999999999,259,0.1940,0,88,999.000,999.0,99.0 +1981,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,20.6,14.4,68,100300,0,0,349,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,259,0.1940,0,88,999.000,999.0,99.0 +1981,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,20.0,14.4,71,100400,0,0,346,0,0,0,0,0,0,0,330,6.2,0,0,24.1,77777,9,999999999,259,0.1940,0,88,999.000,999.0,99.0 +1981,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,19.4,14.4,73,100400,0,0,343,0,0,0,0,0,0,0,340,4.1,0,0,24.1,77777,9,999999999,259,0.1940,0,88,999.000,999.0,99.0 +1981,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,18.9,14.4,76,100400,0,0,341,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,259,0.1940,0,88,999.000,999.0,99.0 +1981,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.8,14.4,81,100400,0,0,336,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,259,0.1940,0,88,999.000,999.0,99.0 +1981,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,17.8,13.9,78,100400,0,0,335,0,0,0,0,0,0,0,310,6.2,0,0,24.1,77777,9,999999999,250,0.1940,0,88,999.000,999.0,99.0 +1981,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,17.8,13.3,75,100400,0,0,335,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,240,0.1940,0,88,999.000,999.0,99.0 +1981,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,17.2,13.3,78,100500,41,826,332,18,47,14,1800,1400,1700,240,330,5.7,0,0,24.1,77777,9,999999999,240,0.1150,0,88,999.000,999.0,99.0 +1981,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,18.3,12.8,70,100600,250,1322,336,119,387,45,12100,29000,6700,820,340,6.2,0,0,24.1,77777,9,999999999,229,0.1150,0,88,999.000,999.0,99.0 +1981,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,20.0,13.3,66,100600,485,1322,345,296,612,70,31100,57500,10000,1400,330,6.2,0,0,24.1,77777,9,999999999,240,0.1150,0,88,999.000,999.0,99.0 +1981,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,21.1,12.8,59,100600,710,1322,349,489,736,93,51200,72700,12200,2040,300,6.7,0,0,24.1,77777,9,999999999,229,0.1150,0,88,999.000,999.0,99.0 +1981,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,23.3,12.2,50,100600,909,1322,359,662,799,111,70400,80600,14900,2980,300,6.7,0,0,24.1,77777,9,999999999,229,0.1150,0,88,999.000,999.0,99.0 +1981,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,25.0,11.7,43,100500,1069,1322,367,806,842,123,82900,84200,14700,3540,300,6.2,0,0,24.1,77777,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1981,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,26.7,11.7,39,100500,1178,1322,375,903,863,131,92600,86500,15400,5240,300,6.7,0,0,24.1,77777,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1981,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,27.8,10.6,34,100500,1229,1322,387,905,840,121,93000,84300,14500,6280,320,7.7,1,1,24.1,77777,9,999999999,200,0.1150,0,88,999.000,999.0,99.0 +1981,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,29.4,9.4,29,100500,1219,1322,399,926,796,190,96900,80000,23000,10580,310,8.2,2,2,24.1,77777,9,999999999,189,0.1150,0,88,999.000,999.0,99.0 +1981,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,27.8,9.4,32,100500,1147,1322,398,785,635,232,83200,64600,27000,10560,320,8.2,4,4,24.1,77777,9,999999999,189,0.1150,0,88,999.000,999.0,99.0 +1981,7,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.0,31,100500,1020,1322,401,818,819,183,86800,83600,22200,6070,300,6.7,3,3,24.1,77777,9,999999999,200,0.1150,0,88,999.000,999.0,99.0 +1981,7,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,10.6,33,100500,846,1322,395,583,659,159,61200,66400,18600,3980,310,7.7,2,2,24.1,77777,9,999999999,200,0.1150,0,88,999.000,999.0,99.0 +1981,7,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.6,32,100500,636,1322,393,404,639,95,42700,63100,12300,2030,310,6.7,1,1,24.1,77777,9,999999999,200,0.1150,0,88,999.000,999.0,99.0 +1981,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,27.8,11.1,35,100500,406,1322,380,233,554,62,24300,49600,9100,1200,300,6.7,0,0,24.1,77777,9,999999999,209,0.1150,0,88,999.000,999.0,99.0 +1981,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,11.7,38,100600,171,1322,378,71,269,36,7200,16900,5000,630,320,6.7,0,0,24.1,77777,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1981,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.6,10.6,39,100600,8,386,369,6,9,5,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,200,0.1150,0,88,999.000,999.0,99.0 +1981,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,24.4,10.6,42,100700,0,0,363,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,200,0.1940,0,88,999.000,999.0,99.0 +1981,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,23.9,11.1,45,100700,0,0,361,0,0,0,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,209,0.1940,0,88,999.000,999.0,99.0 +1981,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,23.3,11.7,48,100800,0,0,359,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,220,0.1940,0,88,999.000,999.0,99.0 +1981,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,22.2,12.2,53,100800,0,0,354,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,220,0.1940,0,88,999.000,999.0,99.0 +1981,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,21.7,11.7,53,100800,0,0,351,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,220,0.1930,0,88,999.000,999.0,99.0 +1981,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,21.1,12.2,57,100700,0,0,349,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,229,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.6,12.2,59,100700,0,0,346,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,229,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.0,12.2,61,100700,0,0,344,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,229,0.1930,0,88,999.000,999.0,99.0 +1981,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,19.4,11.7,61,100800,39,826,340,15,4,15,1700,0,1700,510,290,6.2,0,0,24.1,77777,9,999999999,220,0.2680,0,88,999.000,999.0,99.0 +1981,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,20.0,11.7,59,100900,247,1322,343,95,172,63,10100,12400,7800,1180,290,6.7,0,0,24.1,77777,9,999999999,220,0.2680,0,88,999.000,999.0,99.0 +1981,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,22.8,11.7,50,100900,482,1322,368,217,190,148,23700,18300,17000,3410,300,5.2,2,2,24.1,77777,9,999999999,220,0.2680,0,88,999.000,999.0,99.0 +1981,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,24.4,11.1,43,100900,708,1322,370,430,522,149,46300,52900,17900,3200,300,5.7,1,1,24.1,77777,9,999999999,209,0.2680,0,88,999.000,999.0,99.0 +1981,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,26.1,11.7,41,100900,907,1322,372,625,635,188,65400,64000,21400,5030,290,5.2,0,0,24.1,77777,9,999999999,220,0.2680,0,88,999.000,999.0,99.0 +1981,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,27.8,9.4,32,100900,1067,1322,378,775,695,211,81800,70700,24700,7680,320,5.7,0,0,24.1,77777,9,999999999,189,0.2680,0,88,999.000,999.0,99.0 +1981,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,28.3,8.9,30,100900,1177,1322,380,882,727,233,93700,74100,27600,11750,290,6.2,1,0,24.1,77777,9,999999999,189,0.2680,0,88,999.000,999.0,99.0 +1981,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,29.4,8.9,28,100800,1228,1322,386,923,741,232,98500,75700,28100,14590,340,4.6,0,0,24.1,77777,9,999999999,189,0.2680,0,88,999.000,999.0,99.0 +1981,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,29.4,7.2,25,100800,1217,1322,391,885,708,231,94500,72400,27700,13830,310,6.2,1,1,24.1,77777,9,999999999,170,0.2680,0,88,999.000,999.0,99.0 +1981,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,30.0,7.8,25,100800,1146,1322,400,810,636,257,85200,64400,29300,11550,340,3.6,2,2,24.1,77777,9,999999999,170,0.2680,0,88,999.000,999.0,99.0 +1981,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,29.4,7.8,26,100800,1019,1322,397,699,625,216,73400,63200,24600,7010,310,6.7,2,2,24.1,77777,9,999999999,170,0.2680,0,88,999.000,999.0,99.0 +1981,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,30.6,8.3,25,100800,845,1322,404,566,564,205,60600,58200,23400,5100,310,5.2,2,2,24.1,77777,9,999999999,179,0.2680,0,88,999.000,999.0,99.0 +1981,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,26.7,13.3,44,100800,635,1322,390,371,447,155,39200,44500,17800,3200,120,6.7,2,2,24.1,77777,9,999999999,240,0.2680,0,88,999.000,999.0,99.0 +1981,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,25.6,13.3,47,100800,404,1322,388,174,181,119,19000,16600,13900,2670,110,5.2,3,3,24.1,77777,9,999999999,240,0.2680,0,88,999.000,999.0,99.0 +1981,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,23.9,13.9,54,100900,169,1322,376,46,60,39,5100,3800,4700,820,130,4.1,2,2,24.1,77777,9,999999999,250,0.2680,0,88,999.000,999.0,99.0 +1981,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,23.3,13.3,54,100900,8,364,367,2,0,2,0,0,0,0,180,4.1,1,1,24.1,77777,9,999999999,240,0.2680,0,88,999.000,999.0,99.0 +1981,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,23.3,12.8,52,101000,0,0,360,0,0,0,0,0,0,0,190,3.6,0,0,24.1,77777,9,999999999,229,0.1930,0,88,999.000,999.0,99.0 +1981,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,12.8,53,101000,0,0,364,0,0,0,0,0,0,0,190,3.1,1,1,24.1,77777,9,999999999,229,0.1930,0,88,999.000,999.0,99.0 +1981,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,13.9,59,101000,0,0,363,0,0,0,0,0,0,0,210,3.1,1,1,24.1,77777,9,999999999,250,0.1930,0,88,999.000,999.0,99.0 +1981,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.7,13.9,61,101000,0,0,365,0,0,0,0,0,0,0,230,2.6,2,2,24.1,77777,9,999999999,250,0.1930,0,88,999.000,999.0,99.0 +1981,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,22.2,13.3,57,101000,0,0,384,0,0,0,0,0,0,0,260,2.6,7,7,24.1,2440,9,999999999,240,0.1930,0,88,999.000,999.0,99.0 +1981,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,21.7,12.8,57,101000,0,0,381,0,0,0,0,0,0,0,230,3.6,7,7,24.1,2440,9,999999999,229,0.1930,0,88,999.000,999.0,99.0 +1981,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.2,12.2,53,101000,0,0,361,0,0,0,0,0,0,0,290,4.1,1,1,24.1,77777,9,999999999,220,0.1930,0,88,999.000,999.0,99.0 +1981,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,21.1,12.8,59,101000,0,0,356,0,0,0,0,0,0,0,300,2.6,1,1,24.1,77777,9,999999999,229,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.6,12.8,61,101100,37,804,347,15,15,14,1700,600,1600,290,270,3.6,0,0,24.1,77777,9,999999999,229,0.1780,0,88,999.000,999.0,99.0 +1981,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,22.2,13.3,57,101100,244,1322,355,104,272,54,11000,19600,7300,970,300,3.6,0,0,24.1,77777,9,999999999,240,0.1780,0,88,999.000,999.0,99.0 +1981,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,23.3,13.9,55,101200,480,1322,361,275,509,89,28400,47200,11300,1710,290,2.6,0,0,19.3,77777,9,999999999,250,0.1780,0,88,999.000,999.0,99.0 +1981,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,25.6,13.9,49,101200,706,1322,373,468,648,120,49100,64500,14600,2650,290,2.6,0,0,16.1,77777,9,999999999,250,0.1780,0,88,999.000,999.0,99.0 +1981,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,15.0,50,101200,905,1322,376,642,723,144,68300,73700,17700,3970,120,3.6,0,0,16.1,77777,9,999999999,259,0.1780,0,88,999.000,999.0,99.0 +1981,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.2,15.0,47,101200,1066,1322,382,784,769,162,81800,77200,19400,5390,140,4.1,0,0,16.1,77777,9,999999999,270,0.1780,0,88,999.000,999.0,99.0 +1981,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,26.1,13.9,47,101200,1175,1322,387,798,645,223,85000,65900,26400,11210,90,6.2,2,2,16.1,77777,9,999999999,250,0.1780,0,88,999.000,999.0,99.0 +1981,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,26.1,16.1,54,101200,1226,1322,404,688,422,294,75000,44200,33900,18640,90,6.2,6,6,16.1,1520,9,999999999,279,0.1780,0,88,999.000,999.0,99.0 +1981,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,25.6,16.7,58,101200,1216,1322,395,880,692,241,93600,70600,28600,14300,100,6.2,4,4,16.1,77777,9,999999999,300,0.1780,0,88,999.000,999.0,99.0 +1981,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,23.9,15.6,60,101200,1145,1322,396,818,542,347,86900,56600,37800,16090,130,5.2,7,7,16.1,1680,9,999999999,279,0.1780,0,88,999.000,999.0,99.0 +1981,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,25.6,17.2,60,101200,1018,1322,399,485,197,333,53400,21000,37200,11260,100,5.2,5,5,20.9,77777,9,999999999,300,0.1780,0,88,999.000,999.0,99.0 +1981,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,25.0,14.4,52,101100,843,1322,389,546,596,163,57100,60000,18800,4040,110,4.6,4,4,24.1,77777,9,999999999,259,0.1780,0,88,999.000,999.0,99.0 +1981,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,23.9,15.6,60,101200,633,1322,385,315,272,184,33700,28000,20300,4040,90,5.2,4,4,24.1,77777,9,999999999,279,0.1780,0,88,999.000,999.0,99.0 +1981,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,23.9,17.8,69,101200,402,1322,381,200,348,93,20900,30900,11600,1730,110,5.2,2,2,24.1,77777,9,999999999,320,0.1780,0,88,999.000,999.0,99.0 +1981,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,23.3,18.3,74,101200,167,1322,366,61,158,41,6500,8900,5300,750,120,3.1,0,0,24.1,77777,9,999999999,329,0.1780,0,88,999.000,999.0,99.0 +1981,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,24.4,16.1,60,101200,7,364,369,3,1,3,0,0,0,0,180,4.6,0,0,24.1,77777,9,999999999,279,0.1780,0,88,999.000,999.0,99.0 +1981,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.9,15.6,60,101300,0,0,366,0,0,0,0,0,0,0,180,4.1,0,0,24.1,77777,9,999999999,279,0.1930,0,88,999.000,999.0,99.0 +1981,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,22.8,16.7,69,101300,0,0,362,0,0,0,0,0,0,0,180,4.6,0,0,24.1,77777,9,999999999,300,0.1930,0,88,999.000,999.0,99.0 +1981,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,22.2,17.2,73,101400,0,0,360,0,0,0,0,0,0,0,200,3.6,0,0,16.1,77777,9,999999999,300,0.1930,0,88,999.000,999.0,99.0 +1981,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,21.7,16.7,73,101400,0,0,357,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,290,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.6,17.8,84,101400,0,0,353,0,0,0,0,0,0,0,200,4.1,2,0,12.9,77777,9,999999999,320,0.1930,0,88,999.000,999.0,99.0 +1981,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,17.2,81,101400,0,0,352,0,0,0,0,0,0,0,210,4.1,7,0,11.3,77777,9,999999999,300,0.1930,0,88,999.000,999.0,99.0 +1981,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.6,17.8,84,101400,0,0,359,0,0,0,0,0,0,0,220,4.1,8,1,11.3,77777,9,999999999,320,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.0,17.8,87,101400,0,0,365,0,0,0,0,0,0,0,230,4.6,10,3,11.3,77777,9,999999999,309,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.0,17.8,87,101500,35,782,365,13,7,13,1500,400,1400,320,230,4.6,10,3,11.3,77777,9,999999999,309,0.1260,0,88,999.000,999.0,99.0 +1981,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,18.3,84,101500,241,1322,374,77,105,57,8400,7900,6900,1220,220,3.6,10,4,11.3,77777,9,999999999,320,0.1260,0,88,999.000,999.0,99.0 +1981,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.2,18.3,79,101500,477,1322,380,240,278,139,25500,26700,15800,2850,240,5.7,10,4,11.3,77777,9,999999999,329,0.1260,0,88,999.000,999.0,99.0 +1981,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,24.4,18.3,69,101500,703,1322,397,366,338,185,39600,35400,20800,4160,210,3.6,10,6,11.3,7620,9,999999999,329,0.1260,0,88,999.000,999.0,99.0 +1981,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,26.1,18.3,62,101500,903,1322,407,432,191,301,47300,20200,33500,8910,180,3.1,8,6,14.5,3660,9,999999999,320,0.1260,0,88,999.000,999.0,99.0 +1981,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,27.2,18.3,58,101500,1064,1322,403,693,543,254,75100,56700,29300,9250,130,3.1,5,3,14.5,77777,9,999999999,320,0.1260,0,88,999.000,999.0,99.0 +1981,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,28.3,17.8,53,101500,1174,1322,411,842,668,247,89000,67900,28700,12250,150,5.2,5,4,16.1,77777,9,999999999,320,0.1260,0,88,999.000,999.0,99.0 +1981,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,27.2,18.9,60,101400,1225,1322,410,811,532,316,87900,55700,36200,19940,120,6.7,5,5,16.1,77777,9,999999999,329,0.1260,0,88,999.000,999.0,99.0 +1981,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,27.2,18.9,60,101400,1215,1322,403,737,465,308,80000,48700,35200,18510,120,7.7,4,3,16.1,77777,9,999999999,329,0.1260,0,88,999.000,999.0,99.0 +1981,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,27.2,18.9,60,101300,1144,1322,425,637,243,426,69800,25900,47400,18020,120,5.7,10,8,16.1,1520,9,999999999,329,0.1260,0,88,999.000,999.0,99.0 +1981,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,27.2,18.9,60,101300,1016,1322,446,256,0,256,30300,0,30300,11940,130,4.6,10,10,19.3,1680,9,999999999,329,0.1260,0,88,999.000,999.0,99.0 +1981,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,25.6,18.3,64,101300,842,1322,400,481,392,230,50800,40300,25100,5770,170,7.7,5,5,12.9,77777,9,999999999,320,0.1260,0,88,999.000,999.0,99.0 +1981,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,23.9,17.2,66,101400,631,1322,390,351,326,194,37400,33500,21400,4310,160,9.3,5,5,16.1,77777,9,999999999,300,0.1260,0,88,999.000,999.0,99.0 +1981,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,23.9,17.2,66,101400,400,1322,387,183,273,100,19600,24700,12100,1940,180,6.2,4,4,16.1,77777,9,999999999,300,0.1260,0,88,999.000,999.0,99.0 +1981,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,17.2,69,101400,164,1322,390,54,52,48,5900,3200,5500,1010,110,3.6,10,6,16.1,3050,9,999999999,309,0.1260,0,88,999.000,999.0,99.0 +1981,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.1,17.2,79,101400,6,342,398,2,0,2,0,0,0,0,150,4.6,10,9,12.9,2130,9,999999999,309,0.1260,0,88,999.000,999.0,99.0 +1981,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,20.6,18.9,90,101700,0,0,408,0,0,0,0,0,0,0,290,6.7,10,10,2.4,1070,9,999999999,340,0.1930,0,88,999.000,999.0,99.0 +1981,7,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,101500,0,0,404,0,0,0,0,0,0,0,140,8.8,10,10,8.0,1520,9,999999999,320,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.6,18.9,90,101500,0,0,375,0,0,0,0,0,0,0,260,5.2,6,5,9.7,3050,9,999999999,340,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.0,18.3,90,101500,0,0,350,0,0,0,0,0,0,0,260,4.1,0,0,9.7,77777,9,999999999,320,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.0,18.3,90,101400,0,0,350,0,0,0,0,0,0,0,280,3.6,0,0,11.3,77777,9,999999999,320,0.1930,0,88,999.000,999.0,99.0 +1981,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,19.4,17.2,87,101400,0,0,346,0,0,0,0,0,0,0,300,4.1,0,0,11.3,77777,9,999999999,300,0.1930,0,88,999.000,999.0,99.0 +1981,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,18.9,17.2,90,101400,0,0,344,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,300,0.1930,0,88,999.000,999.0,99.0 +1981,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,18.3,17.2,93,101500,0,0,341,0,0,0,0,0,0,0,60,2.1,0,0,9.7,77777,9,999999999,300,0.1930,0,88,999.000,999.0,99.0 +1981,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,18.9,17.2,90,101500,34,761,359,18,19,16,1900,700,1800,330,80,1.5,9,3,9.7,77777,9,999999999,300,0.0920,0,88,999.000,999.0,99.0 +1981,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,19.4,17.8,90,101500,238,1323,365,98,182,65,10300,12900,8000,1230,120,2.1,9,4,8.0,77777,9,999999999,309,0.0920,0,88,999.000,999.0,99.0 +1981,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,20.6,17.8,84,101500,475,1323,368,269,453,106,28500,42300,13300,2010,150,2.1,8,3,9.7,77777,9,999999999,320,0.0920,0,88,999.000,999.0,99.0 +1981,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,17.8,74,101500,701,1323,379,431,590,117,45400,58700,14200,2580,130,1.5,4,3,11.3,77777,9,999999999,320,0.0920,0,88,999.000,999.0,99.0 +1981,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,18.3,71,101500,901,1323,385,617,606,202,64100,60800,22600,5290,130,3.6,3,3,16.1,77777,9,999999999,329,0.0920,0,88,999.000,999.0,99.0 +1981,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,18.3,74,101500,1062,1323,382,730,667,192,77600,68100,22800,6960,80,4.1,3,3,16.1,77777,9,999999999,329,0.0920,0,88,999.000,999.0,99.0 +1981,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,23.3,18.9,76,101500,1172,1323,386,832,779,140,89500,79200,19200,6720,110,6.2,4,4,8.0,77777,9,999999999,340,0.0920,0,88,999.000,999.0,99.0 +1981,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,25.0,17.8,64,101500,1224,1323,390,819,579,281,86200,58600,31900,17080,60,7.2,3,3,8.0,77777,9,999999999,309,0.0920,0,88,999.000,999.0,99.0 +1981,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,25.6,18.3,64,101500,1214,1323,394,813,634,230,86900,64800,27300,13510,70,6.2,6,3,8.0,77777,9,999999999,320,0.0920,0,88,999.000,999.0,99.0 +1981,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,23.9,18.9,74,101500,1142,1323,389,789,617,254,83000,62500,28900,11260,100,7.2,4,4,8.0,77777,9,999999999,340,0.0920,0,88,999.000,999.0,99.0 +1981,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,23.9,18.3,71,101500,1015,1323,369,754,843,105,77900,84300,13100,2920,110,6.2,0,0,8.0,77777,9,999999999,329,0.0920,0,88,999.000,999.0,99.0 +1981,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,23.9,18.3,71,101400,840,1323,369,588,760,103,62200,76300,13700,2560,140,6.2,2,0,8.0,77777,9,999999999,329,0.0920,0,88,999.000,999.0,99.0 +1981,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,23.3,17.8,71,101400,629,1323,366,421,695,89,44700,68600,12000,1910,110,5.2,3,0,11.3,77777,9,999999999,309,0.0920,0,88,999.000,999.0,99.0 +1981,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,22.2,18.3,79,101400,397,1323,361,230,550,63,23900,48900,9200,1210,100,5.7,3,0,11.3,77777,9,999999999,329,0.0920,0,88,999.000,999.0,99.0 +1981,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,21.1,18.3,84,101400,162,1323,367,57,141,39,6000,7800,5000,710,110,6.2,7,2,8.0,77777,9,999999999,320,0.0920,0,88,999.000,999.0,99.0 +1981,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,20.6,18.3,87,101400,6,320,368,4,4,3,0,0,0,0,120,4.6,6,3,6.4,77777,9,999999999,329,0.0920,0,88,999.000,999.0,99.0 +1981,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,20.6,18.3,87,101500,0,0,353,0,0,0,0,0,0,0,140,4.1,0,0,6.4,77777,9,999999999,329,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.6,18.3,87,101500,0,0,408,0,0,0,0,0,0,0,130,4.1,10,10,6.4,910,9,999999999,329,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.6,18.3,87,101500,0,0,408,0,0,0,0,0,0,0,120,3.6,10,10,6.4,1160,9,999999999,329,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.6,18.3,87,101400,0,0,408,0,0,0,0,0,0,0,110,3.6,10,10,6.4,150,9,999999999,329,0.1930,0,88,999.000,999.0,99.0 +1981,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,20.6,18.9,90,101400,0,0,408,0,0,0,0,0,0,0,110,3.1,10,10,6.4,150,9,999999999,340,0.1920,0,88,999.000,999.0,99.0 +1981,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,20.6,18.9,90,101400,0,0,408,0,0,0,0,0,0,0,140,3.6,10,10,3.2,90,9,999999999,340,0.1920,0,88,999.000,999.0,99.0 +1981,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,20.6,18.9,90,101400,0,0,408,0,0,0,0,0,0,0,160,2.1,10,10,2.4,90,9,999999999,340,0.1920,0,88,999.000,999.0,99.0 +1981,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,20.6,20.0,97,101300,0,0,410,0,0,0,0,0,0,0,160,5.2,10,10,2.4,90,9,999999999,359,0.1920,0,88,999.000,999.0,99.0 +1981,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.0,93,101300,32,739,412,8,0,8,1000,0,1000,300,180,3.6,10,10,3.2,1310,9,999999999,359,0.2580,0,88,999.000,999.0,99.0 +1981,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.7,20.6,93,101300,235,1323,417,41,1,41,4700,0,4700,1540,170,4.6,10,10,2.4,120,9,999999999,370,0.2580,0,88,999.000,999.0,99.0 +1981,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,22.2,21.1,93,101300,472,1323,420,123,5,121,13900,300,13800,4640,180,3.1,10,10,2.4,120,9,999999999,379,0.2580,0,88,999.000,999.0,99.0 +1981,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.3,21.1,87,101400,699,1323,426,175,4,173,20300,300,20100,7390,210,4.6,10,10,3.2,240,9,999999999,379,0.2580,0,88,999.000,999.0,99.0 +1981,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,23.3,21.1,87,101300,899,1323,426,277,4,275,32100,400,31900,11850,170,5.2,10,10,3.2,240,9,999999999,379,0.2580,0,88,999.000,999.0,99.0 +1981,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,23.3,21.1,87,101200,1060,1323,426,305,5,301,35900,400,35600,13690,140,4.1,10,10,3.2,240,9,999999999,379,0.2580,0,88,999.000,999.0,99.0 +1981,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,25.0,21.7,82,101200,1170,1323,437,351,4,347,41500,400,41100,15610,150,5.2,10,10,3.2,240,9,999999999,400,0.2580,0,88,999.000,999.0,99.0 +1981,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,24.4,21.1,82,101100,1222,1323,433,445,4,441,52000,400,51600,18590,170,3.6,10,10,3.2,2740,9,999999999,379,0.2580,0,88,999.000,999.0,99.0 +1981,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,24.4,22.2,87,101100,1212,1323,434,230,2,228,28200,200,28100,11350,190,5.2,10,10,3.2,490,9,999999999,400,0.2580,0,88,999.000,999.0,99.0 +1981,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,23.9,22.2,90,101100,1141,1323,431,239,1,238,29000,100,28900,11630,190,5.7,10,10,3.2,490,9,999999999,409,0.2580,0,88,999.000,999.0,99.0 +1981,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,23.9,20.6,82,101100,1013,1323,429,196,1,196,23800,100,23700,9650,190,6.7,10,10,4.8,4270,9,999999999,370,0.2580,0,88,999.000,999.0,99.0 +1981,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,22.2,20.0,87,101000,838,1323,419,158,0,158,18900,0,18900,7500,190,5.2,10,10,3.2,1830,9,999999999,359,0.2580,0,88,999.000,999.0,99.0 +1981,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,21.7,20.0,90,100900,627,1323,416,112,0,111,13100,0,13100,4950,130,4.6,10,10,1.6,1070,9,999999999,359,0.2580,0,88,999.000,999.0,99.0 +1981,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,21.7,20.0,90,100800,395,1323,416,63,0,63,7400,0,7400,2600,140,5.2,10,10,1.6,1310,9,999999999,359,0.2580,0,88,999.000,999.0,99.0 +1981,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.6,17.8,84,100800,159,1323,407,27,0,27,3100,0,3100,990,120,5.7,10,10,1.6,150,9,999999999,309,0.2580,0,88,999.000,999.0,99.0 +1981,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,20.6,19.4,93,100700,5,298,409,2,0,2,0,0,0,0,130,5.2,10,10,1.6,210,9,999999999,340,0.2580,0,88,999.000,999.0,99.0 +1981,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,21.7,20.0,90,100700,0,0,416,0,0,0,0,0,0,0,170,5.2,10,10,6.4,1160,9,999999999,359,0.1920,0,88,999.000,999.0,99.0 +1981,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,22.2,20.6,90,100600,0,0,419,0,0,0,0,0,0,0,180,6.2,10,10,8.0,340,9,999999999,370,0.1920,0,88,999.000,999.0,99.0 +1981,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,22.8,21.1,90,100500,0,0,424,0,0,0,0,0,0,0,200,7.7,10,10,8.0,340,9,999999999,379,0.1920,0,88,999.000,999.0,99.0 +1981,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,23.3,21.1,87,100400,0,0,426,0,0,0,0,0,0,0,200,7.2,10,10,8.0,340,9,999999999,379,0.1920,0,88,999.000,999.0,99.0 +1981,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,23.3,21.1,87,100300,0,0,426,0,0,0,0,0,0,0,200,7.7,10,10,8.0,340,9,999999999,379,0.1920,0,88,999.000,999.0,99.0 +1981,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,21.1,85,100300,0,0,430,0,0,0,0,0,0,0,200,8.8,10,10,11.3,340,9,999999999,379,0.1920,0,88,999.000,999.0,99.0 +1981,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,23.9,21.7,87,100200,0,0,431,0,0,0,0,0,0,0,190,7.2,10,10,11.3,340,9,999999999,390,0.1920,0,88,999.000,999.0,99.0 +1981,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,23.3,21.7,90,100100,0,0,427,0,0,0,0,0,0,0,190,7.2,10,10,11.3,340,9,999999999,390,0.1920,0,88,999.000,999.0,99.0 +1981,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,23.3,21.7,90,100100,30,717,427,7,0,7,800,0,800,270,190,7.7,10,10,16.1,310,9,999999999,390,0.1460,0,88,999.000,999.0,99.0 +1981,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,23.3,22.2,94,100000,232,1323,428,63,0,63,7000,0,7000,2110,210,8.2,10,10,11.3,310,9,999999999,400,0.1460,0,88,999.000,999.0,99.0 +1981,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,25.0,22.8,88,100000,469,1323,439,141,1,140,15700,100,15700,5110,220,4.6,10,10,11.3,340,9,999999999,419,0.1460,0,88,999.000,999.0,99.0 +1981,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,22.8,85,100100,696,1323,442,215,1,215,24500,100,24500,8590,230,6.7,10,10,11.3,400,9,999999999,419,0.1460,0,88,999.000,999.0,99.0 +1981,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,27.2,22.2,74,100000,897,1323,414,434,174,315,47300,18400,34800,9270,220,7.7,5,5,12.9,77777,9,999999999,400,0.1460,0,88,999.000,999.0,99.0 +1981,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,28.9,22.2,67,100000,1058,1323,461,342,1,342,39900,100,39900,14960,230,7.7,10,10,11.3,700,9,999999999,400,0.1460,0,88,999.000,999.0,99.0 +1981,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,28.9,22.2,67,100000,1169,1323,448,442,91,361,48800,9300,40600,16970,260,8.2,9,9,11.3,760,9,999999999,400,0.1460,0,88,999.000,999.0,99.0 +1981,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,22.2,65,100000,1221,1323,435,799,417,413,84300,43500,44100,25760,240,7.2,7,7,11.3,760,9,999999999,400,0.1460,0,88,999.000,999.0,99.0 +1981,7,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,99900,1211,1323,445,536,171,379,59500,18300,42700,19240,240,7.7,8,8,11.3,760,9,999999999,400,0.1460,0,88,999.000,999.0,99.0 +1981,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.2,22.2,56,99900,1139,1323,442,667,422,302,71800,44100,33700,13620,230,7.7,5,5,11.3,77777,9,999999999,400,0.1460,0,88,999.000,999.0,99.0 +1981,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,32.8,21.7,52,99900,1012,1323,442,646,559,216,67700,56500,24300,6890,240,8.8,4,4,11.3,77777,9,999999999,390,0.1460,0,88,999.000,999.0,99.0 +1981,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,25.0,20.0,74,100000,836,1323,435,166,8,161,19800,600,19400,7610,290,7.7,10,10,19.3,1980,9,999999999,350,0.1460,0,88,999.000,999.0,99.0 +1981,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,24.4,22.2,87,100000,625,1323,434,216,7,212,24200,600,23900,7930,210,5.2,10,10,11.3,1980,9,999999999,400,0.1460,0,88,999.000,999.0,99.0 +1981,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,22.2,87,100000,393,1323,434,92,1,92,10500,100,10500,3490,220,4.6,10,10,8.0,3050,9,999999999,400,0.1460,0,88,999.000,999.0,99.0 +1981,7,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,100100,156,1323,442,35,1,35,4000,0,4000,1200,240,5.2,10,10,8.0,3050,9,999999999,419,0.1460,0,88,999.000,999.0,99.0 +1981,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,25.6,22.2,82,100200,5,276,441,1,0,1,0,0,0,0,240,4.6,10,10,8.0,2740,9,999999999,409,0.1460,0,88,999.000,999.0,99.0 +1981,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,25.0,22.2,85,100300,0,0,438,0,0,0,0,0,0,0,230,4.1,10,10,8.0,2740,9,999999999,409,0.1920,0,88,999.000,999.0,99.0 +1981,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,24.4,22.2,87,100300,0,0,434,0,0,0,0,0,0,0,220,5.2,10,10,6.4,1520,9,999999999,400,0.1920,0,88,999.000,999.0,99.0 +1981,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,23.9,21.7,87,100300,0,0,431,0,0,0,0,0,0,0,240,4.1,10,10,8.0,1490,9,999999999,390,0.1920,0,88,999.000,999.0,99.0 +1981,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,23.9,21.1,85,100300,0,0,430,0,0,0,0,0,0,0,240,5.2,10,10,8.0,1520,9,999999999,379,0.1920,0,88,999.000,999.0,99.0 +1981,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,23.3,21.1,87,100400,0,0,385,0,0,0,0,0,0,0,290,4.1,4,3,9.7,77777,9,999999999,379,0.1920,0,88,999.000,999.0,99.0 +1981,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,22.8,18.9,79,100300,0,0,365,0,0,0,0,0,0,0,330,3.6,0,0,19.3,77777,9,999999999,329,0.1920,0,88,999.000,999.0,99.0 +1981,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,22.8,18.9,79,100400,0,0,365,0,0,0,0,0,0,0,320,4.1,0,0,19.3,77777,9,999999999,329,0.1920,0,88,999.000,999.0,99.0 +1981,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.3,79,100400,0,0,373,0,0,0,0,0,0,0,320,4.1,2,2,19.3,77777,9,999999999,320,0.1920,0,88,999.000,999.0,99.0 +1981,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.1,17.8,81,100500,29,695,355,13,24,11,1400,900,1300,230,320,5.2,0,0,19.3,77777,9,999999999,309,0.1280,0,88,999.000,999.0,99.0 +1981,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.1,17.8,81,100600,229,1323,355,103,329,45,10400,23700,6300,810,310,6.2,0,0,19.3,77777,9,999999999,309,0.1280,0,88,999.000,999.0,99.0 +1981,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,21.7,17.2,76,100600,466,1323,382,212,224,132,22500,21400,14900,2680,330,6.2,6,6,24.1,3050,9,999999999,300,0.1280,0,88,999.000,999.0,99.0 +1981,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,21.7,17.2,76,100700,694,1323,412,166,8,162,19300,600,19000,7000,320,7.2,10,10,24.1,1310,9,999999999,300,0.1280,0,88,999.000,999.0,99.0 +1981,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,17.2,73,100700,895,1323,415,263,17,251,30600,1500,29600,11080,330,4.1,10,10,24.1,670,9,999999999,300,0.1280,0,88,999.000,999.0,99.0 +1981,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,23.3,17.2,69,100800,1057,1323,421,263,10,255,31300,800,30700,12070,330,4.1,10,10,24.1,1070,9,999999999,300,0.1280,0,88,999.000,999.0,99.0 +1981,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,17.8,66,100800,1167,1323,428,301,2,300,36100,200,35900,14020,30,2.1,10,10,24.1,640,9,999999999,309,0.1280,0,88,999.000,999.0,99.0 +1981,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,23.9,17.8,69,100900,1219,1323,425,384,3,381,45400,300,45100,16870,90,4.1,10,10,24.1,880,9,999999999,309,0.1280,0,88,999.000,999.0,99.0 +1981,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,24.4,18.3,69,100900,1209,1323,394,705,374,362,75300,39100,39500,21280,110,4.6,5,5,24.1,77777,9,999999999,320,0.1280,0,88,999.000,999.0,99.0 +1981,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,23.3,17.2,69,100900,1138,1323,401,572,169,426,62600,18000,47200,17750,110,4.6,8,8,24.1,1310,9,999999999,300,0.1280,0,88,999.000,999.0,99.0 +1981,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,24.4,17.8,66,100900,1010,1323,390,653,514,259,70100,53600,29100,8400,130,5.2,4,4,24.1,77777,9,999999999,309,0.1280,0,88,999.000,999.0,99.0 +1981,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,23.9,17.8,69,100900,834,1323,385,565,636,162,59100,63900,18700,3970,70,5.2,3,3,24.1,77777,9,999999999,309,0.1280,0,88,999.000,999.0,99.0 +1981,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,22.8,17.2,71,101000,623,1323,407,220,113,167,24300,11500,18800,4080,110,4.1,9,9,24.1,1370,9,999999999,300,0.1280,0,88,999.000,999.0,99.0 +1981,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,22.2,16.7,71,101100,390,1323,403,152,135,112,16500,12200,12900,2500,60,1.5,9,9,24.1,1980,9,999999999,290,0.1280,0,88,999.000,999.0,99.0 +1981,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,21.7,16.1,71,101100,153,1323,381,50,45,45,5400,2700,5100,940,110,3.1,7,6,24.1,4880,9,999999999,290,0.1280,0,88,999.000,999.0,99.0 +1981,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,21.7,16.7,73,101200,4,276,400,4,0,4,0,0,0,0,140,2.1,9,9,24.1,1520,9,999999999,290,0.1280,0,88,999.000,999.0,99.0 +1981,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,23.3,13.3,54,101300,0,0,385,0,0,0,0,0,0,0,350,4.6,6,6,24.1,1830,9,999999999,240,0.1920,0,88,999.000,999.0,99.0 +1981,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,21.7,12.2,55,101400,0,0,363,0,0,0,0,0,0,0,350,4.1,2,2,24.1,77777,9,999999999,229,0.1920,0,88,999.000,999.0,99.0 +1981,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,20.6,11.1,55,101400,0,0,345,0,0,0,0,0,0,0,350,5.2,0,0,24.1,77777,9,999999999,209,0.1920,0,88,999.000,999.0,99.0 +1981,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,20.0,10.0,53,101400,0,0,341,0,0,0,0,0,0,0,350,5.2,0,0,24.1,77777,9,999999999,200,0.1920,0,88,999.000,999.0,99.0 +1981,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,18.9,10.0,57,101500,0,0,336,0,0,0,0,0,0,0,360,4.1,0,0,24.1,77777,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1981,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,18.3,10.6,61,101500,0,0,334,0,0,0,0,0,0,0,340,3.6,0,0,24.1,77777,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1981,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,17.8,10.6,63,101500,0,0,332,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1981,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,17.2,10.0,63,101500,0,0,328,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1981,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,16.7,10.6,67,101600,27,673,327,12,10,11,1300,500,1200,270,330,4.1,0,0,24.1,77777,9,999999999,200,0.1780,0,88,999.000,999.0,99.0 +1981,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,17.8,10.0,61,101600,226,1323,331,94,247,51,9800,17200,6800,910,320,5.2,0,0,24.1,77777,9,999999999,200,0.1780,0,88,999.000,999.0,99.0 +1981,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,20.0,10.6,55,101700,464,1323,342,262,496,86,26900,45600,10900,1640,310,3.6,0,0,24.1,77777,9,999999999,209,0.1780,0,88,999.000,999.0,99.0 +1981,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,21.7,11.1,51,101700,691,1323,350,454,639,118,47600,63400,14400,2580,340,4.1,0,0,24.1,77777,9,999999999,209,0.1780,0,88,999.000,999.0,99.0 +1981,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,25.6,11.1,40,101700,893,1323,369,637,729,143,67800,74300,17600,3870,350,4.1,0,0,24.1,77777,9,999999999,209,0.1780,0,88,999.000,999.0,99.0 +1981,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,25.0,7.2,32,101800,1055,1323,361,789,785,161,82200,78800,19300,5200,360,6.7,0,0,24.1,77777,9,999999999,170,0.1780,0,88,999.000,999.0,99.0 +1981,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,25.6,8.9,35,101800,1165,1323,367,888,810,172,93200,81600,21200,7720,50,4.1,0,0,24.1,77777,9,999999999,189,0.1780,0,88,999.000,999.0,99.0 +1981,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,25.0,9.4,37,101800,1218,1323,371,903,767,195,94200,77000,23200,10680,90,5.7,1,1,24.1,77777,9,999999999,189,0.1780,0,88,999.000,999.0,99.0 +1981,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,23.9,11.7,46,101700,1208,1323,368,888,769,183,93000,77400,22300,9670,130,5.7,1,1,24.1,77777,9,999999999,220,0.1780,0,88,999.000,999.0,99.0 +1981,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,24.4,10.0,40,101700,1136,1323,369,815,755,164,85700,76100,20200,6700,120,6.2,1,1,24.1,77777,9,999999999,200,0.1780,0,88,999.000,999.0,99.0 +1981,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,24.4,10.6,42,101700,1008,1323,370,716,710,173,76200,72600,20900,5610,120,6.2,1,1,24.1,77777,9,999999999,209,0.1780,0,88,999.000,999.0,99.0 +1981,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,23.9,10.6,43,101800,832,1323,360,570,685,136,60300,69400,16600,3400,120,5.7,0,0,24.1,77777,9,999999999,209,0.1780,0,88,999.000,999.0,99.0 +1981,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,22.2,12.2,53,101800,620,1323,354,395,607,109,41200,59300,13400,2260,110,5.2,0,0,24.1,77777,9,999999999,229,0.1780,0,88,999.000,999.0,99.0 +1981,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,21.1,11.7,55,101900,387,1323,348,205,438,76,21000,38200,9800,1400,110,5.2,0,0,24.1,77777,9,999999999,220,0.1780,0,88,999.000,999.0,99.0 +1981,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,21.7,11.7,53,101900,150,1323,351,54,140,37,5600,7400,4800,670,110,4.6,0,0,24.1,77777,9,999999999,220,0.1780,0,88,999.000,999.0,99.0 +1981,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,20.6,13.3,63,101900,3,254,348,2,1,2,0,0,0,0,140,3.6,0,0,24.1,77777,9,999999999,240,0.1780,0,88,999.000,999.0,99.0 +1981,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,20.6,11.1,55,102000,0,0,345,0,0,0,0,0,0,0,170,2.6,0,0,24.1,77777,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1981,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,20.6,10.0,51,102000,0,0,344,0,0,0,0,0,0,0,20,2.6,0,0,24.1,77777,9,999999999,200,0.1910,0,88,999.000,999.0,99.0 +1981,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,19.4,12.8,66,102000,0,0,341,0,0,0,0,0,0,0,120,1.0,0,0,24.1,77777,9,999999999,240,0.1910,0,88,999.000,999.0,99.0 +1981,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,19.4,12.8,66,102000,0,0,348,0,0,0,0,0,0,0,20,1.0,1,1,24.1,77777,9,999999999,240,0.1910,0,88,999.000,999.0,99.0 +1981,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,19.4,11.1,59,102100,0,0,339,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1981,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,18.9,11.1,61,102100,0,0,337,0,0,0,0,0,0,0,20,4.1,0,0,24.1,77777,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1981,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,18.3,11.1,63,102200,0,0,334,0,0,0,0,0,0,0,340,4.6,0,0,24.1,77777,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1981,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,17.8,10.6,63,102200,0,0,332,0,0,0,0,0,0,0,340,3.6,2,0,24.1,77777,9,999999999,209,0.1910,0,88,999.000,999.0,99.0 +1981,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,17.2,10.0,63,102300,25,651,328,12,1,12,0,0,0,0,340,3.6,4,0,24.1,77777,9,999999999,200,0.2720,0,88,999.000,999.0,99.0 +1981,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,17.8,9.4,58,102400,223,1324,330,91,116,71,9800,8300,8400,1510,340,4.1,7,0,24.1,77777,9,999999999,189,0.2720,0,88,999.000,999.0,99.0 +1981,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,18.9,10.0,57,102400,461,1324,336,253,349,131,26900,33100,15300,2660,10,5.2,6,0,24.1,77777,9,999999999,200,0.2720,0,88,999.000,999.0,99.0 +1981,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,20.6,8.9,47,102400,689,1324,343,450,501,188,47200,50400,20900,4070,40,5.2,6,0,24.1,77777,9,999999999,189,0.2720,0,88,999.000,999.0,99.0 +1981,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,21.7,8.9,44,102400,891,1324,348,639,595,236,67800,61500,26300,6280,20,5.7,6,0,24.1,77777,9,999999999,189,0.2720,0,88,999.000,999.0,99.0 +1981,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,21.7,8.9,44,102500,1053,1324,348,797,646,281,85300,67400,31600,10020,80,5.2,7,0,24.1,77777,9,999999999,189,0.2720,0,88,999.000,999.0,99.0 +1981,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,22.2,10.6,48,102500,1164,1324,359,835,609,298,87100,61100,33200,13960,80,6.7,8,1,24.1,77777,9,999999999,209,0.2720,0,88,999.000,999.0,99.0 +1981,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,22.8,12.2,51,102500,1216,1324,364,873,634,289,91700,64000,32800,16820,140,5.2,8,1,24.1,77777,9,999999999,229,0.2720,0,88,999.000,999.0,99.0 +1981,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,21.7,12.8,57,102500,1206,1324,359,869,617,305,90800,62000,34200,16890,130,5.2,8,1,24.1,77777,9,999999999,240,0.2720,0,88,999.000,999.0,99.0 +1981,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,22.8,10.0,44,102400,1134,1324,354,876,658,310,90700,65700,34300,13070,100,5.2,8,0,24.1,77777,9,999999999,200,0.2720,0,88,999.000,999.0,99.0 +1981,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,22.8,12.2,51,102400,1006,1324,364,619,428,292,65500,44500,31600,9480,120,5.2,8,1,24.1,77777,9,999999999,229,0.2720,0,88,999.000,999.0,99.0 +1981,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,22.2,12.2,53,102400,830,1324,361,544,524,213,57700,53900,23800,5230,110,5.7,7,1,24.1,77777,9,999999999,229,0.2720,0,88,999.000,999.0,99.0 +1981,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,21.1,13.3,61,102400,618,1324,357,364,423,164,38000,41800,18400,3380,80,4.6,7,1,24.1,77777,9,999999999,240,0.2720,0,88,999.000,999.0,99.0 +1981,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,20.0,14.4,71,102400,384,1324,353,175,244,104,18600,21700,12300,2040,130,4.1,7,1,24.1,77777,9,999999999,259,0.2720,0,88,999.000,999.0,99.0 +1981,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,19.4,14.4,73,102400,147,1324,354,46,22,44,5100,1500,4900,1020,120,3.1,7,2,24.1,77777,9,999999999,259,0.2720,0,88,999.000,999.0,99.0 +1981,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,18.9,13.9,73,102500,3,232,347,1,0,1,0,0,0,0,120,3.1,6,1,24.1,77777,9,999999999,250,0.2720,0,88,999.000,999.0,99.0 +1981,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,18.9,14.4,76,102500,0,0,347,0,0,0,0,0,0,0,140,3.1,5,1,24.1,77777,9,999999999,259,0.1910,0,88,999.000,999.0,99.0 +1981,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,18.3,14.4,78,102500,0,0,338,0,0,0,0,0,0,0,150,2.6,5,0,24.1,77777,9,999999999,259,0.1910,0,88,999.000,999.0,99.0 +1981,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,18.3,13.3,73,102500,0,0,337,0,0,0,0,0,0,0,120,1.0,5,0,24.1,77777,9,999999999,240,0.1910,0,88,999.000,999.0,99.0 +1981,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,17.8,15.0,84,102500,0,0,336,0,0,0,0,0,0,0,150,2.1,8,0,24.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1981,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,17.8,13.9,78,102500,0,0,346,0,0,0,0,0,0,0,180,2.1,10,2,24.1,77777,9,999999999,250,0.1910,0,88,999.000,999.0,99.0 +1981,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,17.8,15.0,84,102400,0,0,351,0,0,0,0,0,0,0,200,1.5,10,3,24.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1981,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,18.3,15.0,81,102400,0,0,353,0,0,0,0,0,0,0,50,1.5,10,3,24.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1981,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,17.8,15.6,87,102400,0,0,352,0,0,0,0,0,0,0,130,1.5,10,3,24.1,77777,9,999999999,279,0.1910,0,88,999.000,999.0,99.0 +1981,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,17.2,15.6,90,102500,24,629,351,15,7,14,0,0,0,0,120,2.1,10,4,24.1,77777,9,999999999,279,0.0970,0,88,999.000,999.0,99.0 +1981,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,17.8,16.1,90,102500,220,1324,390,56,27,51,6100,2100,5700,1290,170,2.1,10,10,24.1,3660,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1981,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,18.9,15.6,81,102500,458,1324,357,272,482,105,28700,44600,13300,1980,120,1.5,3,3,24.1,77777,9,999999999,279,0.0970,0,88,999.000,999.0,99.0 +1981,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,20.0,16.1,78,102500,686,1324,359,422,592,114,44400,58800,13900,2490,120,3.6,2,2,24.1,77777,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1981,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,21.7,16.7,73,102500,889,1324,372,614,660,169,64500,66700,19700,4450,120,3.6,3,3,24.1,77777,9,999999999,300,0.0970,0,88,999.000,999.0,99.0 +1981,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,22.8,16.7,69,102500,1051,1324,384,734,633,229,76900,64000,26000,7910,100,5.2,7,5,24.1,3660,9,999999999,300,0.0970,0,88,999.000,999.0,99.0 +1981,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,23.3,16.7,66,102500,1162,1324,386,544,303,277,59300,31700,31300,13370,110,5.2,5,5,24.1,77777,9,999999999,300,0.0970,0,88,999.000,999.0,99.0 +1981,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.9,16.1,62,102400,1214,1324,389,788,479,347,84500,50100,38500,20770,120,7.7,5,5,24.1,77777,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1981,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,23.3,16.7,66,102400,1204,1324,394,626,328,327,69800,35800,37200,16710,90,7.7,7,7,24.1,910,9,999999999,300,0.0970,0,88,999.000,999.0,99.0 +1981,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,24.4,16.1,60,102300,1133,1324,381,830,770,168,86900,77500,20500,6740,110,9.3,2,2,24.1,77777,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1981,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,22.2,16.7,71,102200,1004,1324,388,586,333,332,63500,36000,36200,10660,120,6.7,7,7,24.1,910,9,999999999,300,0.0970,0,88,999.000,999.0,99.0 +1981,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,25.6,14.4,50,102200,828,1324,404,445,272,273,47600,29000,29500,7070,220,7.2,7,7,24.1,910,9,999999999,259,0.0970,0,88,999.000,999.0,99.0 +1981,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,25.6,13.3,47,102200,615,1324,402,243,179,159,26800,18200,18300,3870,220,7.7,7,7,24.1,1070,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1981,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.9,13.3,52,102200,382,1324,388,203,369,96,21100,32100,11900,1790,180,7.2,6,6,24.1,1830,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1981,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,12.2,50,102200,144,1324,378,56,100,45,5800,5100,5300,860,170,5.2,5,4,24.1,77777,9,999999999,229,0.0970,0,88,999.000,999.0,99.0 +1981,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,21.7,12.8,57,102300,2,210,367,0,2,0,0,0,0,0,200,7.2,4,3,24.1,77777,9,999999999,240,0.0970,0,88,999.000,999.0,99.0 +1981,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,20.6,15.0,71,102300,0,0,356,0,0,0,0,0,0,0,200,6.2,3,1,24.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1981,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,20.0,14.4,71,102300,0,0,353,0,0,0,0,0,0,0,220,5.2,3,1,24.1,77777,9,999999999,259,0.1910,0,88,999.000,999.0,99.0 +1981,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,20.0,14.4,71,102300,0,0,346,0,0,0,0,0,0,0,220,5.2,3,0,24.1,77777,9,999999999,259,0.1910,0,88,999.000,999.0,99.0 +1981,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,18.9,15.0,78,102200,0,0,341,0,0,0,0,0,0,0,200,4.6,2,0,24.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1981,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,18.9,14.4,76,102200,0,0,341,0,0,0,0,0,0,0,220,3.6,0,0,24.1,77777,9,999999999,259,0.1900,0,88,999.000,999.0,99.0 +1981,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,18.9,14.4,76,102300,0,0,341,0,0,0,0,0,0,0,210,5.2,0,0,24.1,77777,9,999999999,259,0.1900,0,88,999.000,999.0,99.0 +1981,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,18.9,14.4,76,102200,0,0,341,0,0,0,0,0,0,0,210,5.2,3,0,24.1,77777,9,999999999,259,0.1900,0,88,999.000,999.0,99.0 +1981,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,18.3,14.4,78,102200,0,0,349,0,0,0,0,0,0,0,200,3.1,8,2,24.1,77777,9,999999999,259,0.1900,0,88,999.000,999.0,99.0 +1981,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,18.3,15.0,81,102200,22,607,356,10,15,9,0,0,0,0,220,3.1,7,4,24.1,7620,9,999999999,270,0.0820,0,88,999.000,999.0,99.0 +1981,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,18.9,15.0,78,102300,217,1324,362,82,104,65,8900,7400,7700,1380,180,2.6,8,5,24.1,7620,9,999999999,270,0.0820,0,88,999.000,999.0,99.0 +1981,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,20.0,14.4,71,102300,455,1324,399,80,2,79,9300,100,9300,3290,210,3.1,10,10,24.1,1520,9,999999999,259,0.0820,0,88,999.000,999.0,99.0 +1981,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,22.8,15.6,64,102300,684,1324,390,319,266,181,34500,27800,20200,4030,180,4.6,10,7,24.1,3660,9,999999999,279,0.0820,0,88,999.000,999.0,99.0 +1981,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,16.1,62,102300,886,1324,397,470,294,273,51000,31600,29800,7410,210,3.6,10,7,24.1,3050,9,999999999,290,0.0820,0,88,999.000,999.0,99.0 +1981,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,24.4,16.7,62,102200,1049,1324,382,755,655,234,79000,66200,26500,8020,140,4.6,10,2,24.1,77777,9,999999999,300,0.0820,0,88,999.000,999.0,99.0 +1981,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,25.6,16.7,58,102100,1160,1324,395,710,418,342,75700,43600,37300,16560,120,4.1,10,4,24.1,77777,9,999999999,300,0.0820,0,88,999.000,999.0,99.0 +1981,7,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,102100,1213,1324,388,867,726,200,93400,74600,24900,11710,120,5.7,3,3,24.1,77777,9,999999999,290,0.0820,0,88,999.000,999.0,99.0 +1981,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,26.1,16.1,54,102100,1203,1324,397,960,795,234,102000,81100,28200,13000,120,6.7,4,4,24.1,77777,9,999999999,290,0.0820,0,88,999.000,999.0,99.0 +1981,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,27.8,14.4,44,102000,1131,1324,404,760,676,180,81700,69500,22200,7870,180,6.2,5,4,24.1,77777,9,999999999,259,0.0820,0,88,999.000,999.0,99.0 +1981,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,28.3,14.4,43,101900,1002,1324,394,706,764,125,75000,77300,16400,3840,190,7.7,5,1,24.1,77777,9,999999999,259,0.0820,0,88,999.000,999.0,99.0 +1981,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,26.7,16.7,54,101900,825,1324,401,504,345,287,53800,36800,30800,7490,200,6.7,10,4,24.1,77777,9,999999999,300,0.0820,0,88,999.000,999.0,99.0 +1981,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,25.6,14.4,50,101800,613,1324,404,281,157,208,30500,15900,23100,5050,180,6.7,10,7,24.1,3660,9,999999999,259,0.0820,0,88,999.000,999.0,99.0 +1981,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,24.4,14.4,54,101800,378,1324,424,76,7,74,8800,300,8700,2910,190,6.2,10,10,24.1,3660,9,999999999,259,0.0820,0,88,999.000,999.0,99.0 +1981,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,23.9,15.6,60,101800,141,1324,411,24,8,23,2600,500,2600,590,190,6.7,10,9,24.1,3350,9,999999999,279,0.0820,0,88,999.000,999.0,99.0 +1981,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,22.8,15.6,64,101800,2,188,416,0,0,0,0,0,0,0,200,6.2,10,10,24.1,3350,9,999999999,279,0.0820,0,88,999.000,999.0,99.0 +1981,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,21.7,16.7,73,101800,0,0,412,0,0,0,0,0,0,0,190,4.6,10,10,24.1,3350,9,999999999,300,0.1900,0,88,999.000,999.0,99.0 +1981,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,21.7,17.8,79,101700,0,0,413,0,0,0,0,0,0,0,180,4.6,10,10,24.1,430,9,999999999,320,0.1900,0,88,999.000,999.0,99.0 +1981,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,21.7,18.9,84,101600,0,0,414,0,0,0,0,0,0,0,180,5.2,10,10,24.1,370,9,999999999,340,0.1900,0,88,999.000,999.0,99.0 +1981,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,21.7,18.9,84,101500,0,0,414,0,0,0,0,0,0,0,180,6.2,10,10,12.9,370,9,999999999,340,0.1900,0,88,999.000,999.0,99.0 +1981,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,21.7,20.0,90,101300,0,0,416,0,0,0,0,0,0,0,180,6.7,10,10,11.3,370,9,999999999,359,0.1900,0,88,999.000,999.0,99.0 +1981,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.2,20.6,90,101200,0,0,419,0,0,0,0,0,0,0,190,6.2,10,10,11.3,370,9,999999999,370,0.1900,0,88,999.000,999.0,99.0 +1981,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,21.1,93,101200,0,0,420,0,0,0,0,0,0,0,180,6.2,10,10,4.8,310,9,999999999,379,0.1900,0,88,999.000,999.0,99.0 +1981,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,23.3,21.7,90,101100,0,0,427,0,0,0,0,0,0,0,220,6.2,10,10,4.8,240,9,999999999,390,0.1900,0,88,999.000,999.0,99.0 +1981,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,23.3,21.7,90,101000,21,585,427,3,0,3,0,0,0,0,220,5.7,10,10,8.0,370,9,999999999,390,0.0850,0,88,999.000,999.0,99.0 +1981,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,23.9,22.2,90,101100,213,1324,431,42,2,42,4800,0,4800,1520,260,5.2,10,10,12.9,370,9,999999999,409,0.0850,0,88,999.000,999.0,99.0 +1981,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,25.6,22.2,82,101100,452,1324,395,248,524,68,26000,48300,9500,1330,290,5.7,2,2,12.9,77777,9,999999999,409,0.0850,0,88,999.000,999.0,99.0 +1981,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,26.1,20.0,69,101200,681,1324,382,460,743,76,48900,73500,11000,1740,310,6.7,0,0,12.9,77777,9,999999999,359,0.0850,0,88,999.000,999.0,99.0 +1981,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,27.8,19.4,61,101200,884,1324,390,638,815,91,66100,81100,11900,2190,320,8.2,0,0,16.1,77777,9,999999999,350,0.0850,0,88,999.000,999.0,99.0 +1981,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,28.3,18.9,57,101200,1047,1324,409,730,696,178,77900,71200,21500,6250,330,7.7,3,3,16.1,77777,9,999999999,340,0.0850,0,88,999.000,999.0,99.0 +1981,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,29.4,18.3,51,101200,1158,1324,415,795,642,231,84300,65400,27000,10840,340,7.2,3,3,16.1,77777,9,999999999,320,0.0850,0,88,999.000,999.0,99.0 +1981,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,30.0,17.2,46,101300,1211,1324,416,894,765,191,93200,76800,22800,10110,320,7.7,3,3,19.3,77777,9,999999999,300,0.0850,0,88,999.000,999.0,99.0 +1981,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,29.4,13.3,37,101300,1201,1324,391,929,874,134,95200,87600,15700,5800,330,8.2,3,0,24.1,77777,9,999999999,240,0.0850,0,88,999.000,999.0,99.0 +1981,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,28.9,12.8,37,101400,1129,1324,388,862,843,139,92000,85500,18900,5740,320,8.8,4,0,24.1,77777,9,999999999,229,0.0850,0,88,999.000,999.0,99.0 +1981,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,28.3,11.7,36,101400,1000,1324,383,754,818,132,79400,82500,17000,3970,320,6.7,4,0,24.1,77777,9,999999999,220,0.0850,0,88,999.000,999.0,99.0 +1981,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,28.3,10.6,33,101500,823,1324,395,541,641,140,57100,64800,16700,3450,310,8.8,7,2,24.1,77777,9,999999999,200,0.0850,0,88,999.000,999.0,99.0 +1981,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.2,8.9,32,101500,610,1324,400,292,350,129,31200,34700,15200,2580,330,7.7,8,6,24.1,7620,9,999999999,189,0.0850,0,88,999.000,999.0,99.0 +1981,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,25.6,8.9,35,101600,375,1324,388,142,84,118,15500,7600,13400,3020,350,7.7,8,5,24.1,7620,9,999999999,189,0.0850,0,88,999.000,999.0,99.0 +1981,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.0,9.4,37,101600,137,1324,386,43,36,40,4800,2400,4500,930,320,5.2,8,5,24.1,7620,9,999999999,189,0.0850,0,88,999.000,999.0,99.0 +1981,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,9.4,40,101700,1,166,359,2,6,2,0,0,0,0,320,7.2,3,0,24.1,77777,9,999999999,189,0.0850,0,88,999.000,999.0,99.0 +1981,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,23.3,9.4,41,101800,0,0,356,0,0,0,0,0,0,0,360,5.7,0,0,24.1,77777,9,999999999,189,0.1900,0,88,999.000,999.0,99.0 +1981,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,21.7,9.4,46,101800,0,0,348,0,0,0,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,189,0.1900,0,88,999.000,999.0,99.0 +1981,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,10.0,51,101900,0,0,344,0,0,0,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,200,0.1900,0,88,999.000,999.0,99.0 +1981,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.0,10.0,53,101900,0,0,341,0,0,0,0,0,0,0,330,5.2,0,0,24.1,77777,9,999999999,200,0.1900,0,88,999.000,999.0,99.0 +1981,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,18.9,10.0,57,101900,0,0,336,0,0,0,0,0,0,0,330,5.2,0,0,24.1,77777,9,999999999,200,0.1900,0,88,999.000,999.0,99.0 +1981,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,18.3,10.0,59,101900,0,0,333,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,200,0.1900,0,88,999.000,999.0,99.0 +1981,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,17.8,10.0,61,102000,0,0,331,0,0,0,0,0,0,0,340,3.6,0,0,24.1,77777,9,999999999,200,0.1900,0,88,999.000,999.0,99.0 +1981,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,17.2,10.6,65,102000,0,0,329,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,209,0.1900,0,88,999.000,999.0,99.0 +1981,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,16.7,10.6,67,102100,19,563,337,6,1,6,0,0,0,0,350,3.1,3,2,24.1,77777,9,999999999,209,0.2730,0,88,999.000,999.0,99.0 +1981,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,17.8,10.6,63,102100,210,1325,343,68,87,54,7400,6100,6400,1150,360,3.1,3,2,24.1,77777,9,999999999,209,0.2730,0,88,999.000,999.0,99.0 +1981,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,20.0,10.0,53,102100,449,1325,352,224,248,139,23600,23300,15700,2860,360,2.6,9,2,24.1,77777,9,999999999,200,0.2730,0,88,999.000,999.0,99.0 +1981,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,20.6,10.6,53,102200,679,1325,351,418,437,193,43600,43800,21100,4170,50,1.5,9,1,24.1,77777,9,999999999,209,0.2730,0,88,999.000,999.0,99.0 +1981,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,20.6,11.1,55,102100,882,1325,345,622,584,231,66100,60400,25800,6060,130,3.1,6,0,24.1,77777,9,999999999,209,0.2730,0,88,999.000,999.0,99.0 +1981,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,22.2,11.1,50,102100,1045,1325,359,722,572,269,77600,59700,30400,9380,130,3.6,6,1,24.1,77777,9,999999999,220,0.2730,0,88,999.000,999.0,99.0 +1981,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,22.8,11.1,48,102100,1156,1325,362,793,640,232,84000,65200,27000,10800,110,5.2,3,1,24.1,77777,9,999999999,209,0.2730,0,88,999.000,999.0,99.0 +1981,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,22.8,13.3,55,102000,1209,1325,358,906,705,260,95800,71600,30300,14710,110,6.2,3,0,24.1,77777,9,999999999,240,0.2730,0,88,999.000,999.0,99.0 +1981,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,22.8,12.2,51,101900,1199,1325,357,898,703,259,94800,71300,30100,14030,110,7.2,3,0,24.1,77777,9,999999999,229,0.2730,0,88,999.000,999.0,99.0 +1981,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,23.3,11.1,46,101800,1127,1325,379,732,461,339,77800,48100,36800,14750,120,7.2,8,5,24.1,4570,9,999999999,209,0.2730,0,88,999.000,999.0,99.0 +1981,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,22.8,12.2,51,101700,998,1325,381,591,378,305,64400,40900,33600,9570,110,8.8,8,6,24.1,4570,9,999999999,229,0.2730,0,88,999.000,999.0,99.0 +1981,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,21.1,13.9,64,101700,820,1325,405,271,100,209,30100,10600,23600,5750,110,7.2,10,10,24.1,3660,9,999999999,250,0.2730,0,88,999.000,999.0,99.0 +1981,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,21.1,13.3,61,101600,607,1325,404,125,2,124,14600,100,14500,5340,160,5.2,10,10,24.1,3050,9,999999999,240,0.2730,0,88,999.000,999.0,99.0 +1981,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,21.7,13.3,59,101600,372,1325,407,60,0,60,7000,0,7000,2440,200,7.7,10,10,24.1,2440,9,999999999,240,0.2730,0,88,999.000,999.0,99.0 +1981,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,21.1,12.8,59,101500,134,1325,403,35,0,35,3900,0,3900,1130,190,6.7,10,10,24.1,2130,9,999999999,229,0.2730,0,88,999.000,999.0,99.0 +1981,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,20.6,12.8,61,101500,1,144,400,0,0,0,0,0,0,0,180,5.2,10,10,24.1,1680,9,999999999,229,0.2730,0,88,999.000,999.0,99.0 +1981,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,20.0,13.3,66,101500,0,0,398,0,0,0,0,0,0,0,200,6.7,10,10,19.3,1520,9,999999999,240,0.1900,0,88,999.000,999.0,99.0 +1981,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,19.4,13.3,68,101400,0,0,395,0,0,0,0,0,0,0,180,6.7,10,10,19.3,1490,9,999999999,240,0.1900,0,88,999.000,999.0,99.0 +1981,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,18.9,13.9,73,101300,0,0,393,0,0,0,0,0,0,0,140,7.2,10,10,16.1,1400,9,999999999,250,0.1900,0,88,999.000,999.0,99.0 +1981,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,18.9,13.3,70,101100,0,0,392,0,0,0,0,0,0,0,140,7.7,10,10,16.1,790,9,999999999,240,0.1900,0,88,999.000,999.0,99.0 +1981,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,18.9,14.4,76,101100,0,0,393,0,0,0,0,0,0,0,160,5.2,10,10,16.1,610,9,999999999,259,0.1890,0,88,999.000,999.0,99.0 +1981,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.9,16.7,87,100800,0,0,396,0,0,0,0,0,0,0,160,5.2,10,10,16.1,430,9,999999999,290,0.1890,0,88,999.000,999.0,99.0 +1981,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,18.9,17.8,93,100700,0,0,398,0,0,0,0,0,0,0,180,5.7,10,10,12.9,340,9,999999999,309,0.1890,0,88,999.000,999.0,99.0 +1981,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,18.9,17.8,93,100600,0,0,398,0,0,0,0,0,0,0,170,5.2,10,10,11.3,340,9,999999999,309,0.1890,0,88,999.000,999.0,99.0 +1981,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,20.0,18.9,93,100600,18,541,405,4,0,4,0,0,0,0,190,5.7,10,10,8.0,340,9,999999999,329,0.1130,0,88,999.000,999.0,99.0 +1981,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,21.1,19.4,90,100500,207,1325,412,49,2,49,5500,0,5500,1690,230,3.6,10,10,12.9,240,9,999999999,340,0.1130,0,88,999.000,999.0,99.0 +1981,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,21.7,20.6,93,100600,446,1325,417,110,1,110,12500,100,12500,4210,270,3.6,10,10,11.3,240,9,999999999,370,0.1130,0,88,999.000,999.0,99.0 +1981,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,22.8,20.6,87,100600,676,1325,423,197,2,196,22500,200,22400,7920,280,4.6,10,10,11.3,240,9,999999999,370,0.1130,0,88,999.000,999.0,99.0 +1981,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,22.2,19.4,84,100600,879,1325,418,177,0,177,21100,0,21100,8390,340,5.2,10,10,8.0,180,9,999999999,340,0.1130,0,88,999.000,999.0,99.0 +1981,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,21.7,18.3,81,100600,1043,1325,414,354,1,353,41000,100,40900,15160,340,6.2,10,10,11.3,270,9,999999999,320,0.1130,0,88,999.000,999.0,99.0 +1981,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,23.3,18.3,74,100600,1154,1325,411,567,91,487,62400,9500,54200,21170,310,5.2,10,9,12.9,910,9,999999999,320,0.1130,0,88,999.000,999.0,99.0 +1981,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,21.7,17.8,79,100600,1207,1325,413,405,2,403,47600,200,47400,17450,360,4.1,10,10,12.9,400,9,999999999,309,0.1130,0,88,999.000,999.0,99.0 +1981,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.6,16.7,79,100600,1197,1325,405,365,12,354,43200,1100,42300,15930,10,5.7,10,10,16.1,270,9,999999999,300,0.1130,0,88,999.000,999.0,99.0 +1981,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,18.9,16.1,84,100600,1125,1325,395,234,2,232,28300,200,28200,11360,360,6.2,10,10,16.1,270,9,999999999,279,0.1130,0,88,999.000,999.0,99.0 +1981,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,16.7,15.6,93,100700,995,1325,383,160,2,158,19500,100,19400,7990,10,5.2,10,10,11.3,210,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1981,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,16.7,15.6,93,100700,818,1325,383,253,9,248,29200,800,28700,10430,360,7.2,10,10,16.1,150,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1981,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,15.6,15.0,97,100800,604,1325,377,209,6,206,23400,500,23200,7610,20,5.2,10,10,12.9,120,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1981,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,15.6,14.4,93,100900,369,1325,376,62,3,61,7200,100,7200,2470,20,6.2,10,10,12.9,120,9,999999999,259,0.1130,0,88,999.000,999.0,99.0 +1981,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,15.0,13.9,93,101000,130,1325,372,16,1,16,1900,0,1900,610,20,4.1,10,10,11.3,120,9,999999999,250,0.1130,0,88,999.000,999.0,99.0 +1981,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,15.0,13.9,93,101100,1,121,372,0,0,0,0,0,0,0,340,4.6,10,10,11.3,180,9,999999999,250,0.1130,0,88,999.000,999.0,99.0 +1981,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,14.4,13.9,96,101100,0,0,369,0,0,0,0,0,0,0,350,4.1,10,10,11.3,210,9,999999999,250,0.1890,0,88,999.000,999.0,99.0 +1981,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,14.4,13.3,93,101200,0,0,368,0,0,0,0,0,0,0,360,4.1,10,10,11.3,210,9,999999999,240,0.1890,0,88,999.000,999.0,99.0 +1981,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,15.0,13.3,90,101200,0,0,371,0,0,0,0,0,0,0,330,3.6,10,10,16.1,910,9,999999999,240,0.1890,0,88,999.000,999.0,99.0 +1981,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,15.0,13.3,90,101100,0,0,371,0,0,0,0,0,0,0,300,3.1,10,10,16.1,700,9,999999999,240,0.1890,0,88,999.000,999.0,99.0 +1981,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,15.6,13.3,87,101200,0,0,374,0,0,0,0,0,0,0,300,4.1,10,10,16.1,790,9,999999999,240,0.1890,0,88,999.000,999.0,99.0 +1981,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,15.6,13.3,87,101200,0,0,374,0,0,0,0,0,0,0,290,6.2,10,10,16.1,940,9,999999999,240,0.1890,0,88,999.000,999.0,99.0 +1981,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,15.6,13.3,87,101200,0,0,374,0,0,0,0,0,0,0,300,5.2,10,10,16.1,940,9,999999999,240,0.1890,0,88,999.000,999.0,99.0 +1981,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,15.6,12.8,84,101200,0,0,374,0,0,0,0,0,0,0,290,3.1,10,10,16.1,940,9,999999999,229,0.1890,0,88,999.000,999.0,99.0 +1981,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,15.6,12.8,84,101300,17,519,374,7,0,7,0,0,0,0,310,5.2,10,10,24.1,1100,9,999999999,240,0.1990,0,88,999.000,999.0,99.0 +1981,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,15.6,12.8,84,101300,203,1325,374,49,0,49,5500,0,5500,1680,320,5.2,10,10,24.1,730,9,999999999,240,0.1990,0,88,999.000,999.0,99.0 +1981,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,16.7,13.3,81,101400,443,1325,380,126,0,126,14200,0,14200,4610,320,5.2,10,10,24.1,1070,9,999999999,240,0.1990,0,88,999.000,999.0,99.0 +1981,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,16.1,13.9,87,101500,673,1325,378,218,0,218,24700,0,24700,8480,320,4.6,10,10,24.1,1070,9,999999999,250,0.1990,0,88,999.000,999.0,99.0 +1981,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,18.3,13.9,75,101600,877,1325,389,312,0,312,35600,0,35600,12650,350,5.2,10,10,24.1,1680,9,999999999,250,0.1990,0,88,999.000,999.0,99.0 +1981,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,21.1,13.3,61,101600,1040,1325,371,577,383,275,61800,39900,30400,9500,330,5.7,5,5,24.1,77777,9,999999999,240,0.1990,0,88,999.000,999.0,99.0 +1981,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,21.7,13.3,59,101600,1152,1325,374,688,416,325,73700,43500,35800,15240,330,5.2,5,5,24.1,77777,9,999999999,240,0.1990,0,88,999.000,999.0,99.0 +1981,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,22.8,12.2,51,101600,1205,1325,378,837,569,318,90500,59600,36200,18110,330,5.7,5,5,24.1,77777,9,999999999,229,0.1990,0,88,999.000,999.0,99.0 +1981,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,24.4,12.8,48,101600,1195,1325,387,845,631,273,88800,63800,31100,14460,340,5.7,5,5,24.1,77777,9,999999999,229,0.1990,0,88,999.000,999.0,99.0 +1981,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,23.3,12.8,52,101700,1123,1325,385,611,210,432,66700,22300,47800,17360,320,5.2,6,6,24.1,1680,9,999999999,240,0.1990,0,88,999.000,999.0,99.0 +1981,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,22.8,14.4,59,101700,993,1325,389,520,185,381,56600,19600,41900,12430,60,3.1,7,7,24.1,1520,9,999999999,259,0.1990,0,88,999.000,999.0,99.0 +1981,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,21.7,14.4,64,101800,815,1325,372,463,370,234,50100,39500,25800,5830,90,4.1,4,4,24.1,77777,9,999999999,259,0.1990,0,88,999.000,999.0,99.0 +1981,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,21.7,13.9,61,101800,601,1325,360,373,501,143,39300,49400,16900,2880,140,3.6,1,1,24.1,77777,9,999999999,250,0.1990,0,88,999.000,999.0,99.0 +1981,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,24.4,11.7,45,101800,365,1325,364,185,386,77,19500,33200,10300,1400,330,4.1,0,0,24.1,77777,9,999999999,220,0.1990,0,88,999.000,999.0,99.0 +1981,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,23.9,11.7,46,101900,126,1325,362,41,86,33,4300,4000,4000,600,310,3.6,0,0,24.1,77777,9,999999999,220,0.1990,0,88,999.000,999.0,99.0 +1981,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,22.8,12.2,51,102000,0,99,357,1,0,1,0,0,0,0,270,4.1,0,0,24.1,77777,9,999999999,229,0.1990,0,88,999.000,999.0,99.0 +1981,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,21.7,13.3,59,102000,0,0,353,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,240,0.1890,0,88,999.000,999.0,99.0 +1981,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,21.7,12.8,57,102100,0,0,352,0,0,0,0,0,0,0,300,3.6,0,0,24.1,77777,9,999999999,240,0.1890,0,88,999.000,999.0,99.0 +1981,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,21.1,13.3,61,102100,0,0,350,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,240,0.1890,0,88,999.000,999.0,99.0 +1981,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,20.6,13.3,63,102200,0,0,348,0,0,0,0,0,0,0,290,4.6,0,0,24.1,77777,9,999999999,240,0.1890,0,88,999.000,999.0,99.0 +1981,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,19.4,13.3,68,102200,0,0,342,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,240,0.1880,0,88,999.000,999.0,99.0 +1981,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,18.9,13.3,70,102200,0,0,340,0,0,0,0,0,0,0,280,4.6,0,0,24.1,77777,9,999999999,240,0.1880,0,88,999.000,999.0,99.0 +1981,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,18.3,13.3,73,102200,0,0,337,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,240,0.1880,0,88,999.000,999.0,99.0 +1981,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,17.8,13.3,75,102200,0,0,335,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,240,0.1880,0,88,999.000,999.0,99.0 +1981,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,17.2,12.8,75,102300,15,497,331,7,0,7,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,229,0.3250,0,88,999.000,999.0,99.0 +1981,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,18.9,12.8,68,102400,200,1326,339,67,81,55,7300,5500,6500,1160,270,3.6,0,0,24.1,77777,9,999999999,240,0.3250,0,88,999.000,999.0,99.0 +1981,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,20.6,12.8,61,102400,440,1326,347,216,310,112,23000,29000,13400,2210,300,4.6,0,0,24.1,77777,9,999999999,240,0.3250,0,88,999.000,999.0,99.0 +1981,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,12.8,52,102500,670,1326,360,405,474,164,42900,47600,18800,3460,280,3.6,0,0,24.1,77777,9,999999999,240,0.3250,0,88,999.000,999.0,99.0 +1981,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,12.8,45,102500,875,1326,371,588,576,206,63100,59600,23800,5300,290,4.1,0,0,24.1,77777,9,999999999,240,0.3250,0,88,999.000,999.0,99.0 +1981,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,26.7,12.8,42,102500,1038,1326,377,739,641,236,77300,64600,26600,7860,330,2.6,0,0,24.1,77777,9,999999999,240,0.3250,0,88,999.000,999.0,99.0 +1981,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,27.2,13.3,42,102500,1150,1326,380,843,676,254,88700,68500,29200,11460,150,4.1,0,0,24.1,77777,9,999999999,240,0.3250,0,88,999.000,999.0,99.0 +1981,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,26.7,13.9,45,102500,1203,1326,378,890,689,262,93900,69900,30400,14390,130,4.1,0,0,24.1,77777,9,999999999,250,0.3250,0,88,999.000,999.0,99.0 +1981,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,27.8,12.8,40,102500,1193,1326,382,882,688,261,93100,69800,30200,13740,140,4.1,0,0,24.1,77777,9,999999999,240,0.3250,0,88,999.000,999.0,99.0 +1981,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,28.9,11.1,33,102500,1120,1326,386,819,671,249,86000,67900,28400,10240,140,4.1,0,0,24.1,77777,9,999999999,209,0.3250,0,88,999.000,999.0,99.0 +1981,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,28.3,11.1,34,102400,990,1326,383,701,621,234,72800,62400,26100,7030,130,4.6,1,0,24.1,77777,9,999999999,209,0.3250,0,88,999.000,999.0,99.0 +1981,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,28.9,10.0,31,102400,812,1326,384,541,542,206,57300,55700,23200,4950,130,5.2,2,0,24.1,77777,9,999999999,200,0.3250,0,88,999.000,999.0,99.0 +1981,7,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.7,37,102300,597,1326,381,363,399,181,38500,40500,20200,3940,120,4.1,6,0,24.1,77777,9,999999999,220,0.3250,0,88,999.000,999.0,99.0 +1981,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,26.7,12.2,41,102400,361,1326,376,177,213,117,18300,18500,13300,2370,160,3.6,7,0,24.1,77777,9,999999999,229,0.3250,0,88,999.000,999.0,99.0 +1981,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,25.6,12.2,44,102400,122,1326,371,41,20,39,4500,1300,4300,880,160,4.1,5,0,24.1,77777,9,999999999,229,0.3250,0,88,999.000,999.0,99.0 +1981,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,23.3,14.4,58,102400,0,77,362,1,0,1,0,0,0,0,170,3.1,0,0,24.1,77777,9,999999999,259,0.3250,0,88,999.000,999.0,99.0 +1981,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,23.3,15.0,60,102500,0,0,363,0,0,0,0,0,0,0,200,4.1,0,0,24.1,77777,9,999999999,270,0.1880,0,88,999.000,999.0,99.0 +1981,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,22.4,15.3,68,102500,0,0,358,0,0,0,0,0,0,0,230,4.0,0,0,24.1,77777,9,999999999,290,0.1880,0,88,999.000,999.0,99.0 +1981,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,21.6,15.6,66,102500,0,0,355,0,0,0,0,0,0,0,240,3.8,0,0,24.1,77777,9,999999999,279,0.1880,0,88,999.000,999.0,99.0 +1981,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,20.7,15.9,64,102500,0,0,351,0,0,0,0,0,0,0,250,3.7,0,0,24.1,77777,9,999999999,270,0.1880,0,88,999.000,999.0,99.0 +1989,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,19.8,16.3,99,102100,0,0,390,0,0,0,0,0,0,0,60,3.5,9,9,24.1,120,9,999999999,329,0.1880,0,88,999.000,999.0,99.0 +1989,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,18.9,16.6,100,102100,0,0,377,0,0,0,0,0,0,0,20,3.4,8,8,0.4,90,9,999999999,329,0.1880,0,88,999.000,999.0,99.0 +1989,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,18.1,16.9,100,102100,0,0,392,0,0,0,0,0,0,0,30,3.2,10,10,0.2,30,9,999999999,320,0.1880,0,88,999.000,999.0,99.0 +1989,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,17.2,17.2,100,102100,0,0,388,0,0,0,0,0,0,0,40,3.1,10,10,0.2,30,9,999999999,309,0.1880,0,88,999.000,999.0,99.0 +1989,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,17.2,17.2,100,102100,14,475,388,4,0,4,0,0,0,0,10,3.6,10,10,0.4,60,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1989,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,17.2,97,102100,196,1326,380,39,12,37,4300,900,4100,960,30,5.2,9,9,3.2,270,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1989,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,17.8,16.7,93,102200,436,1326,390,87,4,85,10000,200,9900,3430,70,3.6,10,10,6.4,270,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,18.3,16.7,90,102200,667,1326,393,202,4,200,23000,300,22800,7970,30,5.2,10,10,9.7,460,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,20.0,16.1,78,102200,872,1326,401,242,6,238,28200,500,27800,10500,20,5.2,10,10,11.3,460,9,999999999,290,0.1750,0,88,999.000,999.0,99.0 +1989,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.1,16.7,76,102200,1036,1326,369,707,605,233,74000,61000,26200,7730,50,5.7,4,3,9.7,77777,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,21.7,16.7,73,102100,1148,1326,378,544,214,357,59700,23300,39500,15330,80,5.7,6,5,11.3,580,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,21.7,17.2,76,102100,1201,1326,357,904,804,174,95300,81100,21700,8910,80,6.2,0,0,12.9,77777,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1989,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,21.1,17.2,79,102100,1190,1326,354,889,794,173,93500,80000,21500,8490,100,7.2,0,0,12.9,77777,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1989,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,21.1,17.2,79,102000,1118,1326,354,831,784,166,86900,78900,20200,6330,100,6.2,0,0,11.3,77777,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1989,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,20.6,16.7,79,102000,988,1326,351,714,749,153,76400,76800,19100,4800,100,6.7,0,0,14.5,77777,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,20.6,16.7,79,101900,809,1326,351,560,695,132,59100,70200,16100,3210,90,6.2,0,0,16.1,77777,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,19.4,16.7,84,101900,594,1326,346,372,590,105,38600,57200,13000,2140,120,5.2,0,0,16.1,77777,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,18.9,16.7,87,101800,357,1326,343,184,410,71,19400,35000,10000,1280,110,4.1,0,0,8.0,77777,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,18.3,16.7,90,101800,118,1326,340,39,97,30,4100,4300,3700,540,100,4.1,0,0,4.8,77777,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,17.8,16.7,93,101800,0,33,349,0,0,0,0,0,0,0,110,4.6,2,2,6.4,77777,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,17.2,16.7,97,101800,0,0,342,0,0,0,0,0,0,0,140,3.6,1,1,4.0,77777,9,999999999,300,0.1880,0,88,999.000,999.0,99.0 +1989,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,17.2,16.7,97,101800,0,0,335,0,0,0,0,0,0,0,170,3.6,0,0,6.4,77777,9,999999999,300,0.1880,0,88,999.000,999.0,99.0 +1989,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.2,16.1,93,101800,0,0,349,0,0,0,0,0,0,0,200,3.6,3,3,6.4,77777,9,999999999,290,0.1880,0,88,999.000,999.0,99.0 +1989,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,17.2,16.1,93,101800,0,0,349,0,0,0,0,0,0,0,200,4.1,3,3,6.4,77777,9,999999999,290,0.1880,0,88,999.000,999.0,99.0 +1989,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,17.2,16.1,93,101700,0,0,346,0,0,0,0,0,0,0,240,1.5,2,2,6.4,77777,9,999999999,279,0.1870,0,88,999.000,999.0,99.0 +1989,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,17.2,16.1,93,101700,0,0,341,0,0,0,0,0,0,0,240,4.1,1,1,6.4,77777,9,999999999,279,0.1870,0,88,999.000,999.0,99.0 +1989,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,16.1,93,101600,0,0,335,0,0,0,0,0,0,0,240,3.6,0,0,8.0,77777,9,999999999,279,0.1870,0,88,999.000,999.0,99.0 +1989,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,16.7,15.6,93,101600,0,0,332,0,0,0,0,0,0,0,240,3.1,0,0,8.0,77777,9,999999999,279,0.1870,0,88,999.000,999.0,99.0 +1989,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,16.7,15.0,90,101600,13,453,331,7,3,7,0,0,0,0,180,2.6,3,0,8.0,77777,9,999999999,270,0.1770,0,88,999.000,999.0,99.0 +1989,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,17.2,15.6,90,101600,192,1326,334,76,178,50,8000,11000,6400,930,190,4.1,3,0,8.0,77777,9,999999999,279,0.1770,0,88,999.000,999.0,99.0 +1989,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,18.9,16.1,84,101600,433,1326,349,223,376,99,23400,34200,12300,1850,180,3.6,5,1,9.7,77777,9,999999999,290,0.1770,0,88,999.000,999.0,99.0 +1989,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,21.1,16.7,76,101600,665,1326,354,431,603,127,44800,59200,15100,2670,180,3.1,3,0,9.7,77777,9,999999999,300,0.1770,0,88,999.000,999.0,99.0 +1989,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,22.8,16.7,69,101600,869,1326,362,610,705,146,64600,71500,17700,3800,180,3.6,1,0,9.7,77777,9,999999999,300,0.1770,0,88,999.000,999.0,99.0 +1989,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,23.9,16.7,64,101500,1034,1326,374,724,730,153,75600,73300,18400,4730,140,5.2,1,1,12.9,77777,9,999999999,300,0.1770,0,88,999.000,999.0,99.0 +1989,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,24.4,17.2,64,101500,1146,1326,370,859,795,170,90100,80000,20800,7060,140,5.2,0,0,12.9,77777,9,999999999,300,0.1770,0,88,999.000,999.0,99.0 +1989,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,25.6,17.8,62,101400,1199,1326,397,822,562,312,88900,58800,35600,17230,120,5.7,5,4,12.9,77777,9,999999999,309,0.1770,0,88,999.000,999.0,99.0 +1989,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,24.4,18.3,69,101400,1188,1326,394,665,392,312,71800,41000,34900,16530,120,5.7,5,5,16.1,77777,9,999999999,329,0.1770,0,88,999.000,999.0,99.0 +1989,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,26.1,17.8,60,101300,1115,1326,406,678,447,300,72700,46700,33400,12490,110,6.2,6,6,16.1,2290,9,999999999,309,0.1770,0,88,999.000,999.0,99.0 +1989,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,25.0,17.8,64,101200,985,1326,411,552,282,341,59500,30400,36900,10690,120,6.2,8,8,24.1,1520,9,999999999,309,0.1770,0,88,999.000,999.0,99.0 +1989,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,21.7,15.0,66,101100,806,1326,390,214,86,161,24100,9100,18500,4380,130,14.4,8,8,24.1,1220,9,999999999,270,0.1770,0,88,999.000,999.0,99.0 +1989,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,21.1,15.6,71,101200,590,1326,381,209,83,172,23000,8100,19300,5040,180,7.2,9,7,24.1,3050,9,999999999,279,0.1770,0,88,999.000,999.0,99.0 +1989,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,21.1,16.7,76,101100,354,1326,397,103,15,99,11500,800,11300,3480,190,5.2,10,9,24.1,7620,9,999999999,290,0.1770,0,88,999.000,999.0,99.0 +1989,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,20.6,17.2,81,101100,114,1326,387,29,2,29,3200,0,3200,940,200,5.7,9,8,19.3,7620,9,999999999,300,0.1770,0,88,999.000,999.0,99.0 +1989,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,20.6,18.3,87,101100,0,11,371,0,0,0,0,0,0,0,190,6.2,10,4,19.3,77777,9,999999999,320,0.1870,0,88,999.000,999.0,99.0 +1989,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,20.6,18.3,87,101100,0,0,377,0,0,0,0,0,0,0,190,6.2,10,6,19.3,3960,9,999999999,320,0.1870,0,88,999.000,999.0,99.0 +1989,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,18.9,90,101100,0,0,408,0,0,0,0,0,0,0,190,4.6,10,10,16.1,4270,9,999999999,340,0.1870,0,88,999.000,999.0,99.0 +1989,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.6,18.9,90,101000,0,0,408,0,0,0,0,0,0,0,190,4.6,10,10,16.1,3960,9,999999999,329,0.1870,0,88,999.000,999.0,99.0 +1989,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,20.0,18.9,93,101000,0,0,405,0,0,0,0,0,0,0,200,4.1,10,10,16.1,3350,9,999999999,329,0.1870,0,88,999.000,999.0,99.0 +1989,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,20.0,18.3,90,100900,0,0,404,0,0,0,0,0,0,0,190,4.1,10,10,16.1,3050,9,999999999,320,0.1870,0,88,999.000,999.0,99.0 +1989,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,20.0,18.9,93,100900,0,0,394,0,0,0,0,0,0,0,180,3.6,9,9,12.9,3350,9,999999999,329,0.1870,0,88,999.000,999.0,99.0 +1989,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,20.0,18.9,93,100800,0,0,405,0,0,0,0,0,0,0,160,3.1,10,10,9.7,2130,9,999999999,329,0.1870,0,88,999.000,999.0,99.0 +1989,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,20.6,18.9,90,100800,0,0,408,0,0,0,0,0,0,0,220,3.6,10,10,9.7,2290,9,999999999,329,0.1870,0,88,999.000,999.0,99.0 +1989,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,20.6,18.9,90,100800,11,431,389,3,0,3,0,0,0,0,200,4.1,9,8,8.0,1830,9,999999999,329,0.3000,0,88,999.000,999.0,99.0 +1989,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,20.6,18.9,90,100900,189,1327,389,42,6,42,4800,100,4800,1460,230,4.6,9,8,8.0,1980,9,999999999,329,0.3000,0,88,999.000,999.0,99.0 +1989,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,22.8,18.3,76,100800,430,1327,371,197,244,117,20900,22600,13600,2330,290,4.1,4,1,9.7,77777,9,999999999,320,0.3000,0,88,999.000,999.0,99.0 +1989,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,24.4,18.3,69,100900,662,1327,372,401,464,168,42200,46500,19000,3540,290,5.7,3,0,9.7,77777,9,999999999,320,0.3000,0,88,999.000,999.0,99.0 +1989,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,26.7,18.3,60,100900,867,1327,383,584,568,211,62500,58700,24100,5390,350,5.2,3,0,16.1,77777,9,999999999,320,0.3000,0,88,999.000,999.0,99.0 +1989,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,27.8,17.8,55,100900,1031,1327,408,697,538,276,74400,56100,30700,9330,320,5.7,4,4,24.1,77777,9,999999999,320,0.3000,0,88,999.000,999.0,99.0 +1989,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,27.8,17.8,55,100900,1144,1327,415,630,253,411,68400,27400,44700,17710,340,5.2,7,6,24.1,1250,9,999999999,320,0.3000,0,88,999.000,999.0,99.0 +1989,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,28.9,17.8,51,100800,1196,1327,421,763,457,349,81500,47700,38400,19170,350,4.1,7,6,24.1,1310,9,999999999,309,0.3000,0,88,999.000,999.0,99.0 +1989,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,27.2,17.8,56,100800,1186,1327,412,819,397,462,88600,43100,50000,22750,90,6.7,7,6,24.1,1370,9,999999999,309,0.3000,0,88,999.000,999.0,99.0 +1989,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,26.7,19.4,65,100800,1113,1327,405,710,377,393,77100,40900,42800,15650,110,6.2,8,4,19.3,77777,9,999999999,350,0.3000,0,88,999.000,999.0,99.0 +1989,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,24.4,18.9,71,100800,982,1327,389,625,443,295,65800,46000,31700,9140,120,6.2,9,3,19.3,77777,9,999999999,329,0.3000,0,88,999.000,999.0,99.0 +1989,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,25.0,18.9,69,100800,803,1327,383,507,490,208,53600,50200,23200,4950,100,6.7,5,1,19.3,77777,9,999999999,329,0.3000,0,88,999.000,999.0,99.0 +1989,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,23.3,18.9,76,100800,587,1327,367,324,340,172,34500,34400,19200,3700,110,6.7,4,0,16.1,77777,9,999999999,329,0.3000,0,88,999.000,999.0,99.0 +1989,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,22.8,18.9,79,100800,350,1327,372,153,202,99,16100,17300,11500,1940,110,4.6,6,1,16.1,77777,9,999999999,340,0.3000,0,88,999.000,999.0,99.0 +1989,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,22.8,18.9,79,100900,110,1316,386,27,2,27,3000,0,3000,900,130,4.6,10,5,16.1,77777,9,999999999,340,0.3000,0,88,999.000,999.0,99.0 +1989,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,22.8,18.9,79,100900,0,0,390,0,0,0,0,0,0,0,130,4.1,10,6,16.1,7620,9,999999999,340,0.1870,0,88,999.000,999.0,99.0 +1989,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,22.8,19.4,82,100900,0,0,410,0,0,0,0,0,0,0,190,3.1,10,9,12.9,7620,9,999999999,350,0.1870,0,88,999.000,999.0,99.0 +1989,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,21.7,20.0,90,100900,0,0,396,0,0,0,0,0,0,0,190,2.6,10,8,12.9,7620,9,999999999,359,0.1870,0,88,999.000,999.0,99.0 +1989,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,21.7,20.0,90,100900,0,0,382,0,0,0,0,0,0,0,190,4.1,7,5,11.3,7620,9,999999999,359,0.1870,0,88,999.000,999.0,99.0 +1989,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,21.1,20.0,93,100800,0,0,382,0,0,0,0,0,0,0,190,4.6,8,6,9.7,7620,9,999999999,350,0.1870,0,88,999.000,999.0,99.0 +1989,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,21.7,20.0,90,100800,0,0,382,0,0,0,0,0,0,0,170,3.6,6,5,9.7,4270,9,999999999,359,0.1860,0,88,999.000,999.0,99.0 +1989,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,21.1,20.0,93,100800,0,0,401,0,0,0,0,0,0,0,170,3.6,9,9,9.7,1680,9,999999999,350,0.1860,0,88,999.000,999.0,99.0 +1989,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,21.7,19.4,87,100700,0,0,395,0,0,0,0,0,0,0,190,4.1,9,8,9.7,4270,9,999999999,340,0.1860,0,88,999.000,999.0,99.0 +1989,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,21.7,19.4,87,100600,0,0,395,0,0,0,0,0,0,0,200,4.1,10,8,9.7,7620,9,999999999,340,0.1860,0,88,999.000,999.0,99.0 +1989,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,22.2,19.4,84,100600,10,409,406,3,0,3,0,0,0,0,190,5.2,10,9,9.7,7620,9,999999999,340,0.3060,0,88,999.000,999.0,99.0 +1989,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,19.4,79,100600,185,1327,413,46,4,45,5100,0,5100,1520,200,5.2,9,9,9.7,4570,9,999999999,340,0.3060,0,88,999.000,999.0,99.0 +1989,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,24.4,20.6,79,100600,427,1327,411,93,30,83,10200,2700,9300,2390,220,7.2,10,8,8.0,3960,9,999999999,370,0.3060,0,88,999.000,999.0,99.0 +1989,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,26.1,21.7,77,100600,659,1327,404,387,299,237,40800,30900,25400,5530,220,6.7,9,4,6.4,77777,9,999999999,390,0.3060,0,88,999.000,999.0,99.0 +1989,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,27.8,22.2,72,100600,864,1327,411,543,488,224,57800,50400,24900,5730,200,6.7,4,3,6.4,77777,9,999999999,409,0.3060,0,88,999.000,999.0,99.0 +1989,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,28.9,22.8,70,100500,1029,1327,418,670,404,355,72500,43700,38500,11910,190,6.7,9,3,6.4,77777,9,999999999,419,0.3060,0,88,999.000,999.0,99.0 +1989,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,30.0,22.2,63,100500,1141,1327,438,625,246,412,67800,26700,44800,17650,200,7.2,10,7,6.4,3660,9,999999999,400,0.3060,0,88,999.000,999.0,99.0 +1989,8,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,100500,1194,1327,445,595,182,430,65400,19400,47900,20500,200,7.7,10,8,6.4,7620,9,999999999,400,0.3060,0,88,999.000,999.0,99.0 +1989,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,23.3,63,100400,1184,1327,446,637,280,386,69800,30400,42600,18480,200,7.2,10,7,6.4,3050,9,999999999,430,0.3060,0,88,999.000,999.0,99.0 +1989,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,29.4,22.8,67,100400,1110,1327,465,400,4,397,46400,400,46100,16770,200,7.2,10,10,6.4,3050,9,999999999,409,0.3060,0,88,999.000,999.0,99.0 +1989,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,28.9,22.8,70,100400,979,1327,462,232,11,224,27600,900,26900,10600,200,7.2,10,10,6.4,2440,9,999999999,419,0.3060,0,88,999.000,999.0,99.0 +1989,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,22.8,72,100300,799,1327,458,250,6,246,28600,500,28300,10220,200,6.7,10,10,6.4,2740,9,999999999,419,0.3060,0,88,999.000,999.0,99.0 +1989,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,28.3,22.8,72,100300,583,1327,458,166,1,165,18800,100,18800,6450,200,6.7,10,10,4.8,2740,9,999999999,419,0.3060,0,88,999.000,999.0,99.0 +1989,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,27.2,22.2,74,100300,345,1327,438,78,14,75,9000,600,8800,2830,190,6.7,9,9,4.8,2740,9,999999999,400,0.3060,0,88,999.000,999.0,99.0 +1989,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,26.7,21.7,74,100300,105,1294,435,24,1,24,2700,0,2700,820,200,6.2,10,9,4.8,2740,9,999999999,390,0.3060,0,88,999.000,999.0,99.0 +1989,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,25.6,21.7,79,100300,0,0,441,0,0,0,0,0,0,0,200,5.7,10,10,4.8,3050,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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.0,21.7,82,100300,0,0,437,0,0,0,0,0,0,0,200,6.2,10,10,4.0,3050,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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,24.4,21.7,85,100300,0,0,434,0,0,0,0,0,0,0,200,5.7,10,10,4.8,3050,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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,23.9,21.7,87,100300,0,0,395,0,0,0,0,0,0,0,200,6.7,10,5,4.8,77777,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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,23.9,21.7,87,100300,0,0,431,0,0,0,0,0,0,0,210,6.7,10,10,4.8,6100,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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.3,21.7,90,100200,0,0,427,0,0,0,0,0,0,0,200,5.7,10,10,3.2,6100,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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.3,21.7,90,100200,0,0,427,0,0,0,0,0,0,0,200,6.2,10,10,3.2,6100,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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,100200,0,0,427,0,0,0,0,0,0,0,200,6.2,10,10,3.2,2440,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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.9,21.7,87,100100,0,0,431,0,0,0,0,0,0,0,200,6.2,10,10,3.2,2440,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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.9,21.7,87,100100,9,387,431,1,0,1,0,0,0,0,200,7.2,10,10,3.2,2900,9,999999999,390,0.1680,0,88,999.000,999.0,99.0 +1989,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,24.4,21.7,85,100100,182,1327,434,35,1,35,4000,0,4000,1260,200,6.7,10,10,3.2,6710,9,999999999,390,0.1680,0,88,999.000,999.0,99.0 +1989,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,24.4,21.7,85,100100,424,1327,422,124,34,113,13600,3100,12600,3080,200,6.7,10,9,4.0,4570,9,999999999,390,0.1680,0,88,999.000,999.0,99.0 +1989,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,26.1,22.2,79,100100,656,1327,432,188,14,181,21500,1100,20900,7360,210,6.7,10,9,4.0,6100,9,999999999,400,0.1680,0,88,999.000,999.0,99.0 +1989,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,26.7,22.8,79,100100,862,1327,449,268,16,258,31000,1400,30100,11040,190,7.2,10,10,4.0,6100,9,999999999,419,0.1680,0,88,999.000,999.0,99.0 +1989,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,26.1,22.8,82,100100,1026,1327,445,366,42,333,40300,4300,37000,12930,200,7.2,10,10,4.8,4270,9,999999999,419,0.1680,0,88,999.000,999.0,99.0 +1989,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.8,22.8,74,100100,1139,1327,455,322,6,317,38200,500,37700,14500,230,7.7,10,10,4.8,4570,9,999999999,419,0.1680,0,88,999.000,999.0,99.0 +1989,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.2,22.8,77,100100,1192,1327,452,367,10,358,43400,900,42600,16030,240,8.2,10,10,11.3,1070,9,999999999,419,0.1680,0,88,999.000,999.0,99.0 +1989,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,26.7,22.2,77,100100,1181,1327,435,508,92,426,56100,9500,47600,19850,260,7.7,9,9,24.1,2130,9,999999999,409,0.1680,0,88,999.000,999.0,99.0 +1989,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,100100,1108,1327,429,581,307,323,63900,33400,36000,12390,270,6.2,8,6,24.1,7620,9,999999999,390,0.1680,0,88,999.000,999.0,99.0 +1989,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,31.7,21.1,54,100100,976,1327,434,559,372,283,61000,40200,31300,8510,270,6.7,9,4,24.1,77777,9,999999999,379,0.1680,0,88,999.000,999.0,99.0 +1989,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,31.1,20.6,53,100100,796,1327,427,516,558,179,55400,57300,21000,4180,260,7.7,9,3,32.2,77777,9,999999999,359,0.1680,0,88,999.000,999.0,99.0 +1989,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,31.7,20.6,52,100200,579,1327,434,338,392,165,35000,38200,18300,3360,250,6.7,8,4,32.2,77777,9,999999999,370,0.1680,0,88,999.000,999.0,99.0 +1989,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,31.1,21.1,55,100200,341,1327,438,109,65,92,11900,5700,10500,2400,250,5.7,9,6,32.2,7620,9,999999999,379,0.1680,0,88,999.000,999.0,99.0 +1989,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,27.8,21.1,67,100300,101,1272,419,29,21,27,3100,1300,3000,650,250,5.7,7,6,24.1,7620,9,999999999,379,0.1680,0,88,999.000,999.0,99.0 +1989,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,28.3,21.1,65,100300,0,0,427,0,0,0,0,0,0,0,260,4.1,7,7,24.1,2900,9,999999999,379,0.1860,0,88,999.000,999.0,99.0 +1989,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,26.1,21.7,77,100400,0,0,407,0,0,0,0,0,0,0,220,4.6,5,5,24.1,77777,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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,25.6,22.8,85,100400,0,0,421,0,0,0,0,0,0,0,200,3.1,8,8,16.1,1310,9,999999999,419,0.1860,0,88,999.000,999.0,99.0 +1989,8,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,100400,0,0,405,0,0,0,0,0,0,0,140,4.1,6,6,19.3,2740,9,999999999,409,0.1860,0,88,999.000,999.0,99.0 +1989,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,21.7,90,100400,0,0,382,0,0,0,0,0,0,0,200,7.2,2,2,12.9,77777,9,999999999,390,0.1860,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,100400,0,0,375,0,0,0,0,0,0,0,200,5.7,1,1,9.7,77777,9,999999999,390,0.1850,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,100400,0,0,387,0,0,0,0,0,0,0,210,4.6,5,4,6.4,77777,9,999999999,390,0.1850,0,88,999.000,999.0,99.0 +1989,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,23.3,21.7,90,100400,0,0,407,0,0,0,0,0,0,0,220,4.1,8,8,6.4,270,9,999999999,390,0.1850,0,88,999.000,999.0,99.0 +1989,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,100300,0,0,424,0,0,0,0,0,0,0,210,5.7,10,10,4.8,270,9,999999999,390,0.1850,0,88,999.000,999.0,99.0 +1989,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,100300,8,365,424,1,0,1,0,0,0,0,200,5.2,10,10,4.8,270,9,999999999,390,0.0990,0,88,999.000,999.0,99.0 +1989,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,23.3,21.7,90,100400,178,1328,427,31,1,31,3600,0,3600,1140,190,4.6,10,10,4.8,270,9,999999999,390,0.0990,0,88,999.000,999.0,99.0 +1989,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.9,21.7,87,100400,420,1328,431,136,9,133,15100,600,14900,4620,210,5.7,10,10,4.8,270,9,999999999,390,0.0990,0,88,999.000,999.0,99.0 +1989,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,23.9,21.7,87,100400,653,1328,431,194,8,190,22100,700,21800,7590,160,5.2,10,10,4.8,370,9,999999999,390,0.0990,0,88,999.000,999.0,99.0 +1989,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,24.4,21.7,85,100400,859,1328,434,145,6,141,17500,400,17200,6870,260,7.7,10,10,6.4,400,9,999999999,390,0.0990,0,88,999.000,999.0,99.0 +1989,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,23.3,22.8,97,100500,1024,1328,429,388,2,387,44600,200,44400,15890,150,3.1,10,10,8.0,730,9,999999999,419,0.0990,0,88,999.000,999.0,99.0 +1989,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,24.4,22.8,91,100400,1137,1328,408,556,320,281,60300,33500,31500,12370,190,4.1,9,7,8.0,2440,9,999999999,419,0.0990,0,88,999.000,999.0,99.0 +1989,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,26.1,23.3,85,100300,1189,1328,399,823,687,205,88300,70500,25000,10750,150,5.2,2,2,9.7,77777,9,999999999,430,0.0990,0,88,999.000,999.0,99.0 +1989,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,29.4,23.3,70,100300,1179,1328,424,915,810,192,94900,81200,22700,8710,190,6.7,4,4,12.9,77777,9,999999999,430,0.0990,0,88,999.000,999.0,99.0 +1989,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,30.6,23.3,65,100200,1105,1328,428,815,758,180,87200,77800,22300,7250,190,6.7,3,3,12.9,77777,9,999999999,430,0.0990,0,88,999.000,999.0,99.0 +1989,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.1,23.3,63,100100,973,1328,441,554,434,234,59600,45200,26500,7000,190,6.2,6,6,14.5,1130,9,999999999,430,0.0990,0,88,999.000,999.0,99.0 +1989,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,31.1,23.3,63,100100,793,1328,426,536,700,115,57000,70900,14600,2790,200,7.2,2,2,12.9,77777,9,999999999,430,0.0990,0,88,999.000,999.0,99.0 +1989,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,28.9,23.3,72,100100,575,1328,414,332,533,98,34500,51400,12200,1990,200,6.7,3,2,12.9,77777,9,999999999,430,0.0990,0,88,999.000,999.0,99.0 +1989,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,24.4,20.6,79,100100,337,1328,432,48,6,46,5600,200,5600,1890,220,6.2,10,10,6.4,1010,9,999999999,370,0.0990,0,88,999.000,999.0,99.0 +1989,8,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,100200,97,1228,388,36,136,23,3600,6200,3100,400,40,2.6,2,1,11.3,77777,9,999999999,370,0.0990,0,88,999.000,999.0,99.0 +1989,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,23.3,20.6,85,100300,0,0,369,0,0,0,0,0,0,0,90,2.1,1,0,11.3,77777,9,999999999,370,0.1850,0,88,999.000,999.0,99.0 +1989,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,25.0,22.8,88,100300,0,0,393,0,0,0,0,0,0,0,220,5.7,2,2,9.7,77777,9,999999999,419,0.1850,0,88,999.000,999.0,99.0 +1989,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,23.3,22.2,94,100300,0,0,401,0,0,0,0,0,0,0,210,5.2,7,7,6.4,3050,9,999999999,409,0.1850,0,88,999.000,999.0,99.0 +1989,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,23.3,22.2,94,100300,0,0,407,0,0,0,0,0,0,0,190,3.6,8,8,6.4,3050,9,999999999,409,0.1850,0,88,999.000,999.0,99.0 +1989,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,22.8,22.2,97,100300,0,0,380,0,0,0,0,0,0,0,220,6.2,2,2,4.8,77777,9,999999999,409,0.1850,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,100300,0,0,404,0,0,0,0,0,0,0,210,6.2,8,8,3.2,210,9,999999999,390,0.1850,0,88,999.000,999.0,99.0 +1989,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,22.8,22.2,97,100300,0,0,425,0,0,0,0,0,0,0,230,4.6,10,10,3.2,210,9,999999999,409,0.1850,0,88,999.000,999.0,99.0 +1989,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,23.3,22.2,94,100300,0,0,416,0,0,0,0,0,0,0,230,4.1,10,9,3.2,240,9,999999999,409,0.1850,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,100300,0,0,398,0,0,0,0,0,0,0,240,4.1,8,7,3.2,4570,9,999999999,390,0.1850,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,100300,7,343,413,0,0,0,0,0,0,0,220,4.1,10,9,4.8,4570,9,999999999,390,0.1610,0,88,999.000,999.0,99.0 +1989,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,100400,174,1328,404,51,53,44,5600,3400,5100,930,220,3.1,9,8,4.8,4570,9,999999999,390,0.1610,0,88,999.000,999.0,99.0 +1989,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.9,21.7,87,100400,417,1328,419,120,56,102,13100,5100,11500,2810,180,3.6,10,9,6.4,4570,9,999999999,390,0.1610,0,88,999.000,999.0,99.0 +1989,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,26.1,20.6,72,100400,650,1328,414,309,138,241,33300,14000,26500,5960,280,3.6,9,7,9.7,4570,9,999999999,370,0.1610,0,88,999.000,999.0,99.0 +1989,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.2,18.9,60,100400,856,1328,413,383,225,237,41700,24100,26100,6100,350,3.1,9,6,12.9,7620,9,999999999,329,0.1610,0,88,999.000,999.0,99.0 +1989,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,28.9,18.9,55,100400,1022,1328,423,637,443,295,67600,46100,32000,9810,360,3.1,9,6,12.9,7620,9,999999999,329,0.1610,0,88,999.000,999.0,99.0 +1989,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,28.3,19.4,59,100400,1134,1328,401,837,742,200,89300,76000,24300,8690,170,4.1,7,1,16.1,77777,9,999999999,350,0.1610,0,88,999.000,999.0,99.0 +1989,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,28.9,19.4,57,100400,1187,1328,423,847,564,340,90500,58900,37700,17890,130,5.2,10,6,16.1,7620,9,999999999,350,0.1610,0,88,999.000,999.0,99.0 +1989,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,27.8,19.4,61,100300,1176,1328,429,536,210,349,59200,22900,38900,16100,130,5.2,10,8,16.1,7620,9,999999999,350,0.1610,0,88,999.000,999.0,99.0 +1989,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,27.8,19.4,61,100300,1102,1328,438,497,115,400,54300,12200,44200,15370,130,5.2,10,9,16.1,7620,9,999999999,350,0.1610,0,88,999.000,999.0,99.0 +1989,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,26.1,19.4,67,100300,970,1328,419,483,122,393,53000,12600,43800,13830,120,5.2,10,8,19.3,1680,9,999999999,340,0.1610,0,88,999.000,999.0,99.0 +1989,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,25.0,18.9,69,100300,789,1328,421,389,278,222,42000,29500,24500,5390,120,4.6,10,9,16.1,3660,9,999999999,329,0.1610,0,88,999.000,999.0,99.0 +1989,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,23.9,18.9,74,100300,571,1328,427,73,8,70,8900,500,8700,3220,150,3.6,10,10,11.3,3660,9,999999999,329,0.1610,0,88,999.000,999.0,99.0 +1989,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,23.9,21.1,85,100300,332,1328,430,36,2,36,4400,100,4400,1520,160,4.1,10,10,11.3,3660,9,999999999,379,0.1610,0,88,999.000,999.0,99.0 +1989,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,22.8,20.6,87,100300,93,1207,423,15,0,15,1800,0,1800,560,150,4.1,10,10,9.7,1680,9,999999999,370,0.1610,0,88,999.000,999.0,99.0 +1989,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.0,84,100400,0,0,422,0,0,0,0,0,0,0,250,4.1,10,10,9.7,1310,9,999999999,350,0.1850,0,88,999.000,999.0,99.0 +1989,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,21.7,19.4,87,100400,0,0,415,0,0,0,0,0,0,0,320,5.2,10,10,11.3,1130,9,999999999,340,0.1850,0,88,999.000,999.0,99.0 +1989,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,21.7,18.3,81,100400,0,0,414,0,0,0,0,0,0,0,310,5.7,10,10,11.3,1070,9,999999999,320,0.1850,0,88,999.000,999.0,99.0 +1989,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,19.4,17.8,90,100400,0,0,400,0,0,0,0,0,0,0,300,7.2,10,10,11.3,340,9,999999999,309,0.1850,0,88,999.000,999.0,99.0 +1989,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,18.3,17.8,97,100400,0,0,394,0,0,0,0,0,0,0,300,6.7,10,10,4.8,310,9,999999999,309,0.1850,0,88,999.000,999.0,99.0 +1989,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,18.3,17.8,97,100400,0,0,394,0,0,0,0,0,0,0,300,6.2,10,10,9.7,310,9,999999999,309,0.1840,0,88,999.000,999.0,99.0 +1989,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,18.3,16.7,90,100400,0,0,393,0,0,0,0,0,0,0,300,5.7,10,10,19.3,3350,9,999999999,290,0.1840,0,88,999.000,999.0,99.0 +1989,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,17.8,15.6,87,100500,0,0,389,0,0,0,0,0,0,0,310,5.7,10,10,24.1,3660,9,999999999,270,0.1840,0,88,999.000,999.0,99.0 +1989,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,17.2,15.0,87,100500,0,0,340,0,0,0,0,0,0,0,310,5.7,1,1,24.1,77777,9,999999999,270,0.1840,0,88,999.000,999.0,99.0 +1989,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,16.7,14.4,87,100600,6,321,331,4,5,3,0,0,0,0,300,6.7,0,0,24.1,77777,9,999999999,259,0.1270,0,88,999.000,999.0,99.0 +1989,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,17.2,13.9,81,100600,170,1329,332,68,240,37,7100,14300,5300,660,310,6.7,0,0,24.1,77777,9,999999999,250,0.1270,0,88,999.000,999.0,99.0 +1989,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,17.8,12.8,73,100700,414,1329,351,197,308,100,20600,27600,12000,1870,300,7.7,6,4,24.1,4270,9,999999999,229,0.1270,0,88,999.000,999.0,99.0 +1989,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,18.9,12.8,68,100700,647,1329,346,400,603,105,42100,59400,13100,2230,330,7.7,1,1,24.1,77777,9,999999999,229,0.1270,0,88,999.000,999.0,99.0 +1989,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,20.0,12.8,63,100800,854,1329,344,606,765,113,63700,76600,14400,2760,320,7.7,0,0,24.1,77777,9,999999999,229,0.1270,0,88,999.000,999.0,99.0 +1989,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,21.1,11.7,55,100800,1019,1329,355,736,774,139,77400,78000,17400,4270,310,7.7,1,1,24.1,77777,9,999999999,220,0.1270,0,88,999.000,999.0,99.0 +1989,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,22.2,9.4,44,100900,1132,1329,357,839,824,134,86000,82400,15600,4380,340,7.7,1,1,24.1,77777,9,999999999,189,0.1270,0,88,999.000,999.0,99.0 +1989,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,22.8,8.9,41,100900,1185,1329,360,873,815,142,93600,82800,19500,6990,300,7.2,1,1,24.1,77777,9,999999999,179,0.1270,0,88,999.000,999.0,99.0 +1989,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,22.8,9.4,43,100900,1173,1329,365,805,678,203,86200,69500,24600,10010,330,7.7,2,2,24.1,77777,9,999999999,189,0.1270,0,88,999.000,999.0,99.0 +1989,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,24.4,10.0,40,100900,1099,1329,369,798,814,120,81900,81500,14300,3760,320,7.2,1,1,24.1,77777,9,999999999,200,0.1270,0,88,999.000,999.0,99.0 +1989,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,23.3,8.9,40,100900,967,1329,371,667,626,208,69600,63100,23500,6040,310,7.2,3,3,24.1,77777,9,999999999,179,0.1270,0,88,999.000,999.0,99.0 +1989,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,23.3,8.3,38,101000,785,1329,373,496,445,230,51700,45400,24800,5440,330,7.2,4,4,24.1,77777,9,999999999,179,0.1270,0,88,999.000,999.0,99.0 +1989,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,22.8,7.8,38,101100,567,1329,376,224,225,127,24300,22700,14600,2570,310,6.7,6,6,24.1,1980,9,999999999,170,0.1270,0,88,999.000,999.0,99.0 +1989,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,22.2,7.8,40,101100,328,1329,364,128,153,89,13400,12700,10300,1720,300,6.7,3,3,24.1,77777,9,999999999,170,0.1270,0,88,999.000,999.0,99.0 +1989,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,21.1,7.8,42,101200,88,1185,355,32,82,24,3300,3300,3000,420,300,6.2,2,2,24.1,77777,9,999999999,170,0.1270,0,88,999.000,999.0,99.0 +1989,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,20.6,8.3,46,101300,0,0,342,0,0,0,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,179,0.1840,0,88,999.000,999.0,99.0 +1989,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,19.4,9.4,53,101400,0,0,349,0,0,0,0,0,0,0,300,5.2,3,2,24.1,77777,9,999999999,189,0.1840,0,88,999.000,999.0,99.0 +1989,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,18.9,9.4,55,101400,0,0,335,0,0,0,0,0,0,0,310,6.2,0,0,24.1,77777,9,999999999,189,0.1840,0,88,999.000,999.0,99.0 +1989,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,17.8,10.0,61,101500,0,0,331,0,0,0,0,0,0,0,330,4.6,0,0,24.1,77777,9,999999999,200,0.1840,0,88,999.000,999.0,99.0 +1989,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,16.7,10.6,67,101600,0,0,327,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,200,0.1840,0,88,999.000,999.0,99.0 +1989,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,16.1,10.6,70,101700,0,0,324,0,0,0,0,0,0,0,330,5.2,0,0,24.1,77777,9,999999999,209,0.1840,0,88,999.000,999.0,99.0 +1989,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,15.6,10.0,70,101700,0,0,321,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,200,0.1840,0,88,999.000,999.0,99.0 +1989,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,15.0,10.0,72,101800,0,0,318,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,200,0.1840,0,88,999.000,999.0,99.0 +1989,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,15.0,8.9,67,101800,0,0,317,0,0,0,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,189,0.1840,0,88,999.000,999.0,99.0 +1989,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,15.0,8.9,67,101900,5,299,317,3,7,2,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,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,16.1,8.9,63,102000,167,1329,322,69,277,34,7000,17200,4800,600,330,4.6,0,0,24.1,77777,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,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.8,8.9,56,102100,410,1329,336,232,547,62,24200,49100,9100,1200,310,4.6,1,1,24.1,77777,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,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,19.4,8.9,51,102100,644,1329,348,420,633,112,44000,62200,13800,2350,320,5.2,2,2,24.1,77777,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,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,20.6,8.9,47,102100,851,1329,349,585,747,105,61900,75000,13800,2620,320,5.2,1,1,24.1,77777,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,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,22.2,9.4,44,102200,1016,1329,362,734,747,160,78600,76600,19900,5270,320,4.6,2,2,24.1,77777,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,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,22.8,8.3,40,102200,1129,1329,370,719,629,182,77200,64600,22200,7830,310,5.2,4,4,24.1,77777,9,999999999,179,0.1070,0,88,999.000,999.0,99.0 +1989,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,23.3,8.3,38,102100,1182,1329,370,826,704,196,88600,72300,24200,9980,310,5.2,3,3,24.1,77777,9,999999999,179,0.1070,0,88,999.000,999.0,99.0 +1989,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,22.8,8.9,41,102100,1171,1329,377,961,779,271,100700,78700,31200,12920,330,4.1,6,6,24.1,1830,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,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,22.8,8.9,41,102100,1096,1329,382,670,483,269,72400,50500,30600,10510,240,3.6,7,7,24.1,1830,9,999999999,189,0.1070,0,88,999.000,999.0,99.0 +1989,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,22.8,10.6,46,102100,963,1329,384,448,189,310,49200,20100,34600,9730,220,3.1,7,7,24.1,1830,9,999999999,209,0.1070,0,88,999.000,999.0,99.0 +1989,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,22.8,11.7,50,102100,781,1329,385,369,192,255,40200,20100,28400,6810,110,4.1,7,7,24.1,1830,9,999999999,220,0.1070,0,88,999.000,999.0,99.0 +1989,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,21.7,12.8,57,102100,563,1329,376,277,206,189,30000,20500,21300,4490,120,5.2,6,6,24.1,1830,9,999999999,240,0.1070,0,88,999.000,999.0,99.0 +1989,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,20.0,14.4,71,102200,323,1329,361,153,352,65,16000,28800,9000,1170,110,4.1,3,3,24.1,77777,9,999999999,259,0.1070,0,88,999.000,999.0,99.0 +1989,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,14.4,78,102200,84,1141,338,37,139,23,3500,6100,3100,410,130,3.6,0,0,24.1,77777,9,999999999,259,0.1070,0,88,999.000,999.0,99.0 +1989,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,18.9,13.9,73,102200,0,0,340,0,0,0,0,0,0,0,210,2.6,0,0,24.1,77777,9,999999999,250,0.1840,0,88,999.000,999.0,99.0 +1989,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,18.3,12.8,70,102300,0,0,336,0,0,0,0,0,0,0,190,4.6,0,0,24.1,77777,9,999999999,229,0.1840,0,88,999.000,999.0,99.0 +1989,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,18.3,12.2,68,102300,0,0,336,0,0,0,0,0,0,0,220,5.2,0,0,24.1,77777,9,999999999,229,0.1840,0,88,999.000,999.0,99.0 +1989,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,18.3,11.7,65,102300,0,0,335,0,0,0,0,0,0,0,240,5.2,1,0,24.1,77777,9,999999999,220,0.1840,0,88,999.000,999.0,99.0 +1989,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,17.8,12.2,70,102400,0,0,333,0,0,0,0,0,0,0,250,5.2,0,0,24.1,77777,9,999999999,229,0.1840,0,88,999.000,999.0,99.0 +1989,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,17.2,12.2,73,102400,0,0,331,0,0,0,0,0,0,0,250,4.1,0,0,24.1,77777,9,999999999,229,0.1830,0,88,999.000,999.0,99.0 +1989,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,16.1,12.8,81,102400,0,0,326,0,0,0,0,0,0,0,230,3.6,0,0,24.1,77777,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1989,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,15.6,12.8,84,102400,0,0,324,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1989,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,16.1,12.2,78,102400,0,0,326,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,229,0.1830,0,88,999.000,999.0,99.0 +1989,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,16.1,12.2,78,102500,5,277,336,1,0,1,0,0,0,0,290,4.1,4,2,16.1,77777,9,999999999,229,0.2720,0,88,999.000,999.0,99.0 +1989,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,17.2,12.2,73,102500,163,1330,337,45,68,37,5000,4200,4500,780,300,4.1,1,1,16.1,77777,9,999999999,229,0.2720,0,88,999.000,999.0,99.0 +1989,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,18.9,12.8,68,102600,407,1330,346,189,305,95,19800,27100,11500,1770,300,3.1,3,1,17.7,77777,9,999999999,240,0.2720,0,88,999.000,999.0,99.0 +1989,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,21.7,12.8,57,102600,641,1330,364,380,442,166,40000,44000,18700,3460,320,3.1,2,2,16.1,77777,9,999999999,240,0.2720,0,88,999.000,999.0,99.0 +1989,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,22.8,13.3,55,102600,848,1330,374,490,401,233,51700,41300,25400,5860,120,3.1,4,3,16.1,77777,9,999999999,240,0.2720,0,88,999.000,999.0,99.0 +1989,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,22.8,13.9,57,102600,1014,1330,359,660,593,206,69400,60100,23500,6570,150,4.1,0,0,14.5,77777,9,999999999,250,0.2720,0,88,999.000,999.0,99.0 +1989,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,23.3,12.8,52,102600,1127,1330,372,744,533,291,80300,55700,32900,12410,120,5.2,3,2,16.1,77777,9,999999999,240,0.2720,0,88,999.000,999.0,99.0 +1989,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,23.9,12.2,48,102600,1179,1330,369,839,608,296,87400,61100,33100,14440,120,5.7,8,1,17.7,77777,9,999999999,229,0.2720,0,88,999.000,999.0,99.0 +1989,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,23.3,12.8,52,102600,1168,1330,378,818,491,384,86100,51200,41100,18910,120,6.2,10,4,16.1,77777,9,999999999,240,0.2720,0,88,999.000,999.0,99.0 +1989,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,23.3,12.2,50,102500,1093,1330,381,738,436,378,80100,47300,41200,14290,110,5.7,10,5,16.1,77777,9,999999999,229,0.2720,0,88,999.000,999.0,99.0 +1989,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,23.3,12.2,50,102500,960,1330,378,582,280,379,62100,30100,40300,11720,120,5.7,10,4,16.1,77777,9,999999999,229,0.2720,0,88,999.000,999.0,99.0 +1989,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,22.8,12.2,52,102500,778,1330,375,475,369,257,50700,39100,27800,6370,120,6.2,10,4,14.5,77777,9,999999999,229,0.2720,0,88,999.000,999.0,99.0 +1989,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,14.4,64,102500,559,1330,378,256,183,178,27700,18200,20100,4220,120,5.2,10,6,12.9,7620,9,999999999,259,0.2720,0,88,999.000,999.0,99.0 +1989,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,22.2,13.3,57,102500,318,1330,384,110,53,97,12000,4600,10900,2430,140,5.7,10,7,12.9,7620,9,999999999,240,0.2720,0,88,999.000,999.0,99.0 +1989,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,21.1,13.3,61,102500,80,1119,378,27,2,26,2900,0,2900,840,170,4.1,10,7,12.9,7620,9,999999999,240,0.2720,0,88,999.000,999.0,99.0 +1989,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,21.1,13.3,61,102600,0,0,378,0,0,0,0,0,0,0,190,5.2,10,7,12.9,7620,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1989,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,21.1,13.9,64,102600,0,0,385,0,0,0,0,0,0,0,210,4.6,10,8,12.9,7620,9,999999999,250,0.1830,0,88,999.000,999.0,99.0 +1989,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,20.0,14.4,71,102600,0,0,380,0,0,0,0,0,0,0,210,4.6,10,8,12.9,7620,9,999999999,259,0.1830,0,88,999.000,999.0,99.0 +1989,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,20.6,13.3,63,102600,0,0,390,0,0,0,0,0,0,0,250,4.1,10,9,12.9,3660,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1989,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,20.6,12.8,61,102600,0,0,400,0,0,0,0,0,0,0,230,4.6,10,10,16.1,3350,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1989,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,20.6,12.8,61,102500,0,0,400,0,0,0,0,0,0,0,240,4.1,10,10,16.1,3050,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1989,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,20.6,12.8,61,102500,0,0,400,0,0,0,0,0,0,0,250,3.1,10,10,16.1,3350,9,999999999,240,0.1830,0,88,999.000,999.0,99.0 +1989,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,18.9,15.0,78,102500,0,0,383,0,0,0,0,0,0,0,100,2.1,10,9,16.1,3050,9,999999999,270,0.1830,0,88,999.000,999.0,99.0 +1989,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,18.3,15.6,84,102500,0,0,392,0,0,0,0,0,0,0,130,3.1,10,10,16.1,3050,9,999999999,279,0.1830,0,88,999.000,999.0,99.0 +1989,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,18.3,16.1,87,102600,4,255,392,0,0,0,0,0,0,0,160,2.6,10,10,14.5,2740,9,999999999,290,0.1560,0,88,999.000,999.0,99.0 +1989,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,18.9,16.7,87,102700,159,1330,396,23,9,22,2500,600,2500,580,190,3.1,10,10,12.9,3050,9,999999999,300,0.1560,0,88,999.000,999.0,99.0 +1989,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,18.3,15.6,84,102700,403,1330,392,65,6,63,7600,300,7500,2610,230,3.6,10,10,8.0,2740,9,999999999,279,0.1560,0,88,999.000,999.0,99.0 +1989,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,13.3,75,102700,638,1330,386,89,3,88,10800,200,10700,4090,220,2.1,10,10,11.3,2740,9,999999999,240,0.1560,0,88,999.000,999.0,99.0 +1989,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,17.2,12.8,75,102700,845,1330,382,173,3,171,20600,200,20400,8010,130,2.1,10,10,11.3,2130,9,999999999,240,0.1560,0,88,999.000,999.0,99.0 +1989,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,17.2,13.3,78,102800,1011,1330,383,192,8,186,23300,600,22800,9210,200,3.1,10,10,9.7,1310,9,999999999,240,0.1560,0,88,999.000,999.0,99.0 +1989,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,17.2,13.9,81,102800,1124,1330,384,197,3,194,24100,200,23900,9780,170,1.5,10,10,9.7,1680,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1989,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,16.7,13.9,84,102700,1177,1330,381,230,0,230,28100,0,28100,11360,70,4.1,10,10,6.4,3050,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1989,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,16.1,13.9,87,102600,1165,1330,378,227,3,224,27700,200,27500,11100,40,6.2,10,10,9.7,2130,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1989,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,16.1,13.9,87,102600,1090,1330,378,242,1,241,29100,100,29000,11630,60,5.2,10,10,11.3,2130,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1989,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,16.1,13.9,87,102500,956,1330,378,204,1,204,24400,100,24400,9740,60,6.7,10,10,9.7,940,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1989,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,16.1,14.4,90,102500,774,1330,378,145,1,144,17200,100,17200,6700,60,6.7,10,10,8.0,880,9,999999999,259,0.1560,0,88,999.000,999.0,99.0 +1989,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,15.6,15.0,97,102500,554,1330,377,101,1,101,11900,100,11900,4340,60,6.7,10,10,8.0,700,9,999999999,270,0.1560,0,88,999.000,999.0,99.0 +1989,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,15.6,15.0,97,102400,313,1330,377,49,0,49,5700,0,5700,1950,60,7.2,10,10,4.0,640,9,999999999,270,0.1560,0,88,999.000,999.0,99.0 +1989,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,16.1,15.6,97,102400,76,1097,380,13,0,13,1500,0,1500,480,50,5.7,10,10,3.2,700,9,999999999,279,0.1560,0,88,999.000,999.0,99.0 +1989,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,16.7,16.1,97,102400,0,0,384,0,0,0,0,0,0,0,60,6.2,10,10,6.4,340,9,999999999,290,0.1830,0,88,999.000,999.0,99.0 +1989,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,16.7,16.7,100,102400,0,0,384,0,0,0,0,0,0,0,50,6.2,10,10,6.4,340,9,999999999,300,0.1830,0,88,999.000,999.0,99.0 +1989,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,17.2,17.2,100,102300,0,0,388,0,0,0,0,0,0,0,50,4.6,10,10,6.4,240,9,999999999,309,0.1830,0,88,999.000,999.0,99.0 +1989,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,17.2,17.2,100,102300,0,0,388,0,0,0,0,0,0,0,40,4.6,10,10,6.4,180,9,999999999,309,0.1830,0,88,999.000,999.0,99.0 +1989,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,17.8,17.2,97,102300,0,0,391,0,0,0,0,0,0,0,20,3.6,10,10,2.4,90,9,999999999,309,0.1830,0,88,999.000,999.0,99.0 +1989,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.8,17.8,100,102200,0,0,392,0,0,0,0,0,0,0,320,3.6,10,10,0.2,30,9,999999999,320,0.1820,0,88,999.000,999.0,99.0 +1989,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,17.2,17.2,100,102200,0,0,388,0,0,0,0,0,0,0,330,4.6,10,10,0.2,30,9,999999999,309,0.1820,0,88,999.000,999.0,99.0 +1989,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,17.2,17.2,100,102200,0,0,388,0,0,0,0,0,0,0,320,3.6,10,10,0.2,60,9,999999999,309,0.1820,0,88,999.000,999.0,99.0 +1989,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,17.2,17.2,100,102200,0,0,388,0,0,0,0,0,0,0,350,4.6,10,10,0.8,120,9,999999999,309,0.1820,0,88,999.000,999.0,99.0 +1989,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,17.2,17.2,100,102200,3,233,388,1,0,1,0,0,0,0,350,3.6,10,10,0.8,60,9,999999999,309,0.0880,0,88,999.000,999.0,99.0 +1989,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,17.2,17.2,100,102200,155,1330,388,24,0,24,2800,0,2800,890,40,2.1,10,10,0.8,90,9,999999999,309,0.0880,0,88,999.000,999.0,99.0 +1989,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,17.8,17.8,100,102200,400,1330,392,113,1,112,12600,100,12600,4020,360,2.6,10,10,0.8,90,9,999999999,320,0.0880,0,88,999.000,999.0,99.0 +1989,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,18.3,18.3,100,102200,635,1330,395,219,0,219,24600,0,24600,8150,30,2.6,10,10,0.8,90,9,999999999,329,0.0880,0,88,999.000,999.0,99.0 +1989,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,18.3,18.3,100,102200,842,1330,395,288,1,287,32800,100,32800,11670,40,3.6,10,10,0.8,90,9,999999999,329,0.0880,0,88,999.000,999.0,99.0 +1989,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,18.9,18.3,97,102200,1008,1330,398,342,1,342,39600,100,39500,14580,30,3.6,10,10,0.8,150,9,999999999,329,0.0880,0,88,999.000,999.0,99.0 +1989,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,19.4,18.3,93,102200,1122,1330,401,429,1,428,49500,100,49400,17610,50,3.1,10,10,2.4,180,9,999999999,329,0.0880,0,88,999.000,999.0,99.0 +1989,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,20.0,19.4,97,102200,1174,1330,406,400,1,399,46800,100,46700,17150,110,3.6,10,10,2.4,180,9,999999999,350,0.0880,0,88,999.000,999.0,99.0 +1989,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,20.6,20.0,97,102100,1162,1330,384,508,106,415,56000,10900,46500,18670,50,3.6,10,7,0.8,6100,9,999999999,359,0.0880,0,88,999.000,999.0,99.0 +1989,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,21.1,19.4,90,102100,1086,1330,386,567,147,446,61600,15600,48800,16620,60,4.1,10,7,4.8,5490,9,999999999,350,0.0880,0,88,999.000,999.0,99.0 +1989,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,21.1,20.6,97,102100,953,1330,402,289,140,188,32400,15200,21600,5190,10,3.6,10,9,6.4,1220,9,999999999,370,0.0880,0,88,999.000,999.0,99.0 +1989,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,23.3,21.7,90,102100,769,1330,427,208,1,207,24000,100,23900,8850,140,3.1,10,10,12.9,2130,9,999999999,400,0.0880,0,88,999.000,999.0,99.0 +1989,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,22.2,21.1,94,102100,550,1330,409,236,63,210,25800,6200,23300,5610,140,3.6,10,9,12.9,3660,9,999999999,390,0.0880,0,88,999.000,999.0,99.0 +1989,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,21.1,20.6,97,102100,308,1330,402,55,0,55,6400,0,6400,2130,100,2.6,10,9,12.9,3660,9,999999999,370,0.0880,0,88,999.000,999.0,99.0 +1989,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,21.7,20.6,93,102100,72,1053,386,24,22,22,2600,1300,2500,530,70,2.1,9,6,12.9,3660,9,999999999,370,0.0880,0,88,999.000,999.0,99.0 +1989,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,21.7,21.7,100,102100,0,0,387,0,0,0,0,0,0,0,150,3.6,8,6,11.3,7620,9,999999999,400,0.1820,0,88,999.000,999.0,99.0 +1989,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,21.7,100,102100,0,0,398,0,0,0,0,0,0,0,200,3.1,10,8,9.7,3660,9,999999999,400,0.1820,0,88,999.000,999.0,99.0 +1989,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,21.7,21.1,97,102100,0,0,406,0,0,0,0,0,0,0,180,3.1,10,9,8.0,400,9,999999999,390,0.1820,0,88,999.000,999.0,99.0 +1989,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,22.2,22.2,100,102100,0,0,410,0,0,0,0,0,0,0,180,3.6,9,9,8.0,520,9,999999999,409,0.1820,0,88,999.000,999.0,99.0 +1989,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,21.7,21.7,100,102100,0,0,407,0,0,0,0,0,0,0,160,3.6,10,9,8.0,340,9,999999999,400,0.1820,0,88,999.000,999.0,99.0 +1989,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,22.8,22.2,97,102100,0,0,425,0,0,0,0,0,0,0,170,4.1,10,10,8.0,240,9,999999999,409,0.1810,0,88,999.000,999.0,99.0 +1989,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,21.7,21.7,100,102000,0,0,418,0,0,0,0,0,0,0,130,3.1,10,10,4.8,210,9,999999999,400,0.1810,0,88,999.000,999.0,99.0 +1989,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,21.7,21.1,97,102000,0,0,417,0,0,0,0,0,0,0,0,0.0,10,10,6.4,240,9,999999999,390,0.1810,0,88,999.000,999.0,99.0 +1989,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,20.0,19.4,97,102000,0,0,406,0,0,0,0,0,0,0,90,2.6,10,10,3.2,270,9,999999999,350,0.1810,0,88,999.000,999.0,99.0 +1989,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,19.4,19.4,100,102000,3,211,402,0,0,0,0,0,0,0,70,3.1,10,10,4.8,310,9,999999999,350,0.2620,0,88,999.000,999.0,99.0 +1989,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,20.0,20.0,100,102000,152,1331,406,22,0,22,2600,0,2600,820,80,2.6,10,10,8.0,1070,9,999999999,359,0.2620,0,88,999.000,999.0,99.0 +1989,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,21.7,21.1,97,102000,396,1331,417,61,3,60,7200,100,7100,2490,190,5.2,10,10,6.4,520,9,999999999,390,0.2620,0,88,999.000,999.0,99.0 +1989,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,23.9,23.3,97,102000,632,1331,412,205,82,166,22600,8100,18700,5060,210,3.6,9,8,12.9,520,9,999999999,440,0.2620,0,88,999.000,999.0,99.0 +1989,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,22.2,21.1,94,102000,840,1331,420,206,5,203,24200,400,23900,9130,90,4.6,10,10,11.3,340,9,999999999,390,0.2620,0,88,999.000,999.0,99.0 +1989,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.9,21.7,87,102000,1006,1331,395,608,458,260,65100,47700,29000,8280,120,5.7,6,5,11.3,7620,9,999999999,400,0.2620,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,102000,1119,1331,424,166,6,161,20600,400,20300,8320,40,3.6,10,10,11.3,460,9,999999999,400,0.2620,0,88,999.000,999.0,99.0 +1989,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,22.2,21.7,97,102000,1171,1331,421,266,5,262,32200,400,31800,12610,290,7.2,10,10,1.6,90,9,999999999,400,0.2620,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,102000,1159,1331,424,222,17,208,24800,1700,23300,10070,310,4.1,10,10,11.3,1680,9,999999999,400,0.2620,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,102000,1083,1331,424,188,3,186,23100,200,22900,9380,210,2.6,10,10,4.0,1980,9,999999999,400,0.2620,0,88,999.000,999.0,99.0 +1989,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,21.7,21.7,100,101900,949,1331,418,205,5,202,24500,400,24200,9630,120,4.1,10,10,4.0,2290,9,999999999,400,0.2620,0,88,999.000,999.0,99.0 +1989,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,21.7,21.7,100,101900,765,1331,407,128,33,109,14200,3300,12300,3860,120,4.6,10,9,8.0,3050,9,999999999,400,0.2620,0,88,999.000,999.0,99.0 +1989,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,21.1,20.6,97,101900,545,1331,413,65,4,63,7800,200,7800,2880,120,4.6,10,10,6.4,370,9,999999999,370,0.2620,0,88,999.000,999.0,99.0 +1989,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,21.1,20.6,97,101900,303,1331,402,48,10,45,5500,300,5500,1800,120,2.1,10,9,8.0,790,9,999999999,370,0.2620,0,88,999.000,999.0,99.0 +1989,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,21.1,21.1,100,101900,67,1031,394,23,1,23,2600,0,2600,750,130,4.1,9,8,11.3,2440,9,999999999,379,0.2620,0,88,999.000,999.0,99.0 +1989,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,21.7,21.1,97,101900,0,0,387,0,0,0,0,0,0,0,140,3.6,8,6,11.3,2440,9,999999999,390,0.1810,0,88,999.000,999.0,99.0 +1989,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,22.2,21.7,97,101900,0,0,386,0,0,0,0,0,0,0,200,4.1,7,5,8.0,2440,9,999999999,400,0.1810,0,88,999.000,999.0,99.0 +1989,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,21.7,21.7,100,101900,0,0,381,0,0,0,0,0,0,0,200,3.6,5,4,8.0,77777,9,999999999,400,0.1810,0,88,999.000,999.0,99.0 +1989,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,22.2,22.2,100,101900,0,0,390,0,0,0,0,0,0,0,200,4.6,6,6,12.9,940,9,999999999,409,0.1810,0,88,999.000,999.0,99.0 +1989,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,22.2,22.2,100,101900,0,0,422,0,0,0,0,0,0,0,210,4.6,10,10,16.1,1130,9,999999999,409,0.1810,0,88,999.000,999.0,99.0 +1989,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,22.8,22.2,97,101800,0,0,413,0,0,0,0,0,0,0,200,4.1,10,9,16.1,340,9,999999999,409,0.1810,0,88,999.000,999.0,99.0 +1989,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,22.8,22.2,97,101800,0,0,384,0,0,0,0,0,0,0,230,5.7,3,3,19.3,77777,9,999999999,409,0.1810,0,88,999.000,999.0,99.0 +1989,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,22.2,22.2,100,101800,0,0,410,0,0,0,0,0,0,0,240,3.6,10,9,19.3,910,9,999999999,409,0.1810,0,88,999.000,999.0,99.0 +1989,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,21.7,21.1,97,101800,0,0,380,0,0,0,0,0,0,0,0,0.0,4,4,16.1,77777,9,999999999,390,0.1810,0,88,999.000,999.0,99.0 +1989,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,21.1,21.1,100,101800,2,189,371,1,0,1,0,0,0,0,200,3.1,7,2,14.5,77777,9,999999999,379,0.2600,0,88,999.000,999.0,99.0 +1989,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,22.8,22.2,97,101900,148,1331,394,32,9,31,3500,600,3400,770,230,3.6,8,6,12.9,2290,9,999999999,409,0.2600,0,88,999.000,999.0,99.0 +1989,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,22.2,90,101900,393,1331,393,173,188,117,18200,16800,13200,2350,240,5.2,8,4,9.7,77777,9,999999999,409,0.2600,0,88,999.000,999.0,99.0 +1989,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,25.0,22.2,85,101900,628,1331,399,332,289,195,35400,29600,21400,4330,250,6.2,9,4,9.7,77777,9,999999999,409,0.2600,0,88,999.000,999.0,99.0 +1989,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,25.6,22.2,82,101900,837,1331,409,471,350,250,50900,37400,27400,6390,260,6.2,10,6,9.7,7620,9,999999999,409,0.2600,0,88,999.000,999.0,99.0 +1989,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,26.7,22.8,79,101900,1003,1331,416,586,348,323,63700,37600,35300,10230,260,5.2,10,6,12.9,7620,9,999999999,419,0.2600,0,88,999.000,999.0,99.0 +1989,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,27.8,22.2,72,101900,1116,1331,421,660,387,333,69900,40400,36000,13830,230,5.2,10,6,12.9,7620,9,999999999,409,0.2600,0,88,999.000,999.0,99.0 +1989,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,28.9,21.7,65,101800,1168,1331,426,802,460,396,84200,47900,42000,19470,200,4.6,10,6,12.9,7620,9,999999999,400,0.2600,0,88,999.000,999.0,99.0 +1989,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,29.4,20.0,57,101800,1156,1331,420,810,541,337,86200,56500,37100,15750,240,4.6,10,4,16.1,77777,9,999999999,359,0.2600,0,88,999.000,999.0,99.0 +1989,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,28.3,20.6,63,101800,1080,1331,422,623,314,366,67600,34000,39900,13390,200,4.6,10,6,16.1,1220,9,999999999,370,0.2600,0,88,999.000,999.0,99.0 +1989,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,28.9,21.1,63,101700,945,1331,437,488,199,346,53200,21000,38200,10630,240,5.2,10,8,14.5,7620,9,999999999,379,0.2600,0,88,999.000,999.0,99.0 +1989,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,27.2,22.8,77,101700,761,1331,452,265,64,228,29100,6400,25400,7320,200,6.7,10,10,14.5,7620,9,999999999,419,0.2600,0,88,999.000,999.0,99.0 +1989,8,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.2,79,101700,540,1331,444,128,4,126,14700,300,14600,5100,200,6.2,10,10,14.5,7620,9,999999999,409,0.2600,0,88,999.000,999.0,99.0 +1989,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,26.1,22.2,79,101700,298,1331,444,61,2,60,6900,100,6900,2250,240,5.7,10,10,12.9,4270,9,999999999,409,0.2600,0,88,999.000,999.0,99.0 +1989,8,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,101600,63,987,436,10,0,10,1200,0,1200,380,210,5.2,10,10,11.3,4270,9,999999999,379,0.2600,0,88,999.000,999.0,99.0 +1989,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,24.4,22.2,88,101700,0,0,434,0,0,0,0,0,0,0,210,4.6,10,10,11.3,3960,9,999999999,409,0.1810,0,88,999.000,999.0,99.0 +1989,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,24.4,21.1,82,101700,0,0,433,0,0,0,0,0,0,0,220,4.6,10,10,11.3,3350,9,999999999,379,0.1810,0,88,999.000,999.0,99.0 +1989,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,23.9,21.1,85,101700,0,0,430,0,0,0,0,0,0,0,220,4.6,10,10,11.3,3350,9,999999999,390,0.1810,0,88,999.000,999.0,99.0 +1989,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,23.3,21.7,90,101700,0,0,427,0,0,0,0,0,0,0,210,4.1,10,10,11.3,3660,9,999999999,390,0.1810,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,101700,0,0,424,0,0,0,0,0,0,0,200,5.2,10,10,9.7,3660,9,999999999,400,0.1810,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,101700,0,0,424,0,0,0,0,0,0,0,230,4.6,10,10,6.4,3050,9,999999999,400,0.1800,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,101700,0,0,424,0,0,0,0,0,0,0,240,4.6,10,10,6.4,3050,9,999999999,400,0.1800,0,88,999.000,999.0,99.0 +1989,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.2,21.1,94,101700,0,0,420,0,0,0,0,0,0,0,200,3.6,10,10,6.4,2590,9,999999999,390,0.1800,0,88,999.000,999.0,99.0 +1989,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,21.7,21.1,97,101600,0,0,417,0,0,0,0,0,0,0,190,3.6,10,10,6.4,3660,9,999999999,390,0.1800,0,88,999.000,999.0,99.0 +1989,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,21.7,21.1,97,101600,2,166,417,0,0,0,0,0,0,0,190,3.6,10,10,4.8,3960,9,999999999,390,0.0760,0,88,999.000,999.0,99.0 +1989,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,21.7,21.1,97,101600,144,1332,417,26,3,26,3000,0,3000,930,170,3.6,10,10,4.8,3960,9,999999999,390,0.0760,0,88,999.000,999.0,99.0 +1989,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,22.2,97,101600,389,1332,398,166,211,104,17600,18900,12100,2040,210,2.6,10,7,4.8,3960,9,999999999,409,0.0760,0,88,999.000,999.0,99.0 +1989,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,23.3,21.7,90,101600,625,1332,427,168,7,164,19200,500,18900,6670,240,5.2,10,10,4.8,3960,9,999999999,390,0.0760,0,88,999.000,999.0,99.0 +1989,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.0,22.2,85,101600,834,1332,417,413,167,308,44800,17500,33900,8540,220,3.6,10,8,6.4,3960,9,999999999,409,0.0760,0,88,999.000,999.0,99.0 +1989,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,25.6,22.2,82,101700,1000,1332,420,461,170,333,50700,18100,37100,10900,180,4.6,10,8,6.4,3960,9,999999999,409,0.0760,0,88,999.000,999.0,99.0 +1989,8,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101600,1113,1332,416,579,230,386,63600,24500,43100,15070,210,6.2,10,7,8.0,3960,9,999999999,400,0.0760,0,88,999.000,999.0,99.0 +1989,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,26.7,21.7,74,101600,1165,1332,435,490,159,350,54400,17000,39500,15280,190,6.2,10,9,16.1,3960,9,999999999,400,0.0760,0,88,999.000,999.0,99.0 +1989,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,26.7,21.7,74,101500,1153,1332,419,607,336,315,67300,36600,35600,13340,200,7.2,10,7,19.3,3960,9,999999999,400,0.0760,0,88,999.000,999.0,99.0 +1989,8,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,101500,1076,1332,417,709,472,325,74900,49200,35100,12170,200,7.7,10,5,19.3,77777,9,999999999,390,0.0760,0,88,999.000,999.0,99.0 +1989,8,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,101400,941,1332,422,424,89,360,46500,9200,40000,12490,190,6.7,10,8,24.1,3960,9,999999999,400,0.0760,0,88,999.000,999.0,99.0 +1989,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,24.4,22.2,88,101400,757,1332,422,163,72,122,18600,7600,14300,3200,250,5.7,10,9,24.1,3050,9,999999999,409,0.0760,0,88,999.000,999.0,99.0 +1989,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,24.4,21.7,85,101300,535,1332,434,113,11,108,13100,700,12800,4510,230,6.2,10,10,24.1,4570,9,999999999,400,0.0760,0,88,999.000,999.0,99.0 +1989,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,25.0,22.2,85,101300,293,1332,410,106,57,93,11500,4800,10500,2270,220,5.7,10,7,24.1,6710,9,999999999,409,0.0760,0,88,999.000,999.0,99.0 +1989,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,23.9,21.7,87,101300,59,966,410,20,6,19,2100,300,2100,460,200,6.2,10,8,24.1,6100,9,999999999,390,0.0760,0,88,999.000,999.0,99.0 +1989,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,23.9,21.7,87,101300,0,0,431,0,0,0,0,0,0,0,190,6.2,10,10,24.1,6100,9,999999999,390,0.1800,0,88,999.000,999.0,99.0 +1989,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,23.3,21.7,90,101300,0,0,427,0,0,0,0,0,0,0,210,6.2,10,10,24.1,3660,9,999999999,390,0.1800,0,88,999.000,999.0,99.0 +1989,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,23.3,21.7,90,101300,0,0,415,0,0,0,0,0,0,0,210,5.7,10,9,24.1,3050,9,999999999,390,0.1800,0,88,999.000,999.0,99.0 +1989,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,23.3,21.7,90,101300,0,0,427,0,0,0,0,0,0,0,230,5.2,10,10,24.1,400,9,999999999,390,0.1800,0,88,999.000,999.0,99.0 +1989,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,23.3,21.7,90,101200,0,0,427,0,0,0,0,0,0,0,230,4.6,10,10,24.1,3660,9,999999999,390,0.1800,0,88,999.000,999.0,99.0 +1989,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,22.8,21.7,94,101200,0,0,424,0,0,0,0,0,0,0,220,5.2,10,10,24.1,3350,9,999999999,400,0.1790,0,88,999.000,999.0,99.0 +1989,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,22.8,21.1,90,101100,0,0,424,0,0,0,0,0,0,0,230,5.2,10,10,24.1,3050,9,999999999,379,0.1790,0,88,999.000,999.0,99.0 +1989,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,22.8,21.1,90,101100,0,0,424,0,0,0,0,0,0,0,230,5.7,10,10,19.3,3660,9,999999999,379,0.1790,0,88,999.000,999.0,99.0 +1989,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,22.2,21.1,94,101100,0,0,420,0,0,0,0,0,0,0,230,5.7,10,10,24.1,3660,9,999999999,379,0.1790,0,88,999.000,999.0,99.0 +1989,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,22.2,21.1,94,101100,1,144,420,0,0,0,0,0,0,0,240,5.7,10,10,16.1,2900,9,999999999,379,0.3850,0,88,999.000,999.0,99.0 +1989,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.2,21.1,94,101100,140,1332,420,22,0,22,2500,0,2500,810,200,3.1,10,10,19.3,3660,9,999999999,379,0.3850,0,88,999.000,999.0,99.0 +1989,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,21.7,21.1,97,101100,386,1332,417,81,2,80,9200,100,9200,3110,160,2.6,10,10,16.1,2900,9,999999999,379,0.3850,0,88,999.000,999.0,99.0 +1989,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,24.4,21.7,85,101000,622,1332,395,333,286,199,35400,29200,21700,4430,240,5.2,8,4,24.1,77777,9,999999999,390,0.3850,0,88,999.000,999.0,99.0 +1989,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,26.1,21.7,77,101000,831,1332,401,506,438,231,53200,45000,25100,5690,240,6.2,3,3,24.1,77777,9,999999999,400,0.3850,0,88,999.000,999.0,99.0 +1989,8,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,101000,997,1332,407,609,379,323,66000,41000,35200,10140,230,5.7,4,4,16.1,77777,9,999999999,390,0.3850,0,88,999.000,999.0,99.0 +1989,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,27.8,21.7,69,101000,1110,1332,413,754,524,316,80400,54700,34800,12850,230,5.7,4,4,11.3,77777,9,999999999,390,0.3850,0,88,999.000,999.0,99.0 +1989,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,28.3,21.1,65,100900,1162,1332,415,760,471,347,80800,49200,37800,16550,260,6.2,4,4,8.0,77777,9,999999999,379,0.3850,0,88,999.000,999.0,99.0 +1989,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,29.4,20.0,57,100900,1149,1332,423,700,328,415,75900,35600,45100,17950,240,6.7,5,5,8.0,77777,9,999999999,359,0.3850,0,88,999.000,999.0,99.0 +1989,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,30.0,19.4,53,100900,1073,1332,426,616,195,458,66700,20600,50100,16630,250,7.2,5,5,6.4,77777,9,999999999,340,0.3850,0,88,999.000,999.0,99.0 +1989,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,30.0,19.4,53,100900,937,1332,426,548,327,316,59000,35200,34200,9200,230,6.7,5,5,6.4,77777,9,999999999,340,0.3850,0,88,999.000,999.0,99.0 +1989,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,29.4,19.4,55,100800,752,1332,423,400,236,265,43300,24500,29400,6940,250,6.7,8,5,6.4,7620,9,999999999,340,0.3850,0,88,999.000,999.0,99.0 +1989,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,26.7,20.6,69,100900,530,1332,424,106,48,87,11700,4500,9900,2690,50,9.3,10,8,6.4,1220,9,999999999,370,0.3850,0,88,999.000,999.0,99.0 +1989,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,25.0,20.6,76,100900,287,1332,424,85,15,81,9400,600,9200,2740,240,4.1,10,9,8.0,3050,9,999999999,370,0.3850,0,88,999.000,999.0,99.0 +1989,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,22.8,20.0,84,101000,56,944,422,10,0,10,1200,0,1200,380,210,4.6,10,10,6.4,2740,9,999999999,359,0.3850,0,88,999.000,999.0,99.0 +1989,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,23.9,20.6,82,101100,0,0,429,0,0,0,0,0,0,0,250,6.7,10,10,6.4,2740,9,999999999,370,0.1790,0,88,999.000,999.0,99.0 +1989,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,23.9,20.0,79,101100,0,0,428,0,0,0,0,0,0,0,260,6.2,10,10,8.0,3050,9,999999999,359,0.1790,0,88,999.000,999.0,99.0 +1989,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,23.3,19.4,79,101200,0,0,404,0,0,0,0,0,0,0,250,5.7,10,8,9.7,3050,9,999999999,350,0.1790,0,88,999.000,999.0,99.0 +1989,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,22.8,19.4,82,101200,0,0,381,0,0,0,0,0,0,0,260,5.2,3,3,9.7,77777,9,999999999,350,0.1790,0,88,999.000,999.0,99.0 +1989,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,22.8,18.9,79,101200,0,0,386,0,0,0,0,0,0,0,290,5.2,6,5,9.7,3050,9,999999999,340,0.1790,0,88,999.000,999.0,99.0 +1989,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,22.2,18.3,79,101200,0,0,380,0,0,0,0,0,0,0,310,5.7,5,4,11.3,77777,9,999999999,329,0.1790,0,88,999.000,999.0,99.0 +1989,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,21.7,18.3,81,101200,0,0,358,0,0,0,0,0,0,0,300,4.6,0,0,11.3,77777,9,999999999,320,0.1790,0,88,999.000,999.0,99.0 +1989,8,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,101300,0,0,354,0,0,0,0,0,0,0,330,5.2,0,0,12.9,77777,9,999999999,309,0.1790,0,88,999.000,999.0,99.0 +1989,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,20.6,17.2,81,101300,0,0,352,0,0,0,0,0,0,0,330,4.1,0,0,12.9,77777,9,999999999,300,0.1790,0,88,999.000,999.0,99.0 +1989,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,20.0,16.7,81,101300,1,122,360,0,0,0,0,0,0,0,320,5.2,2,2,12.9,77777,9,999999999,290,0.2390,0,88,999.000,999.0,99.0 +1989,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,20.6,16.1,76,101400,136,1333,385,43,3,43,4700,0,4700,1300,320,5.2,9,8,12.9,3050,9,999999999,290,0.2390,0,88,999.000,999.0,99.0 +1989,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,21.7,15.0,66,101500,382,1333,409,77,0,77,8900,0,8900,3010,340,5.2,10,10,19.3,1490,9,999999999,270,0.2390,0,88,999.000,999.0,99.0 +1989,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,22.8,15.0,62,101500,619,1333,389,283,198,191,30900,20100,21600,4650,350,4.1,7,7,24.1,3350,9,999999999,270,0.2390,0,88,999.000,999.0,99.0 +1989,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,23.3,15.6,62,101500,828,1333,379,512,393,266,54900,41900,28900,6830,30,4.1,8,3,24.1,77777,9,999999999,279,0.2390,0,88,999.000,999.0,99.0 +1989,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,23.9,16.1,62,101600,994,1333,379,694,574,263,74000,59700,29300,8190,80,4.6,8,2,24.1,77777,9,999999999,290,0.2390,0,88,999.000,999.0,99.0 +1989,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,23.3,16.1,64,101600,1107,1333,380,629,329,355,68800,35700,39100,13640,80,5.7,8,3,24.1,77777,9,999999999,290,0.2390,0,88,999.000,999.0,99.0 +1989,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,23.3,16.1,64,101600,1159,1333,380,726,430,350,77100,44900,38000,16510,90,6.2,8,3,24.1,77777,9,999999999,290,0.2390,0,88,999.000,999.0,99.0 +1989,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,23.3,16.7,66,101700,1146,1333,380,811,611,282,84500,61500,31500,12180,110,5.7,4,3,24.1,77777,9,999999999,290,0.2390,0,88,999.000,999.0,99.0 +1989,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,23.3,17.8,71,101700,1069,1333,382,721,521,300,76700,54300,33000,10960,100,5.7,3,3,24.1,77777,9,999999999,309,0.2390,0,88,999.000,999.0,99.0 +1989,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,23.3,16.1,64,101700,933,1333,371,630,620,191,65600,62600,21800,5260,100,6.2,1,1,24.1,77777,9,999999999,290,0.2390,0,88,999.000,999.0,99.0 +1989,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,22.8,16.1,66,101700,747,1333,373,469,502,184,49600,51100,20900,4120,100,5.2,3,2,24.1,77777,9,999999999,290,0.2390,0,88,999.000,999.0,99.0 +1989,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,22.2,16.1,69,101700,525,1333,365,292,384,138,30300,36700,15800,2710,140,6.2,7,1,24.1,77777,9,999999999,290,0.2390,0,88,999.000,999.0,99.0 +1989,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,22.2,16.1,69,101700,282,1333,365,122,164,86,12600,12600,10000,1690,130,4.1,8,1,24.1,77777,9,999999999,290,0.2390,0,88,999.000,999.0,99.0 +1989,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,20.6,16.7,79,101800,52,900,367,22,2,21,2400,0,2400,680,140,4.1,7,3,24.1,77777,9,999999999,300,0.2390,0,88,999.000,999.0,99.0 +1989,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,21.7,15.0,66,101900,0,0,373,0,0,0,0,0,0,0,180,4.1,10,4,24.1,77777,9,999999999,270,0.1790,0,88,999.000,999.0,99.0 +1989,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,21.1,15.6,71,101900,0,0,359,0,0,0,0,0,0,0,170,4.1,8,1,24.1,77777,9,999999999,279,0.1790,0,88,999.000,999.0,99.0 +1989,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,20.0,17.2,84,102000,0,0,361,0,0,0,0,0,0,0,310,3.1,2,2,24.1,77777,9,999999999,309,0.1790,0,88,999.000,999.0,99.0 +1989,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,20.0,16.7,81,102100,0,0,377,0,0,0,0,0,0,0,50,3.1,7,7,24.1,2440,9,999999999,300,0.1790,0,88,999.000,999.0,99.0 +1989,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.9,16.1,84,102100,0,0,349,0,0,0,0,0,0,0,100,3.6,1,1,24.1,77777,9,999999999,290,0.1790,0,88,999.000,999.0,99.0 +1989,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,19.4,16.1,81,102200,0,0,345,0,0,0,0,0,0,0,360,5.2,0,0,24.1,77777,9,999999999,290,0.1780,0,88,999.000,999.0,99.0 +1989,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,18.9,14.4,76,102200,0,0,341,0,0,0,0,0,0,0,360,5.7,0,0,24.1,77777,9,999999999,259,0.1780,0,88,999.000,999.0,99.0 +1989,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,18.3,13.9,76,102300,0,0,337,0,0,0,0,0,0,0,10,4.6,0,0,24.1,77777,9,999999999,250,0.1780,0,88,999.000,999.0,99.0 +1989,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,17.8,13.3,75,102400,0,0,341,0,0,0,0,0,0,0,350,5.2,1,1,24.1,77777,9,999999999,240,0.1780,0,88,999.000,999.0,99.0 +1989,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,16.7,12.8,78,102400,0,100,329,1,1,1,0,0,0,0,360,5.2,3,0,24.1,77777,9,999999999,240,0.0970,0,88,999.000,999.0,99.0 +1989,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,17.8,12.2,70,102500,132,1333,348,39,107,28,4100,5100,3600,490,30,4.1,4,3,24.1,77777,9,999999999,229,0.0970,0,88,999.000,999.0,99.0 +1989,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,19.4,11.7,61,102600,379,1333,340,195,478,58,20300,41800,8400,1110,10,5.2,3,0,24.1,77777,9,999999999,220,0.0970,0,88,999.000,999.0,99.0 +1989,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,20.6,12.2,59,102600,615,1333,346,409,686,91,43200,67300,12100,1920,30,6.7,3,0,24.1,77777,9,999999999,229,0.0970,0,88,999.000,999.0,99.0 +1989,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,21.7,12.2,55,102700,825,1333,352,584,774,103,61600,77500,13600,2480,40,6.2,2,0,24.1,77777,9,999999999,229,0.0970,0,88,999.000,999.0,99.0 +1989,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,21.7,12.8,57,102800,991,1333,359,674,650,187,71000,66100,21800,5730,50,7.2,6,1,24.1,77777,9,999999999,240,0.0970,0,88,999.000,999.0,99.0 +1989,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,21.7,13.9,61,102800,1104,1333,365,784,720,184,83800,73800,22500,7300,80,6.7,6,2,24.1,77777,9,999999999,250,0.0970,0,88,999.000,999.0,99.0 +1989,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,21.7,13.3,59,102800,1156,1333,364,828,695,222,87900,70900,26300,10110,80,7.2,9,2,24.1,77777,9,999999999,240,0.0970,0,88,999.000,999.0,99.0 +1989,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,21.1,14.4,66,102800,1143,1333,369,690,399,346,73100,41600,37400,15470,90,7.2,9,4,24.1,77777,9,999999999,259,0.0970,0,88,999.000,999.0,99.0 +1989,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,20.0,15.6,76,102800,1065,1333,368,675,526,251,72900,55000,28900,8980,80,6.2,10,5,24.1,77777,9,999999999,279,0.0970,0,88,999.000,999.0,99.0 +1989,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,20.0,15.6,76,102700,929,1333,368,619,503,265,65100,52100,28800,7430,80,4.1,10,5,24.1,77777,9,999999999,279,0.0970,0,88,999.000,999.0,99.0 +1989,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,19.4,16.1,81,102700,743,1333,366,493,536,190,51800,54500,21400,4250,80,4.6,10,5,24.1,77777,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1989,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,18.9,16.1,84,102700,520,1333,371,279,343,142,29500,33700,16400,2920,80,4.1,10,7,24.1,7620,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1989,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,18.9,16.7,87,102700,276,1333,377,100,77,83,10700,6100,9500,1790,70,4.1,10,8,24.1,6100,9,999999999,300,0.0970,0,88,999.000,999.0,99.0 +1989,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,18.3,16.1,87,102700,48,878,392,10,1,10,1200,0,1200,370,70,3.6,10,10,16.1,6100,9,999999999,290,0.0970,0,88,999.000,999.0,99.0 +1989,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,18.3,16.1,87,102700,0,0,392,0,0,0,0,0,0,0,60,3.6,10,10,11.3,6100,9,999999999,290,0.1780,0,88,999.000,999.0,99.0 +1989,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,17.8,16.7,93,102700,0,0,361,0,0,0,0,0,0,0,80,3.1,8,6,11.3,6100,9,999999999,300,0.1780,0,88,999.000,999.0,99.0 +1989,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,17.8,17.2,97,102700,0,0,362,0,0,0,0,0,0,0,50,2.6,10,6,9.7,6100,9,999999999,309,0.1780,0,88,999.000,999.0,99.0 +1989,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,17.8,17.2,97,102700,0,0,372,0,0,0,0,0,0,0,60,3.1,10,8,11.3,6100,9,999999999,309,0.1780,0,88,999.000,999.0,99.0 +1989,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,17.8,17.2,97,102700,0,0,391,0,0,0,0,0,0,0,30,3.1,10,10,12.9,3050,9,999999999,309,0.1780,0,88,999.000,999.0,99.0 +1989,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,17.8,17.2,97,102700,0,0,391,0,0,0,0,0,0,0,10,2.6,10,10,16.1,3050,9,999999999,309,0.1770,0,88,999.000,999.0,99.0 +1989,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,17.2,16.7,97,102600,0,0,368,0,0,0,0,0,0,0,20,2.6,9,8,16.1,6100,9,999999999,300,0.1770,0,88,999.000,999.0,99.0 +1989,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,17.2,17.2,100,102600,0,0,388,0,0,0,0,0,0,0,10,3.1,10,10,16.1,3660,9,999999999,309,0.1770,0,88,999.000,999.0,99.0 +1989,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,17.2,16.7,97,102600,0,0,387,0,0,0,0,0,0,0,30,3.1,10,10,16.1,3660,9,999999999,300,0.1770,0,88,999.000,999.0,99.0 +1989,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,17.2,16.1,93,102600,0,78,346,1,1,1,0,0,0,0,40,4.1,9,2,16.1,77777,9,999999999,290,0.0740,0,88,999.000,999.0,99.0 +1989,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,17.2,16.7,97,102600,128,1334,358,44,56,39,4800,3000,4500,810,30,3.1,8,6,16.1,4570,9,999999999,300,0.0740,0,88,999.000,999.0,99.0 +1989,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,17.2,16.7,97,102600,375,1334,368,135,107,105,14700,9600,12000,2330,40,5.7,9,8,12.9,3660,9,999999999,300,0.0740,0,88,999.000,999.0,99.0 +1989,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,18.9,17.2,90,102600,612,1334,386,217,58,190,23800,5700,21200,5540,30,4.6,10,9,12.9,3660,9,999999999,309,0.0740,0,88,999.000,999.0,99.0 +1989,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,20.6,17.2,81,102500,821,1334,395,343,142,255,37600,14900,28400,7000,60,6.2,10,9,19.3,3660,9,999999999,309,0.0740,0,88,999.000,999.0,99.0 +1989,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,21.1,17.8,81,102600,988,1334,390,449,165,326,49300,17500,36300,10490,70,6.2,10,8,19.3,3660,9,999999999,320,0.0740,0,88,999.000,999.0,99.0 +1989,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,21.7,16.7,73,102500,1101,1334,386,660,459,278,71000,48000,31300,10920,60,6.7,9,7,19.3,3660,9,999999999,300,0.0740,0,88,999.000,999.0,99.0 +1989,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,22.2,16.7,71,102500,1153,1334,384,633,365,315,67800,38100,34700,14430,70,6.7,8,6,24.1,7620,9,999999999,300,0.0740,0,88,999.000,999.0,99.0 +1989,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,21.7,16.7,73,102400,1139,1334,378,746,621,212,79200,63400,24900,9170,70,6.7,7,5,24.1,7620,9,999999999,300,0.0740,0,88,999.000,999.0,99.0 +1989,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,22.2,16.7,71,102300,1061,1334,384,762,686,211,80100,69700,24500,7410,80,6.2,8,6,24.1,4570,9,999999999,300,0.0740,0,88,999.000,999.0,99.0 +1989,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,21.1,17.2,79,102300,924,1334,379,583,404,301,62900,43500,32700,8560,60,5.7,8,6,24.1,2740,9,999999999,309,0.0740,0,88,999.000,999.0,99.0 +1989,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,20.6,17.2,81,102200,738,1334,376,353,214,233,38500,22200,26100,6040,80,6.2,9,6,24.1,2740,9,999999999,309,0.0740,0,88,999.000,999.0,99.0 +1989,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,21.1,17.2,79,102200,515,1334,373,258,337,126,27000,32100,14600,2440,60,6.2,7,4,24.1,2900,9,999999999,309,0.0740,0,88,999.000,999.0,99.0 +1989,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,20.0,17.2,84,102100,270,1334,373,121,172,85,12500,13000,9900,1680,70,4.6,8,6,24.1,2290,9,999999999,309,0.0740,0,88,999.000,999.0,99.0 +1989,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,19.4,17.2,87,102100,44,834,374,20,6,20,2200,300,2200,470,80,4.1,10,7,19.3,2130,9,999999999,309,0.0740,0,88,999.000,999.0,99.0 +1989,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,19.4,17.8,90,102100,0,0,375,0,0,0,0,0,0,0,60,4.1,9,7,16.1,1980,9,999999999,320,0.1770,0,88,999.000,999.0,99.0 +1989,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,19.4,17.8,90,102000,0,0,381,0,0,0,0,0,0,0,70,4.6,10,8,9.7,1680,9,999999999,320,0.1770,0,88,999.000,999.0,99.0 +1989,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,19.4,18.3,93,101900,0,0,401,0,0,0,0,0,0,0,60,4.1,10,10,8.0,210,9,999999999,320,0.1770,0,88,999.000,999.0,99.0 +1989,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,19.4,18.3,93,101900,0,0,401,0,0,0,0,0,0,0,60,4.1,10,10,9.7,210,9,999999999,320,0.1770,0,88,999.000,999.0,99.0 +1989,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,19.4,18.3,93,101900,0,0,401,0,0,0,0,0,0,0,70,4.1,10,10,11.3,1070,9,999999999,320,0.1770,0,88,999.000,999.0,99.0 +1989,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,19.4,18.3,93,101800,0,0,401,0,0,0,0,0,0,0,70,4.1,10,10,11.3,910,9,999999999,320,0.1770,0,88,999.000,999.0,99.0 +1989,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,18.9,18.3,97,101700,0,0,398,0,0,0,0,0,0,0,80,4.1,10,10,9.7,490,9,999999999,329,0.1770,0,88,999.000,999.0,99.0 +1989,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,18.9,18.3,97,101700,0,0,398,0,0,0,0,0,0,0,120,2.6,10,10,11.3,400,9,999999999,329,0.1770,0,88,999.000,999.0,99.0 +1989,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,19.4,18.9,97,101600,0,0,402,0,0,0,0,0,0,0,140,3.1,10,10,11.3,240,9,999999999,340,0.1770,0,88,999.000,999.0,99.0 +1989,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,19.4,18.9,97,101600,0,33,402,0,0,0,0,0,0,0,150,3.6,10,10,11.3,240,9,999999999,340,0.1770,0,88,999.000,999.0,99.0 +1989,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.6,20.0,97,101600,124,1334,410,17,10,16,1900,600,1800,420,170,3.1,10,10,11.3,490,9,999999999,359,0.1110,0,88,999.000,999.0,99.0 +1989,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,20.6,20.0,97,101600,371,1334,410,101,5,100,11400,300,11300,3580,140,3.1,10,10,8.0,580,9,999999999,359,0.1110,0,88,999.000,999.0,99.0 +1989,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,21.7,20.0,90,101600,609,1334,416,137,9,133,15900,600,15600,5630,200,5.2,10,10,9.7,520,9,999999999,359,0.1110,0,88,999.000,999.0,99.0 +1989,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,23.3,19.4,79,101600,818,1334,424,210,8,205,24500,700,24100,9070,230,5.7,10,10,9.7,520,9,999999999,350,0.1110,0,88,999.000,999.0,99.0 +1989,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,23.3,19.4,79,101600,985,1334,424,337,2,336,38900,200,38800,14200,240,6.2,10,10,11.3,820,9,999999999,350,0.1110,0,88,999.000,999.0,99.0 +1989,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,25.0,18.9,69,101500,1098,1334,413,578,225,392,63400,23900,43600,14830,240,6.2,10,8,12.9,1010,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1989,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,26.7,19.4,65,101400,1149,1334,423,632,365,315,67600,38100,34700,14270,250,8.2,10,8,12.9,980,9,999999999,350,0.1110,0,88,999.000,999.0,99.0 +1989,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,27.8,19.4,61,101300,1136,1334,417,738,529,284,79600,55300,32400,12260,240,9.3,6,6,11.3,1070,9,999999999,350,0.1110,0,88,999.000,999.0,99.0 +1989,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,26.7,18.9,63,101300,1057,1334,407,758,681,214,79600,69100,24800,7420,240,9.8,7,5,16.1,4270,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1989,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,27.8,18.9,59,101200,920,1334,422,425,131,334,46300,13800,36700,9980,230,9.8,8,7,11.3,4270,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1989,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,27.8,18.9,59,101200,733,1334,403,467,563,154,48100,55600,17500,3340,230,9.8,7,2,11.3,77777,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1989,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,26.7,18.9,63,101100,509,1334,407,307,414,146,31500,39200,16500,2880,240,8.8,7,5,12.9,4270,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1989,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,18.9,65,101100,265,1334,394,126,218,81,13000,16200,9800,1590,230,7.7,8,2,12.9,77777,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1989,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,25.0,18.9,69,101200,41,790,392,18,23,16,1900,900,1900,330,230,6.2,8,3,12.9,77777,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1989,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,24.4,18.9,71,101200,0,0,398,0,0,0,0,0,0,0,240,5.7,10,6,9.7,7620,9,999999999,329,0.1770,0,88,999.000,999.0,99.0 +1989,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,23.9,19.4,76,101200,0,0,428,0,0,0,0,0,0,0,230,6.2,10,10,9.7,4570,9,999999999,350,0.1770,0,88,999.000,999.0,99.0 +1989,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,23.3,19.4,79,101200,0,0,424,0,0,0,0,0,0,0,250,5.2,10,10,9.7,4570,9,999999999,350,0.1770,0,88,999.000,999.0,99.0 +1989,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,23.3,19.4,79,101200,0,0,383,0,0,0,0,0,0,0,250,7.7,3,3,9.7,77777,9,999999999,350,0.1770,0,88,999.000,999.0,99.0 +1989,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,18.9,79,101200,0,0,372,0,0,0,0,0,0,0,240,7.2,1,1,8.0,77777,9,999999999,340,0.1770,0,88,999.000,999.0,99.0 +1989,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,18.3,79,101100,0,0,373,0,0,0,0,0,0,0,240,5.7,2,2,8.0,77777,9,999999999,329,0.1760,0,88,999.000,999.0,99.0 +1989,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,21.7,18.3,81,101100,0,0,374,0,0,0,0,0,0,0,230,5.2,3,3,6.4,77777,9,999999999,320,0.1760,0,88,999.000,999.0,99.0 +1989,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,21.7,18.3,81,101100,0,0,394,0,0,0,0,0,0,0,230,5.7,9,8,6.4,3660,9,999999999,320,0.1760,0,88,999.000,999.0,99.0 +1989,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,18.3,81,101000,0,0,380,0,0,0,0,0,0,0,200,5.2,8,5,6.4,7620,9,999999999,320,0.1760,0,88,999.000,999.0,99.0 +1989,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,22.2,18.9,82,101000,0,11,380,0,0,0,0,0,0,0,250,6.2,9,4,6.4,77777,9,999999999,340,0.1760,0,88,999.000,999.0,99.0 +1989,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,19.4,84,101000,120,1335,378,28,5,27,3100,0,3100,910,240,6.2,9,3,6.4,77777,9,999999999,340,0.3210,0,88,999.000,999.0,99.0 +1989,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,23.9,20.0,79,101000,368,1335,390,150,59,133,16300,5300,14800,3250,250,6.2,8,4,8.0,77777,9,999999999,359,0.3210,0,88,999.000,999.0,99.0 +1989,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,25.6,19.4,69,100900,605,1335,392,319,301,182,34000,30600,20100,3970,260,6.7,6,2,8.0,77777,9,999999999,350,0.3210,0,88,999.000,999.0,99.0 +1989,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,27.2,20.6,67,100900,815,1335,406,504,404,255,54100,43000,27800,6430,250,6.2,10,3,8.0,77777,9,999999999,370,0.3210,0,88,999.000,999.0,99.0 +1989,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,28.3,20.6,63,100900,982,1335,415,591,311,361,63400,33500,38700,11300,270,7.2,10,4,8.0,77777,9,999999999,370,0.3210,0,88,999.000,999.0,99.0 +1989,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.8,19.4,61,100900,1095,1335,422,659,380,345,71900,41200,38000,12830,280,8.2,10,7,8.0,7620,9,999999999,350,0.3210,0,88,999.000,999.0,99.0 +1989,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.9,19.4,57,100900,1146,1335,423,702,357,394,76400,38700,43100,16710,250,7.7,10,6,9.7,7620,9,999999999,350,0.3210,0,88,999.000,999.0,99.0 +1989,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,30.0,19.4,53,100800,1132,1335,430,698,326,419,75400,35300,45400,17310,280,7.7,10,6,9.7,7620,9,999999999,340,0.3210,0,88,999.000,999.0,99.0 +1989,8,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,100700,1053,1335,435,596,312,348,64700,33800,38000,12000,260,7.2,10,7,9.7,7620,9,999999999,340,0.3210,0,88,999.000,999.0,99.0 +1989,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,18.9,51,100700,915,1335,422,477,266,292,51400,28600,31700,8180,260,7.2,8,4,9.7,77777,9,999999999,329,0.3210,0,88,999.000,999.0,99.0 +1989,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,23.3,20.6,85,100700,728,1335,405,160,45,135,17600,4400,15200,4560,240,4.1,9,8,6.4,3660,9,999999999,370,0.3210,0,88,999.000,999.0,99.0 +1989,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,26.7,20.6,69,100700,504,1335,403,254,209,173,27200,20200,19600,4010,230,6.7,3,3,12.9,77777,9,999999999,370,0.3210,0,88,999.000,999.0,99.0 +1989,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,26.7,20.0,67,100700,259,1335,385,101,147,71,10500,10800,8400,1350,250,6.7,0,0,14.5,77777,9,999999999,359,0.3210,0,88,999.000,999.0,99.0 +1989,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,20.6,74,100700,37,768,381,17,2,16,1800,0,1800,540,240,6.7,0,0,12.9,77777,9,999999999,370,0.3210,0,88,999.000,999.0,99.0 +1989,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,25.0,20.6,76,100700,0,0,377,0,0,0,0,0,0,0,250,6.7,0,0,12.9,77777,9,999999999,370,0.1760,0,88,999.000,999.0,99.0 +1989,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,20.6,79,100800,0,0,374,0,0,0,0,0,0,0,250,6.2,0,0,12.9,77777,9,999999999,370,0.1760,0,88,999.000,999.0,99.0 +1989,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.0,19.4,71,100900,0,0,376,0,0,0,0,0,0,0,260,6.7,0,0,16.1,77777,9,999999999,340,0.1760,0,88,999.000,999.0,99.0 +1989,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,23.3,19.4,79,100900,0,0,368,0,0,0,0,0,0,0,250,4.6,0,0,11.3,77777,9,999999999,350,0.1760,0,88,999.000,999.0,99.0 +1989,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,23.9,17.2,66,100900,0,0,384,0,0,0,0,0,0,0,270,5.7,3,3,11.3,77777,9,999999999,300,0.1760,0,88,999.000,999.0,99.0 +1989,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.9,16.7,64,100800,0,0,424,0,0,0,0,0,0,0,270,6.2,10,10,11.3,3660,9,999999999,290,0.1750,0,88,999.000,999.0,99.0 +1989,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,17.2,69,100900,0,0,395,0,0,0,0,0,0,0,300,5.7,7,7,11.3,3050,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,22.8,16.7,69,100900,0,0,384,0,0,0,0,0,0,0,290,4.6,5,5,11.3,77777,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,22.2,16.7,71,100800,0,0,384,0,0,0,0,0,0,0,280,4.6,6,6,11.3,3050,9,999999999,290,0.1750,0,88,999.000,999.0,99.0 +1989,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.2,16.7,71,100900,0,0,371,0,0,0,0,0,0,0,270,6.2,2,2,16.1,77777,9,999999999,290,0.1750,0,88,999.000,999.0,99.0 +1989,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,21.7,17.2,76,101000,116,1324,369,37,140,23,3800,6900,3200,400,290,6.2,2,2,16.1,77777,9,999999999,300,0.0810,0,88,999.000,999.0,99.0 +1989,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,23.3,17.2,69,101100,364,1336,365,202,563,48,20800,49100,7500,960,320,6.2,0,0,24.1,77777,9,999999999,300,0.0810,0,88,999.000,999.0,99.0 +1989,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,16.7,64,101100,602,1336,367,399,730,67,42100,71100,10000,1480,300,6.7,0,0,24.1,77777,9,999999999,290,0.0810,0,88,999.000,999.0,99.0 +1989,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.6,16.1,56,101100,812,1336,375,583,817,84,60600,80800,11300,1920,300,8.2,0,0,24.1,77777,9,999999999,290,0.0810,0,88,999.000,999.0,99.0 +1989,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,26.1,16.1,54,101000,979,1336,378,724,853,96,75000,85200,12400,2570,300,8.2,0,0,24.1,77777,9,999999999,279,0.0810,0,88,999.000,999.0,99.0 +1989,8,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.0,47,101100,1092,1336,382,825,878,103,85100,87900,13100,3370,300,8.2,0,0,24.1,77777,9,999999999,259,0.0810,0,88,999.000,999.0,99.0 +1989,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,16.1,49,101000,1143,1336,394,822,843,97,85000,84600,12500,3730,320,7.2,2,1,24.1,77777,9,999999999,279,0.0810,0,88,999.000,999.0,99.0 +1989,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,15.0,46,101100,1128,1336,402,828,767,175,86000,77000,20800,6630,330,6.7,3,3,24.1,77777,9,999999999,270,0.0810,0,88,999.000,999.0,99.0 +1989,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,28.9,13.9,40,101000,1049,1336,402,731,745,141,76900,75100,17700,4560,310,6.7,4,2,24.1,77777,9,999999999,250,0.0810,0,88,999.000,999.0,99.0 +1989,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,28.3,13.9,41,101000,911,1336,406,535,451,224,57100,46700,25100,6030,310,6.2,8,4,24.1,77777,9,999999999,250,0.0810,0,88,999.000,999.0,99.0 +1989,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,28.9,12.8,37,101000,723,1336,401,467,618,128,48600,61500,15300,2830,310,6.2,8,2,24.1,77777,9,999999999,229,0.0810,0,88,999.000,999.0,99.0 +1989,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,22.8,15.6,64,101100,498,1336,379,268,386,121,27900,36400,14300,2330,130,4.6,9,4,24.1,77777,9,999999999,279,0.0810,0,88,999.000,999.0,99.0 +1989,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.7,15.6,68,101100,253,1336,371,115,218,72,11900,15800,8900,1380,140,4.1,7,3,24.1,77777,9,999999999,270,0.0810,0,88,999.000,999.0,99.0 +1989,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,21.1,16.7,76,101100,34,723,397,18,8,17,1900,400,1900,400,130,4.1,10,9,24.1,7620,9,999999999,290,0.0810,0,88,999.000,999.0,99.0 +1989,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.6,16.7,79,101200,0,0,405,0,0,0,0,0,0,0,120,4.1,10,10,24.1,4270,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,21.1,16.1,73,101200,0,0,407,0,0,0,0,0,0,0,220,3.1,10,10,24.1,4270,9,999999999,279,0.1750,0,88,999.000,999.0,99.0 +1989,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,21.1,15.0,68,101200,0,0,406,0,0,0,0,0,0,0,170,2.6,10,10,24.1,3960,9,999999999,270,0.1750,0,88,999.000,999.0,99.0 +1989,8,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,101100,0,0,401,0,0,0,0,0,0,0,170,3.1,10,10,24.1,3660,9,999999999,279,0.1750,0,88,999.000,999.0,99.0 +1989,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,19.4,16.1,81,101100,0,0,398,0,0,0,0,0,0,0,180,2.6,10,10,19.3,3660,9,999999999,279,0.1750,0,88,999.000,999.0,99.0 +1989,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,19.4,16.7,84,101100,0,0,399,0,0,0,0,0,0,0,150,3.1,10,10,11.3,3050,9,999999999,290,0.1750,0,88,999.000,999.0,99.0 +1989,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,19.4,17.2,87,101000,0,0,400,0,0,0,0,0,0,0,170,2.1,10,10,11.3,2740,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,19.4,17.2,87,100900,0,0,400,0,0,0,0,0,0,0,160,3.1,10,10,11.3,2440,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,18.9,17.2,90,100900,0,0,397,0,0,0,0,0,0,0,160,2.6,10,10,9.7,2440,9,999999999,300,0.1750,0,88,999.000,999.0,99.0 +1989,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,18.3,17.8,97,100900,0,0,394,0,0,0,0,0,0,0,110,3.1,10,10,9.7,1830,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1989,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,18.9,17.8,93,100900,113,1303,398,19,0,19,2200,0,2200,690,140,2.6,10,10,9.7,1430,9,999999999,309,0.1210,0,88,999.000,999.0,99.0 +1989,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,20.6,18.3,87,100800,360,1336,396,88,32,79,9600,2800,8900,2150,160,3.1,10,9,12.9,1070,9,999999999,320,0.1210,0,88,999.000,999.0,99.0 +1989,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,17.8,76,100800,598,1336,385,283,204,191,30800,20500,21500,4600,180,3.6,10,6,12.9,7620,9,999999999,309,0.1210,0,88,999.000,999.0,99.0 +1989,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,25.6,19.4,69,100700,809,1336,405,296,150,204,32800,15800,23200,5540,250,5.7,9,6,12.9,7620,9,999999999,350,0.1210,0,88,999.000,999.0,99.0 +1989,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,26.7,19.4,65,100700,976,1336,405,625,518,244,66900,53900,27500,7290,230,5.2,8,4,12.9,77777,9,999999999,350,0.1210,0,88,999.000,999.0,99.0 +1989,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,28.9,19.4,57,100600,1089,1336,417,714,553,261,77300,57800,30100,9850,260,6.2,8,4,16.1,77777,9,999999999,350,0.1210,0,88,999.000,999.0,99.0 +1989,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,28.3,18.9,57,100500,1139,1336,453,210,6,204,25600,500,25200,10220,280,7.7,10,10,16.1,1220,9,999999999,329,0.1210,0,88,999.000,999.0,99.0 +1989,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,26.7,18.9,63,100500,1124,1336,422,642,314,376,69900,34100,41200,15020,290,6.2,9,8,16.1,3660,9,999999999,340,0.1210,0,88,999.000,999.0,99.0 +1989,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,28.9,18.9,55,100400,1045,1336,409,706,632,207,74200,64200,23900,6980,290,9.3,5,2,16.1,77777,9,999999999,329,0.1210,0,88,999.000,999.0,99.0 +1989,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,28.9,17.8,51,100400,906,1336,421,462,298,257,50100,32100,28300,6980,280,8.8,7,6,24.1,1430,9,999999999,309,0.1210,0,88,999.000,999.0,99.0 +1989,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,30.0,17.8,48,100400,718,1336,417,433,512,153,46200,51900,18200,3300,310,8.2,3,3,24.1,77777,9,999999999,309,0.1210,0,88,999.000,999.0,99.0 +1989,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,25.0,18.3,67,100500,493,1336,421,81,39,66,8900,3600,7600,2040,350,8.2,10,9,24.1,1400,9,999999999,320,0.1210,0,88,999.000,999.0,99.0 +1989,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,24.4,18.3,69,100600,247,1336,408,60,4,59,6700,100,6700,2060,340,6.7,8,8,24.1,1830,9,999999999,320,0.1210,0,88,999.000,999.0,99.0 +1989,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.9,17.2,66,100700,31,701,390,17,13,15,1700,700,1700,360,340,8.8,5,5,24.1,77777,9,999999999,300,0.1210,0,88,999.000,999.0,99.0 +1989,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.8,16.1,66,100800,0,0,373,0,0,0,0,0,0,0,340,9.3,3,2,24.1,77777,9,999999999,279,0.1750,0,88,999.000,999.0,99.0 +1989,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.1,16.1,73,100900,0,0,353,0,0,0,0,0,0,0,320,6.7,0,0,24.1,77777,9,999999999,279,0.1750,0,88,999.000,999.0,99.0 +1989,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,21.1,15.0,68,101000,0,0,376,0,0,0,0,0,0,0,330,7.7,6,6,24.1,1490,9,999999999,270,0.1750,0,88,999.000,999.0,99.0 +1989,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,19.4,14.4,73,101000,0,0,343,0,0,0,0,0,0,0,320,7.7,0,0,24.1,77777,9,999999999,259,0.1750,0,88,999.000,999.0,99.0 +1989,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,18.9,14.4,76,101100,0,0,341,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,259,0.1750,0,88,999.000,999.0,99.0 +1989,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,18.3,13.9,76,101100,0,0,337,0,0,0,0,0,0,0,330,6.7,0,0,24.1,77777,9,999999999,250,0.1740,0,88,999.000,999.0,99.0 +1989,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,17.8,13.9,78,101100,0,0,335,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,250,0.1740,0,88,999.000,999.0,99.0 +1989,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,13.3,78,101100,0,0,332,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,240,0.1740,0,88,999.000,999.0,99.0 +1989,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.2,13.3,78,101100,0,0,332,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,240,0.1740,0,88,999.000,999.0,99.0 +1989,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,17.2,13.3,78,101100,0,0,332,0,0,0,0,0,0,0,310,5.2,5,0,24.1,77777,9,999999999,240,0.1740,0,88,999.000,999.0,99.0 +1989,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,17.8,13.3,75,101200,109,1281,346,39,48,35,4300,2500,4000,730,300,7.2,7,2,24.1,77777,9,999999999,240,0.1400,0,88,999.000,999.0,99.0 +1989,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,13.3,68,101300,356,1337,353,176,337,85,18300,28600,10700,1570,300,7.2,6,2,24.1,77777,9,999999999,240,0.1400,0,88,999.000,999.0,99.0 +1989,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,21.1,13.3,61,101300,595,1337,357,357,559,107,37200,54100,13100,2170,310,5.7,3,1,24.1,77777,9,999999999,240,0.1400,0,88,999.000,999.0,99.0 +1989,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,22.8,13.3,55,101300,805,1337,365,544,684,130,57600,69100,15900,3130,300,6.2,1,1,24.1,77777,9,999999999,240,0.1400,0,88,999.000,999.0,99.0 +1989,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,24.4,12.2,47,101400,972,1337,372,674,724,144,72200,74300,18100,4360,310,6.2,1,1,24.1,77777,9,999999999,229,0.1400,0,88,999.000,999.0,99.0 +1989,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,24.4,8.9,37,101300,1085,1337,368,784,784,143,82800,79200,18300,5030,340,8.2,1,1,24.1,77777,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1989,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,25.6,9.4,36,101300,1136,1337,379,828,728,206,88100,74400,24700,8780,320,7.2,2,2,24.1,77777,9,999999999,189,0.1400,0,88,999.000,999.0,99.0 +1989,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,25.6,10.0,38,101200,1120,1337,384,820,706,224,86500,71800,26200,9070,300,7.2,3,3,24.1,77777,9,999999999,200,0.1400,0,88,999.000,999.0,99.0 +1989,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,25.6,10.0,38,101200,1041,1337,387,524,408,203,57600,42700,24300,6770,300,7.7,4,4,24.1,77777,9,999999999,200,0.1400,0,88,999.000,999.0,99.0 +1989,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,26.1,11.1,39,101200,901,1337,391,523,404,248,55200,41800,27000,6650,310,7.2,4,4,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1989,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,25.6,11.1,41,101200,713,1337,385,496,619,161,50700,60700,18300,3380,350,8.2,3,3,24.1,77777,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1989,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,25.0,10.6,40,101200,487,1337,373,289,554,84,29800,51500,11000,1630,330,8.2,3,1,24.1,77777,9,999999999,200,0.1400,0,88,999.000,999.0,99.0 +1989,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,23.3,10.0,43,101200,241,1337,357,113,332,51,11700,23700,7400,910,320,7.2,1,0,24.1,77777,9,999999999,200,0.1400,0,88,999.000,999.0,99.0 +1989,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,21.7,10.0,48,101300,28,657,349,17,25,14,1700,900,1600,290,350,7.2,0,0,24.1,77777,9,999999999,200,0.1400,0,88,999.000,999.0,99.0 +1989,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,19.4,8.3,49,101400,0,0,336,0,0,0,0,0,0,0,350,6.7,0,0,24.1,77777,9,999999999,179,0.1740,0,88,999.000,999.0,99.0 +1989,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,18.3,7.8,50,101500,0,0,331,0,0,0,0,0,0,0,350,6.7,0,0,24.1,77777,9,999999999,170,0.1740,0,88,999.000,999.0,99.0 +1989,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,17.2,7.2,52,101600,0,0,325,0,0,0,0,0,0,0,330,6.7,0,0,24.1,77777,9,999999999,170,0.1740,0,88,999.000,999.0,99.0 +1989,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,16.1,7.2,56,101600,0,0,320,0,0,0,0,0,0,0,350,6.2,0,0,24.1,77777,9,999999999,170,0.1740,0,88,999.000,999.0,99.0 +1989,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,15.0,7.2,60,101700,0,0,315,0,0,0,0,0,0,0,330,5.7,0,0,24.1,77777,9,999999999,170,0.1740,0,88,999.000,999.0,99.0 +1989,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,14.4,7.8,65,101700,0,0,313,0,0,0,0,0,0,0,330,5.7,0,0,24.1,77777,9,999999999,170,0.1730,0,88,999.000,999.0,99.0 +1989,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,13.9,7.8,67,101700,0,0,311,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,170,0.1730,0,88,999.000,999.0,99.0 +1989,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,13.9,7.8,67,101700,0,0,311,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,170,0.1730,0,88,999.000,999.0,99.0 +1989,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,13.3,7.8,69,101700,0,0,309,0,0,0,0,0,0,0,330,5.7,0,0,24.1,77777,9,999999999,170,0.1730,0,88,999.000,999.0,99.0 +1989,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,12.8,7.8,72,101800,0,0,306,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,170,0.1730,0,88,999.000,999.0,99.0 +1989,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,13.3,7.2,67,101800,105,1259,308,39,122,27,3900,5800,3400,480,330,6.2,0,0,24.1,77777,9,999999999,170,0.1370,0,88,999.000,999.0,99.0 +1989,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,14.4,6.1,58,101900,353,1337,318,172,388,69,18300,32800,9600,1250,320,5.2,2,1,32.2,77777,9,999999999,160,0.1370,0,88,999.000,999.0,99.0 +1989,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,16.1,5.0,48,101900,591,1337,318,368,617,93,38600,60000,12000,1920,340,6.2,1,0,32.2,77777,9,999999999,150,0.1370,0,88,999.000,999.0,99.0 +1989,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,17.2,2.8,38,101900,802,1337,320,563,746,113,58500,74100,13900,2540,300,7.2,0,0,32.2,77777,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,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,18.3,1.7,33,101900,969,1337,324,721,811,129,75700,81600,16400,3610,310,6.2,0,0,32.2,77777,9,999999999,120,0.1370,0,88,999.000,999.0,99.0 +1989,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,18.3,1.1,32,101800,1082,1337,323,824,840,140,87200,84900,18300,4910,320,7.7,0,0,32.2,77777,9,999999999,120,0.1370,0,88,999.000,999.0,99.0 +1989,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,18.9,2.2,33,101800,1132,1337,327,876,859,144,93000,87000,19200,5770,340,6.7,0,0,32.2,77777,9,999999999,120,0.1370,0,88,999.000,999.0,99.0 +1989,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,20.0,2.2,31,101700,1116,1337,332,862,855,142,91300,86600,18900,5450,300,6.2,0,0,32.2,77777,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,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,21.1,2.2,29,101600,1036,1337,337,786,832,136,82800,84000,17600,4300,300,6.2,0,0,32.2,77777,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,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,21.7,2.2,28,101600,897,1337,340,663,797,123,69000,79800,15400,3080,290,7.2,0,0,24.1,77777,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,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,21.7,2.8,29,101600,707,1337,347,423,496,157,45000,50200,18400,3360,300,6.7,3,1,24.1,77777,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,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,21.7,2.8,29,101600,481,1337,347,282,446,117,29200,41700,14200,2240,290,7.2,9,1,24.1,77777,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,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,20.6,3.9,34,101600,234,1337,343,108,234,65,11200,16300,8300,1240,320,6.2,8,1,24.1,77777,9,999999999,139,0.1370,0,88,999.000,999.0,99.0 +1989,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,19.4,2.8,33,101600,25,635,330,16,20,14,0,0,0,0,320,6.2,4,0,24.1,77777,9,999999999,129,0.1370,0,88,999.000,999.0,99.0 +1989,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,18.9,5.6,42,101600,0,0,331,0,0,0,0,0,0,0,310,6.7,0,0,24.1,77777,9,999999999,150,0.1730,0,88,999.000,999.0,99.0 +1989,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,5.6,46,101600,0,0,323,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,150,0.1730,0,88,999.000,999.0,99.0 +1989,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,3.3,41,101600,0,0,319,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,129,0.1730,0,88,999.000,999.0,99.0 +1989,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,16.7,3.9,43,101600,0,0,319,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,139,0.1730,0,88,999.000,999.0,99.0 +1989,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,15.6,4.4,48,101600,0,0,315,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,139,0.1730,0,88,999.000,999.0,99.0 +1989,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,15.6,4.4,48,101600,0,0,341,0,0,0,0,0,0,0,320,5.2,7,7,24.1,3660,9,999999999,139,0.1720,0,88,999.000,999.0,99.0 +1989,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,16.1,5.0,48,101600,0,0,367,0,0,0,0,0,0,0,310,5.2,10,10,24.1,3050,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1989,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,5.0,48,101600,0,0,367,0,0,0,0,0,0,0,310,5.2,10,10,24.1,3050,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1989,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,16.1,5.0,48,101600,0,0,367,0,0,0,0,0,0,0,310,5.7,10,10,24.1,3050,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1989,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,15.6,5.6,52,101600,0,0,347,0,0,0,0,0,0,0,300,4.6,8,8,24.1,3050,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1989,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,5.6,52,101600,101,1238,342,22,13,21,2400,800,2400,530,300,5.2,7,7,24.1,3050,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1989,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,16.7,5.6,48,101600,349,1338,332,171,271,100,18000,23100,12000,1970,330,5.7,7,2,24.1,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1989,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,17.8,6.1,47,101700,588,1338,341,319,337,170,34000,34100,19000,3640,320,5.7,7,3,24.1,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1989,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,19.4,5.6,40,101600,798,1338,344,519,542,193,55200,55600,22000,4520,320,6.2,4,2,24.1,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1989,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,20.0,6.1,41,101600,966,1338,343,669,673,180,70500,68300,21100,5250,300,4.6,5,1,24.1,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1989,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,20.0,5.0,38,101500,1078,1338,346,767,667,226,80600,67600,25900,8150,310,7.2,6,2,24.1,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1989,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,21.7,5.6,35,101500,1128,1338,350,815,746,182,87400,76600,22600,7640,300,6.2,3,1,24.1,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1989,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,22.2,5.0,33,101500,1112,1338,352,828,788,168,86200,79100,20200,6100,300,7.7,1,1,24.1,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1989,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,22.8,4.4,30,101400,1032,1338,348,769,783,160,79500,78400,18900,4760,320,7.7,0,0,24.1,77777,9,999999999,139,0.1780,0,88,999.000,999.0,99.0 +1989,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,23.3,6.7,34,101400,892,1338,353,644,724,156,67700,73400,18700,4110,310,6.2,2,0,24.1,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1989,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,23.3,4.4,29,101400,702,1338,350,474,657,124,49200,65100,15000,2690,340,6.7,1,0,32.2,77777,9,999999999,139,0.1780,0,88,999.000,999.0,99.0 +1989,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,22.2,6.1,35,101400,475,1338,353,266,468,96,28100,43700,12600,1800,270,6.7,2,1,32.2,77777,9,999999999,160,0.1780,0,88,999.000,999.0,99.0 +1989,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,21.7,5.6,35,101500,228,1338,350,91,206,54,9300,14300,6900,980,310,7.2,3,1,32.2,77777,9,999999999,150,0.1780,0,88,999.000,999.0,99.0 +1989,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,20.0,2.8,32,101600,22,591,339,10,7,9,0,0,0,0,330,6.7,3,1,32.2,77777,9,999999999,129,0.1780,0,88,999.000,999.0,99.0 +1989,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,18.3,3.3,37,101600,0,0,332,0,0,0,0,0,0,0,350,6.2,4,1,24.1,77777,9,999999999,129,0.1720,0,88,999.000,999.0,99.0 +1989,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,17.8,2.8,37,101700,0,0,329,0,0,0,0,0,0,0,350,7.2,3,1,24.1,77777,9,999999999,129,0.1720,0,88,999.000,999.0,99.0 +1989,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,16.1,3.3,43,101700,0,0,316,0,0,0,0,0,0,0,350,6.2,0,0,24.1,77777,9,999999999,129,0.1720,0,88,999.000,999.0,99.0 +1989,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,15.6,3.3,44,101800,0,0,314,0,0,0,0,0,0,0,340,6.2,0,0,24.1,77777,9,999999999,129,0.1720,0,88,999.000,999.0,99.0 +1989,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,14.4,3.9,49,101800,0,0,309,0,0,0,0,0,0,0,350,5.7,0,0,24.1,77777,9,999999999,139,0.1720,0,88,999.000,999.0,99.0 +1989,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,13.9,4.4,53,101800,0,0,308,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1989,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,13.3,4.4,55,101800,0,0,305,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1989,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,13.3,5.0,57,101800,0,0,306,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,150,0.1710,0,88,999.000,999.0,99.0 +1989,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,12.8,4.4,57,101800,0,0,303,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,139,0.1710,0,88,999.000,999.0,99.0 +1989,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,12.2,5.0,62,101800,0,0,301,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,150,0.1710,0,88,999.000,999.0,99.0 +1989,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,13.3,5.0,57,101900,97,1216,306,34,61,28,3600,3100,3400,580,310,4.1,0,0,24.1,77777,9,999999999,150,0.1940,0,88,999.000,999.0,99.0 +1989,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,15.0,5.6,54,102000,345,1338,314,171,376,73,18000,31500,9900,1330,340,5.2,0,0,24.1,77777,9,999999999,150,0.1940,0,88,999.000,999.0,99.0 +1989,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,17.8,6.7,48,102000,584,1338,327,363,575,110,37600,55300,13400,2190,330,4.1,0,0,24.1,77777,9,999999999,160,0.1940,0,88,999.000,999.0,99.0 +1989,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,18.9,6.1,43,102000,795,1338,332,549,685,139,57600,68800,16700,3280,290,3.6,0,0,24.1,77777,9,999999999,160,0.1940,0,88,999.000,999.0,99.0 +1989,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,20.0,6.1,41,102000,962,1338,343,653,663,173,69000,67400,20400,5040,260,4.1,3,1,24.1,77777,9,999999999,160,0.1940,0,88,999.000,999.0,99.0 +1989,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,21.1,5.6,36,102000,1075,1338,348,765,673,221,80400,68300,25500,7910,250,4.1,5,1,24.1,77777,9,999999999,150,0.1940,0,88,999.000,999.0,99.0 +1989,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,20.6,8.9,47,102000,1125,1338,349,830,722,218,87700,73500,25700,8910,90,6.2,7,1,24.1,77777,9,999999999,189,0.1940,0,88,999.000,999.0,99.0 +1989,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,20.0,9.4,51,101900,1108,1338,347,810,680,242,84800,68800,27700,9360,110,5.2,7,1,24.1,77777,9,999999999,189,0.1940,0,88,999.000,999.0,99.0 +1989,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,20.6,8.9,47,101900,1027,1338,357,726,575,281,77100,59900,31100,9270,110,5.7,9,3,24.1,77777,9,999999999,189,0.1940,0,88,999.000,999.0,99.0 +1989,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,20.6,8.3,46,101900,887,1338,360,558,460,249,58600,47500,27000,6550,110,6.7,10,4,24.1,77777,9,999999999,179,0.1940,0,88,999.000,999.0,99.0 +1989,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,20.0,7.2,44,101900,696,1338,361,419,368,225,44500,38400,24500,5230,110,6.2,10,6,24.1,7620,9,999999999,170,0.1940,0,88,999.000,999.0,99.0 +1989,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,19.4,11.7,61,101900,469,1338,368,199,124,155,21500,11800,17300,3540,130,5.7,10,7,24.1,7620,9,999999999,220,0.1940,0,88,999.000,999.0,99.0 +1989,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,18.3,11.1,63,101900,222,1338,354,90,35,84,9800,2700,9300,1870,140,6.7,10,5,24.1,77777,9,999999999,209,0.1940,0,88,999.000,999.0,99.0 +1989,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,17.2,11.7,70,102000,19,547,347,11,1,11,0,0,0,0,150,5.2,9,4,24.1,77777,9,999999999,220,0.1940,0,88,999.000,999.0,99.0 +1989,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,17.2,11.7,70,102000,0,0,347,0,0,0,0,0,0,0,170,5.2,8,4,24.1,77777,9,999999999,220,0.1710,0,88,999.000,999.0,99.0 +1989,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,17.8,10.6,63,102000,0,0,364,0,0,0,0,0,0,0,200,5.7,10,8,24.1,7620,9,999999999,209,0.1710,0,88,999.000,999.0,99.0 +1989,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,17.2,10.0,63,102000,0,0,368,0,0,0,0,0,0,0,210,4.6,10,9,24.1,3960,9,999999999,200,0.1710,0,88,999.000,999.0,99.0 +1989,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,17.2,10.0,63,102000,0,0,379,0,0,0,0,0,0,0,210,4.6,10,10,24.1,3960,9,999999999,200,0.1710,0,88,999.000,999.0,99.0 +1989,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,17.2,10.0,63,102000,0,0,379,0,0,0,0,0,0,0,230,5.2,10,10,24.1,3960,9,999999999,200,0.1710,0,88,999.000,999.0,99.0 +1989,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,17.2,10.6,65,102000,0,0,379,0,0,0,0,0,0,0,240,5.7,10,10,24.1,3960,9,999999999,209,0.1710,0,88,999.000,999.0,99.0 +1989,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,16.7,10.6,67,102000,0,0,359,0,0,0,0,0,0,0,240,4.1,8,8,24.1,3960,9,999999999,209,0.1710,0,88,999.000,999.0,99.0 +1989,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,16.7,11.1,70,102000,0,0,359,0,0,0,0,0,0,0,230,4.1,10,8,24.1,3960,9,999999999,209,0.1710,0,88,999.000,999.0,99.0 +1989,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,16.1,12.2,78,102000,0,0,376,0,0,0,0,0,0,0,240,5.2,10,10,24.1,2440,9,999999999,229,0.1710,0,88,999.000,999.0,99.0 +1989,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,16.1,12.2,78,102100,0,0,376,0,0,0,0,0,0,0,200,3.6,10,10,24.1,3350,9,999999999,229,0.1710,0,88,999.000,999.0,99.0 +1989,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,15.6,12.2,81,102100,94,1194,343,30,39,26,3200,2000,3100,540,240,3.1,5,5,24.1,77777,9,999999999,229,0.1410,0,88,999.000,999.0,99.0 +1989,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,17.2,12.8,75,102100,341,1339,354,116,83,94,12600,7200,10700,2060,170,3.1,7,6,24.1,3350,9,999999999,229,0.1410,0,88,999.000,999.0,99.0 +1989,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,18.9,12.8,68,102100,581,1339,380,192,46,172,21100,4500,19100,4970,250,5.2,10,9,24.1,3350,9,999999999,240,0.1410,0,88,999.000,999.0,99.0 +1989,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,20.0,13.9,68,101900,791,1339,379,338,149,249,36900,15600,27700,6670,170,3.6,9,8,24.1,3660,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1989,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,21.7,12.8,57,102100,959,1339,387,440,144,336,48000,15200,37100,10420,210,5.2,9,8,24.1,4270,9,999999999,240,0.1410,0,88,999.000,999.0,99.0 +1989,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,23.3,13.3,54,102100,1071,1339,390,840,605,352,87800,62900,37400,12940,210,3.6,9,7,24.1,4270,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1989,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,23.3,14.4,58,102000,1121,1339,397,598,279,363,65300,30300,39900,14240,130,4.6,9,8,24.1,1370,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1989,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,23.3,15.6,62,102000,1104,1339,388,762,613,252,79500,61900,28400,9580,130,6.2,7,6,24.1,4270,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1989,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,21.7,15.6,68,102100,1023,1339,399,482,123,387,52500,13000,42500,12960,130,5.7,10,9,24.1,1430,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1989,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,21.7,15.6,68,102000,881,1339,399,358,76,308,39400,7800,34300,10360,130,5.7,9,9,24.1,1190,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1989,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,23.9,14.4,56,102000,691,1339,377,448,532,170,47200,53500,19500,3630,190,6.2,7,2,24.1,77777,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1989,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,22.2,14.4,62,102000,463,1339,368,267,434,113,27600,40100,13700,2150,210,6.2,9,2,24.1,77777,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1989,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,21.1,14.4,66,102000,215,1339,366,93,89,78,9900,6200,8900,1660,200,7.2,9,3,24.1,77777,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1989,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,20.0,13.3,66,102100,17,524,351,10,10,8,0,0,0,0,200,5.7,4,1,24.1,77777,9,999999999,240,0.1410,0,88,999.000,999.0,99.0 +1989,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,18.9,12.2,65,102100,0,0,353,0,0,0,0,0,0,0,210,5.2,8,3,24.1,77777,9,999999999,229,0.1710,0,88,999.000,999.0,99.0 +1989,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,18.3,11.7,65,102100,0,0,352,0,0,0,0,0,0,0,200,4.6,10,4,24.1,77777,9,999999999,220,0.1710,0,88,999.000,999.0,99.0 +1989,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,17.8,11.7,68,102100,0,0,356,0,0,0,0,0,0,0,200,4.6,10,6,24.1,7620,9,999999999,220,0.1710,0,88,999.000,999.0,99.0 +1989,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,17.2,11.7,70,102100,0,0,353,0,0,0,0,0,0,0,210,4.1,10,6,11.3,7620,9,999999999,220,0.1710,0,88,999.000,999.0,99.0 +1989,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,17.2,11.7,70,102100,0,0,350,0,0,0,0,0,0,0,210,3.1,10,5,11.3,77777,9,999999999,220,0.1710,0,88,999.000,999.0,99.0 +1989,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,16.7,11.7,73,102000,0,0,347,0,0,0,0,0,0,0,250,2.6,10,5,11.3,77777,9,999999999,220,0.1700,0,88,999.000,999.0,99.0 +1989,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,16.1,12.2,78,102000,0,0,352,0,0,0,0,0,0,0,150,2.6,10,7,11.3,7620,9,999999999,229,0.1700,0,88,999.000,999.0,99.0 +1989,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,16.1,12.8,81,102000,0,0,358,0,0,0,0,0,0,0,160,2.1,10,8,11.3,6710,9,999999999,240,0.1700,0,88,999.000,999.0,99.0 +1989,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,16.7,12.2,75,102000,0,0,379,0,0,0,0,0,0,0,130,1.5,10,10,11.3,880,9,999999999,229,0.1700,0,88,999.000,999.0,99.0 +1989,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,16.1,14.4,90,101900,0,0,378,0,0,0,0,0,0,0,110,4.1,10,10,11.3,6710,9,999999999,259,0.1700,0,88,999.000,999.0,99.0 +1989,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.1,14.4,90,101900,90,1172,378,20,6,19,2100,400,2100,480,110,4.1,10,10,11.3,6710,9,999999999,259,0.1120,0,88,999.000,999.0,99.0 +1989,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,17.2,15.0,87,101900,337,1340,385,55,3,54,6400,100,6400,2160,140,3.1,10,10,19.3,820,9,999999999,270,0.1120,0,88,999.000,999.0,99.0 +1989,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,17.8,15.0,84,101900,577,1340,388,151,10,147,17300,700,17000,5890,230,2.1,10,10,19.3,2440,9,999999999,270,0.1120,0,88,999.000,999.0,99.0 +1989,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,19.4,15.6,78,101900,788,1340,398,300,5,297,33800,500,33500,11310,80,2.6,10,10,19.3,820,9,999999999,279,0.1120,0,88,999.000,999.0,99.0 +1989,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,20.0,16.1,78,101900,955,1340,401,271,7,265,31500,600,31100,11850,70,3.1,10,10,19.3,880,9,999999999,290,0.1120,0,88,999.000,999.0,99.0 +1989,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,19.4,17.2,87,101800,1067,1340,400,315,3,312,36900,300,36700,14020,90,4.1,10,10,19.3,3660,9,999999999,300,0.1120,0,88,999.000,999.0,99.0 +1989,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,21.1,17.2,79,101800,1117,1340,409,368,4,365,43000,400,42700,15870,100,4.1,10,10,19.3,3660,9,999999999,309,0.1120,0,88,999.000,999.0,99.0 +1989,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,21.1,17.2,79,101700,1100,1340,409,379,0,379,44000,0,44000,16170,80,4.6,10,10,19.3,3660,9,999999999,309,0.1120,0,88,999.000,999.0,99.0 +1989,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,20.0,17.8,87,101600,1018,1340,404,339,2,338,39300,200,39100,14480,90,3.6,10,10,19.3,700,9,999999999,320,0.1120,0,88,999.000,999.0,99.0 +1989,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,21.1,18.9,87,101500,876,1340,411,185,1,185,22000,100,22000,8640,170,4.1,10,10,16.1,820,9,999999999,340,0.1120,0,88,999.000,999.0,99.0 +1989,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,21.1,18.9,87,101400,685,1340,411,244,1,243,27300,100,27300,9100,170,5.7,10,10,11.3,910,9,999999999,340,0.1120,0,88,999.000,999.0,99.0 +1989,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,21.7,18.9,84,101400,457,1340,414,134,0,134,15000,0,15000,4860,160,5.2,10,10,11.3,850,9,999999999,340,0.1120,0,88,999.000,999.0,99.0 +1989,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,21.1,19.4,90,101300,208,1340,412,52,0,52,5800,0,5800,1760,180,4.1,10,10,11.3,460,9,999999999,350,0.1120,0,88,999.000,999.0,99.0 +1989,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,21.1,19.4,90,101300,15,480,412,8,0,8,0,0,0,0,190,3.6,10,10,6.4,310,9,999999999,350,0.1120,0,88,999.000,999.0,99.0 +1989,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,20.0,18.9,93,101300,0,0,405,0,0,0,0,0,0,0,140,3.6,10,10,6.4,240,9,999999999,329,0.1700,0,88,999.000,999.0,99.0 +1989,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,19.4,19.4,100,101200,0,0,402,0,0,0,0,0,0,0,130,3.1,10,10,3.2,240,9,999999999,350,0.1700,0,88,999.000,999.0,99.0 +1989,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,19.4,19.4,100,101200,0,0,402,0,0,0,0,0,0,0,100,3.6,10,10,1.6,240,9,999999999,350,0.1700,0,88,999.000,999.0,99.0 +1989,8,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,101100,0,0,406,0,0,0,0,0,0,0,50,3.1,10,10,1.6,150,9,999999999,359,0.1700,0,88,999.000,999.0,99.0 +1989,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,18.9,100,101000,0,0,399,0,0,0,0,0,0,0,80,4.6,10,10,0.8,90,9,999999999,329,0.1700,0,88,999.000,999.0,99.0 +1989,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,19.4,19.4,100,100800,0,0,402,0,0,0,0,0,0,0,90,4.6,10,10,1.6,90,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1989,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,19.4,19.4,100,100700,0,0,402,0,0,0,0,0,0,0,70,4.6,10,10,1.6,90,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1989,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,19.4,19.4,100,100600,0,0,402,0,0,0,0,0,0,0,10,4.1,10,10,0.8,60,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1989,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,19.4,19.4,100,100600,0,0,402,0,0,0,0,0,0,0,320,6.2,10,10,0.8,60,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1989,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,18.9,18.9,100,100600,0,0,399,0,0,0,0,0,0,0,330,5.2,10,10,2.4,60,9,999999999,329,0.1690,0,88,999.000,999.0,99.0 +1989,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,18.9,18.3,97,100700,87,1150,398,23,0,23,2600,0,2600,790,340,4.6,10,10,3.2,210,9,999999999,320,0.1360,0,88,999.000,999.0,99.0 +1989,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,100600,333,1340,394,107,26,100,11700,2300,11100,2520,340,4.6,10,9,3.2,210,9,999999999,329,0.1360,0,88,999.000,999.0,99.0 +1989,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.7,18.9,84,100600,573,1340,378,298,300,169,31700,30100,18800,3610,280,3.1,8,4,4.8,77777,9,999999999,329,0.1360,0,88,999.000,999.0,99.0 +1989,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,23.9,19.4,76,100600,784,1340,387,419,361,206,45500,38300,23000,4900,250,2.6,7,3,4.8,77777,9,999999999,340,0.1360,0,88,999.000,999.0,99.0 +1989,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,20.6,76,100500,952,1340,385,644,685,154,68400,69900,18700,4450,220,4.1,4,1,6.4,77777,9,999999999,370,0.1360,0,88,999.000,999.0,99.0 +1989,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,27.2,21.1,69,100400,1064,1340,406,560,311,311,61300,33700,34500,10670,230,6.7,9,3,6.4,77777,9,999999999,379,0.1360,0,88,999.000,999.0,99.0 +1989,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,28.9,21.7,65,100400,1113,1340,426,702,488,293,75200,51000,32700,11740,250,8.2,9,6,6.4,3660,9,999999999,390,0.1360,0,88,999.000,999.0,99.0 +1989,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,29.4,19.4,55,100300,1095,1340,419,802,679,242,83800,68600,27600,9000,290,9.3,4,4,9.7,77777,9,999999999,340,0.1360,0,88,999.000,999.0,99.0 +1989,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,30.0,19.4,53,100300,1013,1340,430,673,473,311,70500,49100,33300,10050,270,8.8,8,6,9.7,3660,9,999999999,340,0.1360,0,88,999.000,999.0,99.0 +1989,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,16.1,45,100200,871,1340,412,588,649,161,61500,65500,18800,4100,280,7.7,3,3,12.9,77777,9,999999999,279,0.1360,0,88,999.000,999.0,99.0 +1989,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,28.9,17.8,51,100200,679,1340,394,435,652,100,45800,64800,12800,2190,260,8.8,0,0,24.1,77777,9,999999999,309,0.1360,0,88,999.000,999.0,99.0 +1989,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,28.9,13.3,38,100300,451,1340,389,266,560,74,27400,51200,10200,1430,290,8.8,0,0,24.1,77777,9,999999999,240,0.1360,0,88,999.000,999.0,99.0 +1989,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,27.2,13.3,42,100400,202,1340,380,90,291,44,9200,18900,6400,780,290,9.8,0,0,24.1,77777,9,999999999,240,0.1360,0,88,999.000,999.0,99.0 +1989,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,25.0,12.8,47,100400,12,436,368,10,11,8,0,0,0,0,280,7.7,0,0,24.1,77777,9,999999999,229,0.1360,0,88,999.000,999.0,99.0 +1989,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,23.9,12.8,50,100500,0,0,363,0,0,0,0,0,0,0,280,8.2,0,0,24.1,77777,9,999999999,229,0.1690,0,88,999.000,999.0,99.0 +1989,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,22.8,12.2,52,100600,0,0,357,0,0,0,0,0,0,0,290,7.2,0,0,24.1,77777,9,999999999,229,0.1690,0,88,999.000,999.0,99.0 +1989,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.2,12.8,55,100700,0,0,355,0,0,0,0,0,0,0,280,7.7,0,0,24.1,77777,9,999999999,229,0.1690,0,88,999.000,999.0,99.0 +1989,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,21.7,12.8,57,100700,0,0,352,0,0,0,0,0,0,0,270,7.2,0,0,24.1,77777,9,999999999,229,0.1690,0,88,999.000,999.0,99.0 +1989,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,20.6,12.8,61,100800,0,0,347,0,0,0,0,0,0,0,270,6.7,0,0,24.1,77777,9,999999999,229,0.1690,0,88,999.000,999.0,99.0 +1989,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,20.0,12.8,63,100800,0,0,344,0,0,0,0,0,0,0,300,6.2,0,0,24.1,77777,9,999999999,229,0.1680,0,88,999.000,999.0,99.0 +1989,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,18.9,12.8,68,100900,0,0,339,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,229,0.1680,0,88,999.000,999.0,99.0 +1989,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,18.3,12.8,70,100900,0,0,336,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,229,0.1680,0,88,999.000,999.0,99.0 +1989,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,17.8,13.3,75,101000,0,0,335,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,240,0.1680,0,88,999.000,999.0,99.0 +1989,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,17.2,12.8,75,101000,0,0,331,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,229,0.1680,0,88,999.000,999.0,99.0 +1989,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,17.8,12.2,70,101100,83,1129,333,31,47,26,3300,2300,3100,540,280,4.6,0,0,24.1,77777,9,999999999,229,0.1950,0,88,999.000,999.0,99.0 +1989,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,18.9,12.2,65,101100,329,1341,338,158,355,70,16600,29200,9500,1270,290,5.2,0,0,24.1,77777,9,999999999,220,0.1950,0,88,999.000,999.0,99.0 +1989,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,20.0,11.1,57,101200,570,1341,342,348,561,108,36000,53600,13200,2130,320,8.2,0,0,24.1,77777,9,999999999,209,0.1950,0,88,999.000,999.0,99.0 +1989,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,9.4,47,101200,781,1341,345,534,675,138,56000,67700,16500,3200,300,9.3,0,0,24.1,77777,9,999999999,189,0.1950,0,88,999.000,999.0,99.0 +1989,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,21.7,8.9,44,101200,948,1341,354,645,679,161,68300,69200,19300,4600,320,8.8,2,1,24.1,77777,9,999999999,189,0.1950,0,88,999.000,999.0,99.0 +1989,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,8.3,40,101200,1060,1341,359,742,710,177,79100,72700,21500,6220,330,10.3,2,1,24.1,77777,9,999999999,179,0.1950,0,88,999.000,999.0,99.0 +1989,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,8.3,37,101200,1109,1341,369,793,700,210,83900,71400,24800,8200,310,9.3,3,2,24.1,77777,9,999999999,179,0.1950,0,88,999.000,999.0,99.0 +1989,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,8.9,37,101200,1091,1341,373,752,679,194,79700,69400,23100,7290,310,8.2,3,2,24.1,77777,9,999999999,179,0.1950,0,88,999.000,999.0,99.0 +1989,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,25.0,9.4,37,101200,1008,1341,371,704,703,171,74700,71800,20600,5410,300,9.3,3,1,24.1,77777,9,999999999,189,0.1950,0,88,999.000,999.0,99.0 +1989,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.0,8.3,35,101200,866,1341,379,451,359,217,47900,37000,24000,5490,320,9.8,4,3,24.1,77777,9,999999999,179,0.1950,0,88,999.000,999.0,99.0 +1989,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,25.0,7.8,33,101200,673,1341,369,412,536,139,44100,53900,17000,2880,300,9.3,4,1,24.1,77777,9,999999999,170,0.1950,0,88,999.000,999.0,99.0 +1989,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,24.4,8.3,36,101200,444,1341,360,252,450,100,26400,41100,12700,1870,310,8.8,3,0,24.1,77777,9,999999999,179,0.1950,0,88,999.000,999.0,99.0 +1989,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,23.3,8.9,40,101300,195,1341,362,69,145,46,7100,9000,5800,840,300,8.2,4,1,24.1,77777,9,999999999,189,0.1950,0,88,999.000,999.0,99.0 +1989,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,9.4,44,101400,10,413,357,5,2,5,0,0,0,0,310,5.2,3,1,24.1,77777,9,999999999,189,0.1950,0,88,999.000,999.0,99.0 +1989,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,10.0,46,101500,0,0,351,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,200,0.1680,0,88,999.000,999.0,99.0 +1989,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,18.9,12.2,65,101500,0,0,338,0,0,0,0,0,0,0,120,2.6,0,0,24.1,77777,9,999999999,229,0.1680,0,88,999.000,999.0,99.0 +1989,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,18.2,12.2,68,101500,0,0,335,0,0,0,0,0,0,0,180,2.8,0,0,24.1,77777,9,999999999,240,0.1680,0,88,999.000,999.0,99.0 +1989,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,17.5,12.2,70,101600,0,0,332,0,0,0,0,0,0,0,150,3.0,0,0,24.1,77777,9,999999999,229,0.1680,0,88,999.000,999.0,99.0 +1989,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,16.8,12.2,81,101500,0,0,329,0,0,0,0,0,0,0,200,3.2,2,0,24.1,77777,9,999999999,240,0.1680,0,88,999.000,999.0,99.0 +1976,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,16.0,12.2,72,101900,0,0,325,0,0,0,0,0,0,0,230,3.5,0,0,24.1,77777,9,999999999,189,0.1690,0,88,999.000,999.0,99.0 +1976,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,15.3,12.2,75,101800,0,0,322,0,0,0,0,0,0,0,230,3.7,0,0,24.1,77777,9,999999999,189,0.1690,0,88,999.000,999.0,99.0 +1976,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,14.6,12.2,78,101900,0,0,319,0,0,0,0,0,0,0,240,3.9,0,0,24.1,77777,9,999999999,200,0.1690,0,88,999.000,999.0,99.0 +1976,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,13.9,12.2,90,101900,0,0,316,0,0,0,0,0,0,0,240,4.1,1,0,19.3,77777,9,999999999,229,0.1690,0,88,999.000,999.0,99.0 +1976,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,14.4,12.8,90,101900,0,0,325,0,0,0,0,0,0,0,240,5.2,4,1,17.7,77777,9,999999999,229,0.1690,0,88,999.000,999.0,99.0 +1976,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,15.6,13.9,90,101900,80,1107,339,30,67,24,3100,2700,2900,420,220,5.2,7,3,16.1,77777,9,999999999,250,0.0690,0,88,999.000,999.0,99.0 +1976,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,16.7,14.4,87,101800,325,1342,342,151,269,86,16000,22200,10700,1650,210,5.2,8,2,16.1,77777,9,999999999,259,0.0690,0,88,999.000,999.0,99.0 +1976,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,19.4,15.0,76,101800,566,1342,350,344,616,83,36300,59500,11100,1700,220,7.2,6,1,16.1,77777,9,999999999,270,0.0690,0,88,999.000,999.0,99.0 +1976,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.7,14.4,64,101800,777,1342,361,504,693,102,52800,68900,12900,2310,220,6.7,8,1,19.3,77777,9,999999999,259,0.0690,0,88,999.000,999.0,99.0 +1976,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,23.3,13.3,54,101800,944,1342,361,704,829,118,74500,83500,15600,3230,220,7.7,5,0,19.3,77777,9,999999999,240,0.0690,0,88,999.000,999.0,99.0 +1976,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,24.4,12.8,48,101700,1056,1342,372,755,759,156,78900,76200,18800,4920,250,10.3,7,1,19.3,77777,9,999999999,229,0.0690,0,88,999.000,999.0,99.0 +1976,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,25.0,12.8,47,101700,1104,1342,380,791,731,187,84500,74900,22800,7270,240,9.3,10,2,19.3,77777,9,999999999,240,0.0690,0,88,999.000,999.0,99.0 +1976,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.6,13.3,47,101600,1086,1342,379,761,719,176,81500,73800,21600,6570,220,10.3,10,1,19.3,77777,9,999999999,240,0.0690,0,88,999.000,999.0,99.0 +1976,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,26.1,13.9,47,101600,1003,1342,382,719,720,178,76200,73400,21200,5540,230,10.3,7,1,19.3,77777,9,999999999,250,0.0690,0,88,999.000,999.0,99.0 +1976,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,25.0,14.4,52,101500,860,1342,400,409,258,242,44400,27600,26600,6230,230,9.3,10,7,24.1,7620,9,999999999,259,0.0690,0,88,999.000,999.0,99.0 +1976,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,25.0,15.6,56,101500,667,1342,417,218,70,182,23900,6900,20400,5600,220,9.3,10,9,24.1,7620,9,999999999,279,0.0690,0,88,999.000,999.0,99.0 +1976,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,23.9,15.6,60,101500,437,1342,411,178,54,160,19400,5100,17800,4040,220,9.3,10,9,24.1,7620,9,999999999,279,0.0690,0,88,999.000,999.0,99.0 +1976,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,22.2,17.8,76,101500,187,1342,416,27,7,26,3000,500,2900,690,220,8.2,10,10,20.9,7620,9,999999999,309,0.0690,0,88,999.000,999.0,99.0 +1976,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,22.2,17.2,73,101500,8,369,415,3,2,3,0,0,0,0,210,7.7,10,10,20.9,7620,9,999999999,300,0.0690,0,88,999.000,999.0,99.0 +1976,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,21.7,17.2,76,101600,0,0,412,0,0,0,0,0,0,0,220,7.7,10,10,19.3,7620,9,999999999,309,0.1690,0,88,999.000,999.0,99.0 +1976,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,21.1,17.2,79,101600,0,0,409,0,0,0,0,0,0,0,230,7.7,10,10,19.3,7620,9,999999999,309,0.1690,0,88,999.000,999.0,99.0 +1976,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,20.6,17.8,84,101600,0,0,407,0,0,0,0,0,0,0,220,7.2,10,10,19.3,7620,9,999999999,320,0.1690,0,88,999.000,999.0,99.0 +1976,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,20.0,17.8,87,101600,0,0,404,0,0,0,0,0,0,0,240,7.2,10,10,19.3,7620,9,999999999,320,0.1690,0,88,999.000,999.0,99.0 +1976,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,20.0,17.8,87,101600,0,0,404,0,0,0,0,0,0,0,230,6.7,10,10,16.1,1520,9,999999999,320,0.1690,0,88,999.000,999.0,99.0 +1976,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,101600,0,0,404,0,0,0,0,0,0,0,220,4.6,10,10,16.1,1520,9,999999999,309,0.1680,0,88,999.000,999.0,99.0 +1976,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.6,17.8,84,101600,0,0,407,0,0,0,0,0,0,0,210,5.7,10,10,16.1,1520,9,999999999,320,0.1680,0,88,999.000,999.0,99.0 +1976,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,18.3,90,101600,0,0,404,0,0,0,0,0,0,0,230,3.6,10,10,14.5,1520,9,999999999,329,0.1680,0,88,999.000,999.0,99.0 +1976,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.0,18.3,90,101700,0,0,404,0,0,0,0,0,0,0,240,4.1,10,10,11.3,1310,9,999999999,329,0.1680,0,88,999.000,999.0,99.0 +1976,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,19.4,18.9,97,101700,0,0,402,0,0,0,0,0,0,0,270,2.6,10,10,4.8,270,9,999999999,340,0.1680,0,88,999.000,999.0,99.0 +1976,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,18.9,17.8,93,101800,76,1086,398,10,1,10,1200,0,1200,390,360,5.2,10,10,8.0,310,9,999999999,320,0.1400,0,88,999.000,999.0,99.0 +1976,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,18.9,17.8,93,101800,321,1343,398,34,3,34,4200,100,4200,1430,360,5.2,10,10,8.0,310,9,999999999,320,0.1400,0,88,999.000,999.0,99.0 +1976,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,16.7,15.0,90,101900,562,1343,382,90,0,90,10700,0,10700,3960,10,5.7,10,10,8.0,610,9,999999999,270,0.1400,0,88,999.000,999.0,99.0 +1976,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,17.2,16.1,93,101900,773,1343,386,147,1,146,17400,100,17400,6740,360,3.6,10,10,8.0,310,9,999999999,290,0.1400,0,88,999.000,999.0,99.0 +1976,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,16.7,16.1,97,102000,940,1343,384,207,5,203,24600,400,24300,9590,40,5.2,10,10,8.0,580,9,999999999,290,0.1400,0,88,999.000,999.0,99.0 +1976,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,16.1,15.6,97,102000,1052,1343,380,238,3,236,28500,200,28300,11290,40,5.7,10,10,9.7,520,9,999999999,279,0.1400,0,88,999.000,999.0,99.0 +1976,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,16.1,15.6,97,102000,1100,1343,380,206,3,203,25000,200,24800,10110,50,5.7,10,10,8.0,370,9,999999999,279,0.1400,0,88,999.000,999.0,99.0 +1976,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,15.0,15.0,100,102000,1082,1343,373,241,2,240,29000,200,28800,11540,50,5.7,10,10,4.8,240,9,999999999,270,0.1400,0,88,999.000,999.0,99.0 +1976,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,15.0,14.4,97,102000,998,1343,373,198,1,198,23900,100,23800,9630,50,7.2,10,10,8.0,240,9,999999999,259,0.1400,0,88,999.000,999.0,99.0 +1976,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,14.4,14.4,100,102100,854,1343,370,167,1,166,19900,100,19800,7820,50,4.6,10,10,9.7,610,9,999999999,259,0.1400,0,88,999.000,999.0,99.0 +1976,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,15.0,14.4,97,102100,661,1343,373,122,0,122,14400,0,14400,5440,360,3.6,10,10,9.7,240,9,999999999,259,0.1400,0,88,999.000,999.0,99.0 +1976,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,14.4,13.9,96,102100,430,1343,369,69,0,69,8100,0,8100,2870,360,5.2,10,10,6.4,1520,9,999999999,250,0.1400,0,88,999.000,999.0,99.0 +1976,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,14.4,14.4,100,102100,181,1343,370,26,0,26,3000,0,3000,990,50,4.1,10,10,9.7,910,9,999999999,259,0.1400,0,88,999.000,999.0,99.0 +1976,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,14.4,13.3,93,102100,7,325,368,3,0,3,0,0,0,0,80,5.7,10,10,9.7,910,9,999999999,240,0.1400,0,88,999.000,999.0,99.0 +1976,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,14.4,13.3,93,102200,0,0,368,0,0,0,0,0,0,0,80,3.1,10,10,9.7,430,9,999999999,240,0.1680,0,88,999.000,999.0,99.0 +1976,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,14.4,13.9,96,102200,0,0,369,0,0,0,0,0,0,0,360,3.1,10,10,9.7,610,9,999999999,250,0.1680,0,88,999.000,999.0,99.0 +1976,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,14.4,13.9,96,102200,0,0,346,0,0,0,0,0,0,0,350,4.1,7,7,12.9,1520,9,999999999,250,0.1680,0,88,999.000,999.0,99.0 +1976,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,13.9,13.3,96,102200,0,0,331,0,0,0,0,0,0,0,350,3.1,3,3,19.3,77777,9,999999999,240,0.1680,0,88,999.000,999.0,99.0 +1976,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,13.3,13.3,100,102200,0,0,320,0,0,0,0,0,0,0,350,3.1,1,1,19.3,77777,9,999999999,240,0.1680,0,88,999.000,999.0,99.0 +1976,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,12.8,12.8,100,102200,0,0,318,0,0,0,0,0,0,0,350,2.6,1,1,19.3,77777,9,999999999,240,0.1670,0,88,999.000,999.0,99.0 +1976,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,12.8,12.8,100,102200,0,0,318,0,0,0,0,0,0,0,320,2.6,1,1,12.9,77777,9,999999999,240,0.1670,0,88,999.000,999.0,99.0 +1976,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,12.8,12.8,100,102200,0,0,312,0,0,0,0,0,0,0,340,2.6,0,0,12.9,77777,9,999999999,240,0.1670,0,88,999.000,999.0,99.0 +1976,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,12.2,12.2,100,102300,0,0,308,0,0,0,0,0,0,0,340,3.1,0,0,4.8,77777,9,999999999,229,0.1670,0,88,999.000,999.0,99.0 +1976,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,11.7,11.7,100,102400,0,0,353,0,0,0,0,0,0,0,320,3.1,10,10,0.8,60,9,999999999,220,0.1670,0,88,999.000,999.0,99.0 +1976,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,11.7,11.7,100,102400,73,1064,353,22,0,22,2500,0,2500,740,300,2.6,10,10,1.6,60,9,999999999,220,0.0870,0,88,999.000,999.0,99.0 +1976,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,13.3,11.7,90,102500,317,1344,361,93,0,93,10300,0,10300,3130,330,2.1,10,10,3.2,60,9,999999999,220,0.0870,0,88,999.000,999.0,99.0 +1976,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,13.3,12.2,93,102500,558,1344,332,325,534,102,33700,50900,12500,2020,340,3.1,5,5,8.0,77777,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1976,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,15.0,12.2,84,102500,769,1344,335,498,642,130,52600,64400,15600,3000,320,2.1,3,3,8.0,77777,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1976,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,17.2,12.2,73,102500,937,1344,345,645,702,154,68600,71500,18600,4330,200,1.0,3,3,9.7,77777,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1976,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,17.2,13.9,81,102500,1048,1344,352,656,606,182,69900,61900,21500,6190,140,4.1,5,5,11.3,77777,9,999999999,250,0.0870,0,88,999.000,999.0,99.0 +1976,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,17.2,13.3,78,102400,1096,1344,359,479,150,356,52800,16000,39700,13240,150,3.1,7,7,16.1,760,9,999999999,240,0.0870,0,88,999.000,999.0,99.0 +1976,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,18.3,12.2,68,102400,1077,1344,356,628,416,292,67000,43400,32100,10650,150,4.6,5,5,16.1,77777,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1976,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,19.4,11.1,59,102300,993,1344,357,594,427,277,63000,44400,30100,8520,130,4.6,4,4,19.3,77777,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1976,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,21.1,11.1,53,102400,848,1344,368,498,451,211,53000,46500,23600,5210,250,4.6,5,5,19.3,77777,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1976,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,18.9,10.6,59,102200,654,1344,337,449,743,84,46700,72600,11300,1790,220,1.5,2,0,19.3,77777,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1976,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,20.0,9.4,51,102200,424,1344,347,256,587,69,26500,52800,9900,1320,200,3.6,4,1,24.1,77777,9,999999999,189,0.0870,0,88,999.000,999.0,99.0 +1976,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,17.2,12.2,73,102100,174,1344,337,67,186,42,6900,11100,5400,760,140,5.2,6,1,19.3,77777,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1976,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,16.1,11.1,72,102100,5,280,335,4,5,4,0,0,0,0,160,5.2,8,2,19.3,77777,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1976,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,16.1,11.7,75,102100,0,0,331,0,0,0,0,0,0,0,180,4.1,6,1,19.3,77777,9,999999999,220,0.1670,0,88,999.000,999.0,99.0 +1976,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,15.6,11.1,75,102100,0,0,322,0,0,0,0,0,0,0,230,6.2,2,0,19.3,77777,9,999999999,209,0.1670,0,88,999.000,999.0,99.0 +1976,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,15.6,10.6,72,102100,0,0,322,0,0,0,0,0,0,0,200,5.2,1,0,19.3,77777,9,999999999,209,0.1670,0,88,999.000,999.0,99.0 +1976,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,15.0,10.0,72,102100,0,0,318,0,0,0,0,0,0,0,220,6.2,2,0,24.1,77777,9,999999999,200,0.1670,0,88,999.000,999.0,99.0 +1976,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,14.4,10.6,78,102100,0,0,316,0,0,0,0,0,0,0,240,6.2,3,0,24.1,77777,9,999999999,209,0.1670,0,88,999.000,999.0,99.0 +1976,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,14.4,10.6,78,102000,0,0,316,0,0,0,0,0,0,0,210,6.7,4,0,24.1,77777,9,999999999,209,0.1660,0,88,999.000,999.0,99.0 +1976,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,13.9,10.6,80,102000,0,0,314,0,0,0,0,0,0,0,230,5.2,4,0,24.1,77777,9,999999999,200,0.1660,0,88,999.000,999.0,99.0 +1976,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,13.3,10.6,83,101900,0,0,312,0,0,0,0,0,0,0,240,5.2,4,0,24.1,77777,9,999999999,200,0.1660,0,88,999.000,999.0,99.0 +1976,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,13.3,10.6,83,101900,0,0,312,0,0,0,0,0,0,0,240,3.6,4,0,24.1,77777,9,999999999,200,0.1660,0,88,999.000,999.0,99.0 +1976,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,13.3,11.1,87,101900,0,0,312,0,0,0,0,0,0,0,230,5.2,2,0,24.1,77777,9,999999999,209,0.1660,0,88,999.000,999.0,99.0 +1976,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,13.9,11.1,83,101900,70,1042,315,29,56,24,3000,2100,2800,430,220,6.2,3,0,24.1,77777,9,999999999,209,0.1420,0,88,999.000,999.0,99.0 +1976,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,15.6,12.2,81,101900,313,1344,334,134,226,82,14300,18300,10000,1570,220,7.2,6,2,24.1,77777,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1976,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,17.2,12.8,75,101800,554,1344,348,295,316,164,31400,31500,18400,3480,200,8.2,6,4,24.1,7620,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1976,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,18.9,12.8,68,101800,766,1344,357,498,589,162,51700,58400,18400,3590,200,6.2,6,4,24.1,7620,9,999999999,240,0.1420,0,88,999.000,999.0,99.0 +1976,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,20.6,13.3,63,101700,933,1344,372,362,225,206,40300,24300,23400,5550,230,5.2,8,6,19.3,730,9,999999999,240,0.1420,0,88,999.000,999.0,99.0 +1976,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,22.2,13.9,59,101700,1044,1344,377,613,457,257,66100,47700,29000,8640,230,5.2,6,5,19.3,910,9,999999999,250,0.1420,0,88,999.000,999.0,99.0 +1976,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,22.2,13.9,59,101600,1092,1344,374,731,618,227,76900,62700,25900,8350,240,6.2,6,4,16.1,7620,9,999999999,250,0.1420,0,88,999.000,999.0,99.0 +1976,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,23.3,13.9,55,101500,1072,1344,386,660,502,258,71400,52400,29400,9220,240,7.2,8,6,16.1,910,9,999999999,250,0.1420,0,88,999.000,999.0,99.0 +1976,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,22.2,13.9,59,101400,987,1344,391,474,175,345,51900,18600,38200,11000,240,7.2,10,8,11.3,910,9,999999999,250,0.1420,0,88,999.000,999.0,99.0 +1976,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,21.7,13.9,61,101400,843,1344,408,318,7,314,36000,700,35600,12230,230,6.7,10,10,11.3,910,9,999999999,250,0.1420,0,88,999.000,999.0,99.0 +1976,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,21.1,14.4,66,101400,648,1344,405,149,0,149,17300,0,17300,6310,230,7.2,10,10,12.9,910,9,999999999,259,0.1420,0,88,999.000,999.0,99.0 +1976,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,21.1,14.4,66,101300,417,1344,366,190,181,133,20500,16600,15300,2990,230,6.2,7,3,12.9,77777,9,999999999,259,0.1420,0,88,999.000,999.0,99.0 +1976,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,20.0,15.0,73,101300,167,1344,358,58,131,41,6100,7300,5200,750,200,4.6,5,2,16.1,77777,9,999999999,270,0.1420,0,88,999.000,999.0,99.0 +1976,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,18.3,15.6,84,101300,4,258,339,3,2,3,0,0,0,0,190,4.1,1,0,14.5,77777,9,999999999,279,0.1420,0,88,999.000,999.0,99.0 +1976,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,17.8,15.6,87,101300,0,0,337,0,0,0,0,0,0,0,190,4.6,0,0,12.9,77777,9,999999999,279,0.1660,0,88,999.000,999.0,99.0 +1976,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,17.2,15.6,90,101300,0,0,334,0,0,0,0,0,0,0,190,4.1,0,0,11.3,77777,9,999999999,279,0.1660,0,88,999.000,999.0,99.0 +1976,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,17.2,15.6,90,101300,0,0,349,0,0,0,0,0,0,0,220,5.2,3,3,11.3,77777,9,999999999,279,0.1660,0,88,999.000,999.0,99.0 +1976,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,18.3,16.1,87,101200,0,0,392,0,0,0,0,0,0,0,210,5.7,10,10,11.3,310,9,999999999,279,0.1660,0,88,999.000,999.0,99.0 +1976,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,17.8,16.1,90,101200,0,0,355,0,0,0,0,0,0,0,220,5.2,4,4,11.3,77777,9,999999999,279,0.1660,0,88,999.000,999.0,99.0 +1976,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,17.8,15.6,87,101100,0,0,348,0,0,0,0,0,0,0,240,6.2,2,2,9.7,77777,9,999999999,279,0.1650,0,88,999.000,999.0,99.0 +1976,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,17.2,15.6,90,101100,0,0,345,0,0,0,0,0,0,0,220,4.1,2,2,9.7,77777,9,999999999,270,0.1650,0,88,999.000,999.0,99.0 +1976,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,16.1,90,101000,0,0,390,0,0,0,0,0,0,0,220,4.6,10,10,9.7,370,9,999999999,279,0.1650,0,88,999.000,999.0,99.0 +1976,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,18.3,16.1,87,101000,0,0,392,0,0,0,0,0,0,0,200,4.1,10,10,9.7,1680,9,999999999,279,0.1650,0,88,999.000,999.0,99.0 +1976,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,18.3,16.1,87,101000,0,0,392,0,0,0,0,0,0,0,240,4.1,10,10,8.0,1520,9,999999999,279,0.1650,0,88,999.000,999.0,99.0 +1976,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,18.3,16.7,90,101000,67,998,393,13,2,13,1500,0,1500,480,220,4.1,10,10,6.4,1680,9,999999999,290,0.0880,0,88,999.000,999.0,99.0 +1976,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,18.9,16.7,87,100900,309,1345,377,73,49,62,8100,4100,7100,1670,200,4.1,10,8,6.4,2290,9,999999999,290,0.0880,0,88,999.000,999.0,99.0 +1976,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,20.0,17.2,84,100900,550,1345,392,156,47,137,17200,4500,15300,4020,240,4.1,10,9,6.4,2290,9,999999999,300,0.0880,0,88,999.000,999.0,99.0 +1976,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,20.6,17.2,81,100900,762,1345,406,232,7,228,26500,600,26200,9360,250,3.6,10,10,6.4,1680,9,999999999,300,0.0880,0,88,999.000,999.0,99.0 +1976,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,21.1,17.2,79,100900,929,1345,409,353,8,348,40200,800,39700,13910,230,4.1,10,10,6.4,910,9,999999999,300,0.0880,0,88,999.000,999.0,99.0 +1976,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,21.1,17.8,81,100900,1040,1345,410,250,5,246,29700,400,29400,11610,230,6.2,10,10,6.4,1160,9,999999999,309,0.0880,0,88,999.000,999.0,99.0 +1976,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,21.1,17.8,81,100900,1087,1345,410,241,5,237,28900,400,28600,11440,250,3.6,10,10,6.4,1160,9,999999999,309,0.0880,0,88,999.000,999.0,99.0 +1976,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,20.6,18.3,87,100800,1067,1345,408,198,0,198,24000,0,24000,9830,240,5.2,10,10,6.4,1160,9,999999999,320,0.0880,0,88,999.000,999.0,99.0 +1976,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,21.1,18.3,84,100700,982,1345,410,319,4,315,36800,400,36500,13530,240,5.2,10,10,6.4,910,9,999999999,320,0.0880,0,88,999.000,999.0,99.0 +1976,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,23.3,18.9,76,100700,837,1345,403,432,307,240,46800,32800,26400,6050,240,7.2,8,8,4.8,2130,9,999999999,329,0.0880,0,88,999.000,999.0,99.0 +1976,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,21.7,16.1,71,100800,642,1345,411,221,7,218,24800,600,24500,8130,270,3.6,10,10,9.7,1100,9,999999999,290,0.0880,0,88,999.000,999.0,99.0 +1976,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,22.2,15.6,66,100800,410,1345,387,220,216,153,23500,19600,17500,3430,280,4.1,8,7,11.3,3660,9,999999999,270,0.0880,0,88,999.000,999.0,99.0 +1976,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,22.2,13.3,57,100900,160,1345,355,69,291,33,6900,17600,4800,580,270,5.7,2,0,24.1,77777,9,999999999,240,0.0880,0,88,999.000,999.0,99.0 +1976,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,21.1,12.2,57,100900,3,213,349,3,8,2,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,229,0.0880,0,88,999.000,999.0,99.0 +1976,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,19.4,11.7,61,101000,0,0,340,0,0,0,0,0,0,0,290,6.7,0,0,32.2,77777,9,999999999,220,0.1650,0,88,999.000,999.0,99.0 +1976,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,17.8,11.7,68,101100,0,0,333,0,0,0,0,0,0,0,300,4.1,0,0,32.2,77777,9,999999999,220,0.1650,0,88,999.000,999.0,99.0 +1976,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,17.2,10.6,65,101100,0,0,335,0,0,0,0,0,0,0,310,4.6,6,1,32.2,77777,9,999999999,200,0.1650,0,88,999.000,999.0,99.0 +1976,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,16.1,10.6,70,101200,0,0,330,0,0,0,0,0,0,0,330,5.2,4,1,32.2,77777,9,999999999,200,0.1650,0,88,999.000,999.0,99.0 +1976,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,15.6,10.0,70,101200,0,0,321,0,0,0,0,0,0,0,310,3.6,0,0,32.2,77777,9,999999999,200,0.1650,0,88,999.000,999.0,99.0 +1976,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,15.0,9.4,70,101200,0,0,318,0,0,0,0,0,0,0,310,5.7,0,0,32.2,77777,9,999999999,189,0.1640,0,88,999.000,999.0,99.0 +1976,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,14.4,8.3,67,101200,0,0,352,0,0,0,0,0,0,0,300,6.2,9,9,24.1,3050,9,999999999,179,0.1640,0,88,999.000,999.0,99.0 +1976,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,13.9,7.2,64,101200,0,0,341,0,0,0,0,0,0,0,310,5.7,9,8,24.1,3050,9,999999999,170,0.1640,0,88,999.000,999.0,99.0 +1976,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,13.3,6.7,64,101300,0,0,307,0,0,0,0,0,0,0,310,5.2,2,0,24.1,77777,9,999999999,160,0.1640,0,88,999.000,999.0,99.0 +1976,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,12.8,6.7,67,101300,0,0,311,0,0,0,0,0,0,0,300,4.1,2,1,24.1,77777,9,999999999,160,0.1640,0,88,999.000,999.0,99.0 +1976,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,12.8,6.7,67,101400,64,976,311,31,128,18,2900,5300,2500,310,290,5.7,3,1,24.1,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1976,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,13.9,6.7,62,101400,305,1346,320,143,389,55,14700,31300,7700,1010,300,6.7,2,2,24.1,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1976,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,15.6,6.7,56,101400,546,1346,324,345,707,57,36700,67900,9100,1260,310,9.3,1,1,24.1,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1976,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,16.1,7.2,56,101500,758,1346,326,514,772,77,55200,77300,11600,1870,310,6.2,1,1,24.1,77777,9,999999999,170,0.0700,0,88,999.000,999.0,99.0 +1976,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,17.2,6.1,48,101400,925,1346,335,658,806,102,70600,81500,14400,2810,310,7.2,2,2,24.1,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1976,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,18.9,6.1,43,101400,1036,1346,351,677,641,182,72000,65400,21500,6010,290,8.8,5,5,24.1,77777,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1976,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,20.0,5.6,39,101400,1083,1346,353,683,523,261,73900,54600,29800,9540,300,8.8,4,4,24.1,77777,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,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,20.6,5.6,38,101300,1062,1346,356,705,526,288,75300,54800,31900,10120,320,5.2,4,4,24.1,77777,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,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,20.6,5.0,36,101300,977,1346,353,703,714,182,74100,72500,21400,5360,260,6.2,3,3,32.2,77777,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1976,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,21.1,2.8,30,101300,831,1346,352,562,714,119,60100,72600,15100,2970,300,8.2,3,3,32.2,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,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,21.1,3.9,32,101300,636,1346,350,419,657,106,43800,64400,13300,2210,300,5.2,2,2,32.2,77777,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,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,20.0,3.3,33,101300,404,1346,340,237,625,48,24700,56100,7800,1000,300,6.7,1,1,32.2,77777,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1976,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,19.4,2.2,32,101400,153,1346,329,69,357,27,6900,21400,4500,490,300,21.6,0,0,32.2,77777,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1976,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,18.3,3.9,39,101500,2,168,326,3,10,2,0,0,0,0,300,4.6,0,0,32.2,77777,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1976,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,17.2,4.4,43,101500,0,0,322,0,0,0,0,0,0,0,310,3.6,0,0,32.2,77777,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1976,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,16.1,5.0,48,101600,0,0,318,0,0,0,0,0,0,0,320,4.1,0,0,32.2,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1976,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,15.0,5.0,51,101700,0,0,313,0,0,0,0,0,0,0,330,3.6,0,0,32.2,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1976,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,14.4,5.0,53,101600,0,0,310,0,0,0,0,0,0,0,290,3.1,0,0,32.2,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1976,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,5.0,55,101600,0,0,308,0,0,0,0,0,0,0,280,4.1,0,0,32.2,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1976,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,13.9,4.4,53,101600,0,0,308,0,0,0,0,0,0,0,280,5.2,0,0,32.2,77777,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1976,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,13.3,4.4,55,101600,0,0,305,0,0,0,0,0,0,0,280,7.2,0,0,32.2,77777,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1976,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,12.8,4.4,57,101600,0,0,303,0,0,0,0,0,0,0,280,4.1,0,0,32.2,77777,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1976,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,5.0,59,101600,0,0,304,0,0,0,0,0,0,0,290,7.2,0,0,32.2,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1976,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,12.2,5.0,62,101700,0,0,301,0,0,0,0,0,0,0,290,7.2,0,0,32.2,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1976,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,12.8,4.4,57,101700,61,954,303,25,25,22,2600,1100,2500,450,300,6.7,2,0,32.2,77777,9,999999999,139,0.1970,0,88,999.000,999.0,99.0 +1976,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,13.9,4.4,53,101700,300,1346,314,133,292,67,13900,23000,8800,1210,300,6.2,1,1,32.2,77777,9,999999999,139,0.1970,0,88,999.000,999.0,99.0 +1976,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,16.7,4.4,45,101700,542,1346,326,311,511,105,32200,48300,12700,2040,300,8.2,1,1,32.2,77777,9,999999999,139,0.1970,0,88,999.000,999.0,99.0 +1976,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,18.3,4.4,40,101800,754,1346,333,485,638,126,51100,63900,15200,2870,300,7.2,1,1,32.2,77777,9,999999999,139,0.1970,0,88,999.000,999.0,99.0 +1976,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,19.4,4.4,37,101700,921,1346,343,630,603,216,67800,62500,24900,5820,330,7.2,2,2,32.2,77777,9,999999999,139,0.1970,0,88,999.000,999.0,99.0 +1976,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,20.6,3.3,32,101700,1031,1346,347,702,579,257,75500,60400,29100,8400,290,7.2,2,2,32.2,77777,9,999999999,129,0.1970,0,88,999.000,999.0,99.0 +1976,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,22.2,3.3,29,101600,1078,1346,361,697,563,244,72800,56800,27300,8570,300,7.2,5,4,32.2,77777,9,999999999,129,0.1970,0,88,999.000,999.0,99.0 +1976,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,22.2,5.6,34,101600,1058,1346,367,703,592,235,73400,59700,26400,7900,330,8.2,6,5,32.2,7620,9,999999999,150,0.1970,0,88,999.000,999.0,99.0 +1976,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,21.1,7.2,41,101500,971,1346,367,510,271,313,55100,29200,34000,9350,300,10.3,7,6,32.2,7620,9,999999999,170,0.1970,0,88,999.000,999.0,99.0 +1976,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,21.1,8.3,44,101500,825,1346,372,376,185,262,41200,19400,29200,7170,320,8.2,8,7,32.2,7620,9,999999999,179,0.1970,0,88,999.000,999.0,99.0 +1976,9,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,101500,629,1346,380,215,87,174,23600,8600,19600,5220,270,6.7,9,8,32.2,7620,9,999999999,189,0.1970,0,88,999.000,999.0,99.0 +1976,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,21.7,9.4,46,101500,397,1346,377,129,100,99,14100,9100,11400,2210,270,5.7,8,7,32.2,4570,9,999999999,189,0.1970,0,88,999.000,999.0,99.0 +1976,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,21.1,10.6,51,101500,146,1346,375,39,15,38,4300,1000,4200,900,290,4.6,8,7,24.1,4570,9,999999999,200,0.1970,0,88,999.000,999.0,99.0 +1976,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,20.6,11.1,55,101500,1,123,369,0,0,0,0,0,0,0,280,6.2,7,6,24.1,4570,9,999999999,209,0.1970,0,88,999.000,999.0,99.0 +1976,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,20.0,11.7,59,101600,0,0,385,0,0,0,0,0,0,0,290,4.6,9,9,24.1,4570,9,999999999,220,0.1640,0,88,999.000,999.0,99.0 +1976,9,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,101600,0,0,374,0,0,0,0,0,0,0,290,5.2,8,8,24.1,4570,9,999999999,220,0.1640,0,88,999.000,999.0,99.0 +1976,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,18.3,11.7,65,101600,0,0,341,0,0,0,0,0,0,0,300,3.6,1,1,24.1,77777,9,999999999,220,0.1640,0,88,999.000,999.0,99.0 +1976,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,17.8,11.7,68,101600,0,0,333,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,220,0.1640,0,88,999.000,999.0,99.0 +1976,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,17.8,11.7,68,101600,0,0,333,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,220,0.1640,0,88,999.000,999.0,99.0 +1976,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,16.7,11.7,73,101600,0,0,328,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,220,0.1630,0,88,999.000,999.0,99.0 +1976,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,16.1,11.7,75,101600,0,0,325,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,220,0.1630,0,88,999.000,999.0,99.0 +1976,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,15.6,11.7,78,101600,0,0,323,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,220,0.1630,0,88,999.000,999.0,99.0 +1976,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,15.0,11.7,81,101600,0,0,320,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,220,0.1630,0,88,999.000,999.0,99.0 +1976,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,14.4,11.1,81,101600,0,0,317,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,209,0.1630,0,88,999.000,999.0,99.0 +1976,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,14.4,11.7,84,101700,58,932,317,21,7,20,2200,400,2200,480,310,3.1,1,0,24.1,77777,9,999999999,220,0.2780,0,88,999.000,999.0,99.0 +1976,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,16.7,12.2,75,101800,296,1347,335,97,133,67,10300,10500,8000,1240,320,3.1,1,1,20.9,77777,9,999999999,229,0.2780,0,88,999.000,999.0,99.0 +1976,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,19.4,12.8,66,101800,538,1347,353,291,344,153,31000,34000,17400,3200,310,4.1,2,2,20.9,77777,9,999999999,240,0.2780,0,88,999.000,999.0,99.0 +1976,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,21.1,12.2,57,101800,750,1347,364,473,472,210,49600,47900,22900,4750,340,5.7,7,3,24.1,77777,9,999999999,229,0.2780,0,88,999.000,999.0,99.0 +1976,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,21.7,12.2,55,101800,917,1347,358,541,460,226,57800,47700,25300,6080,330,5.2,4,1,24.1,77777,9,999999999,229,0.2780,0,88,999.000,999.0,99.0 +1976,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,23.3,7.8,37,101700,1027,1347,361,682,608,216,71500,61500,24500,6850,330,6.2,3,1,32.2,77777,9,999999999,170,0.2780,0,88,999.000,999.0,99.0 +1976,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,23.9,7.2,34,101700,1073,1347,356,784,699,224,82300,70800,25800,7850,330,7.2,1,0,32.2,77777,9,999999999,170,0.2780,0,88,999.000,999.0,99.0 +1976,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,25.0,6.7,31,101700,1052,1347,361,769,696,223,80700,70400,25500,7450,100,5.2,1,0,32.2,77777,9,999999999,160,0.2780,0,88,999.000,999.0,99.0 +1976,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,18.3,12.8,70,101700,966,1347,336,677,657,203,70700,66300,23100,5770,110,6.7,0,0,24.1,77777,9,999999999,229,0.2780,0,88,999.000,999.0,99.0 +1976,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,17.8,12.2,70,101700,819,1347,333,548,603,179,56700,60000,20100,4150,100,5.7,0,0,24.1,77777,9,999999999,229,0.2780,0,88,999.000,999.0,99.0 +1976,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,17.8,11.7,68,101700,623,1347,333,373,496,142,39600,49100,16800,2880,120,5.2,0,0,32.2,77777,9,999999999,220,0.2780,0,88,999.000,999.0,99.0 +1976,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,16.7,12.2,75,101800,390,1347,328,187,315,95,19500,27500,11500,1770,110,4.1,0,0,32.2,77777,9,999999999,229,0.2780,0,88,999.000,999.0,99.0 +1976,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,16.1,12.2,78,101800,139,1347,326,43,50,38,4700,2800,4400,790,100,4.1,0,0,32.2,77777,9,999999999,229,0.2780,0,88,999.000,999.0,99.0 +1976,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,15.6,12.2,81,101900,1,101,323,1,0,1,0,0,0,0,120,4.6,0,0,32.2,77777,9,999999999,229,0.2780,0,88,999.000,999.0,99.0 +1976,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,15.0,12.2,84,102000,0,0,321,0,0,0,0,0,0,0,150,2.1,0,0,32.2,77777,9,999999999,229,0.1630,0,88,999.000,999.0,99.0 +1976,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,15.0,12.2,84,102000,0,0,321,0,0,0,0,0,0,0,170,1.5,0,0,32.2,77777,9,999999999,229,0.1630,0,88,999.000,999.0,99.0 +1976,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,15.0,12.2,84,102100,0,0,321,0,0,0,0,0,0,0,210,1.5,0,0,32.2,77777,9,999999999,229,0.1630,0,88,999.000,999.0,99.0 +1976,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,14.4,11.7,84,102100,0,0,317,0,0,0,0,0,0,0,250,2.6,0,0,32.2,77777,9,999999999,220,0.1630,0,88,999.000,999.0,99.0 +1976,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,15.0,11.7,81,102100,0,0,320,0,0,0,0,0,0,0,290,0.5,0,0,32.2,77777,9,999999999,220,0.1630,0,88,999.000,999.0,99.0 +1976,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,13.3,11.7,90,102100,0,0,313,0,0,0,0,0,0,0,10,2.1,0,0,16.1,77777,9,999999999,220,0.1620,0,88,999.000,999.0,99.0 +1976,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,13.9,11.1,83,102100,0,0,315,0,0,0,0,0,0,0,360,1.5,0,0,16.1,77777,9,999999999,209,0.1620,0,88,999.000,999.0,99.0 +1976,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,12.8,10.6,86,102200,0,0,309,0,0,0,0,0,0,0,20,2.6,0,0,16.1,77777,9,999999999,209,0.1620,0,88,999.000,999.0,99.0 +1976,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,12.2,10.0,86,102200,0,0,306,0,0,0,0,0,0,0,330,2.1,0,0,16.1,77777,9,999999999,200,0.1620,0,88,999.000,999.0,99.0 +1976,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,12.2,10.0,86,102200,0,0,306,0,0,0,0,0,0,0,330,1.5,0,0,16.1,77777,9,999999999,200,0.1620,0,88,999.000,999.0,99.0 +1976,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,12.2,10.0,86,102200,55,910,306,30,138,16,2600,6400,2200,290,330,1.5,0,0,16.1,77777,9,999999999,200,0.0650,0,88,999.000,999.0,99.0 +1976,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,13.9,10.6,80,102300,292,1348,314,160,557,38,16400,45500,6500,770,350,2.1,0,0,12.9,77777,9,999999999,209,0.0650,0,88,999.000,999.0,99.0 +1976,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,16.7,12.2,75,102300,534,1348,328,351,741,56,37300,70800,9200,1240,280,1.5,0,0,11.3,77777,9,999999999,229,0.0650,0,88,999.000,999.0,99.0 +1976,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,17.8,12.8,73,102200,746,1348,334,531,827,71,55400,81300,10300,1670,160,1.5,0,0,11.3,77777,9,999999999,240,0.0650,0,88,999.000,999.0,99.0 +1976,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,18.9,13.3,70,102200,913,1348,346,607,760,90,63000,75700,11600,2230,130,3.6,1,1,11.3,77777,9,999999999,240,0.0650,0,88,999.000,999.0,99.0 +1976,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,20.0,10.6,55,102200,1023,1348,348,756,872,91,78400,87200,12000,2670,150,2.6,1,1,19.3,77777,9,999999999,209,0.0650,0,88,999.000,999.0,99.0 +1976,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,21.1,7.8,42,102100,1069,1348,350,815,893,103,84200,89400,13100,3120,150,3.6,3,1,20.9,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1976,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,21.7,8.9,44,102000,1047,1348,348,794,868,116,81700,86700,14200,3120,140,4.6,4,0,20.9,77777,9,999999999,189,0.0650,0,88,999.000,999.0,99.0 +1976,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,19.4,13.9,70,101900,960,1348,349,665,797,95,69000,79500,12200,2450,120,6.2,3,1,24.1,77777,9,999999999,250,0.0650,0,88,999.000,999.0,99.0 +1976,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,19.4,13.9,70,101900,813,1348,343,589,817,94,62600,81900,13000,2280,110,5.7,3,0,24.1,77777,9,999999999,250,0.0650,0,88,999.000,999.0,99.0 +1976,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,19.4,13.9,70,101800,616,1348,349,366,482,144,38700,47600,16900,2910,110,5.2,7,1,24.1,77777,9,999999999,250,0.0650,0,88,999.000,999.0,99.0 +1976,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,20.0,13.3,66,101800,383,1348,345,227,610,51,23200,53800,7900,1010,130,4.6,3,0,24.1,77777,9,999999999,240,0.0650,0,88,999.000,999.0,99.0 +1976,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,17.8,13.3,75,101700,132,1348,335,55,305,25,5600,16900,3900,450,150,4.6,1,0,24.1,77777,9,999999999,240,0.0650,0,88,999.000,999.0,99.0 +1976,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,16.7,12.8,78,101700,0,56,329,2,2,1,0,0,0,0,150,3.6,0,0,24.1,77777,9,999999999,240,0.0650,0,88,999.000,999.0,99.0 +1976,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,17.2,12.8,75,101700,0,0,331,0,0,0,0,0,0,0,200,6.2,0,0,24.1,77777,9,999999999,229,0.1620,0,88,999.000,999.0,99.0 +1976,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,16.7,12.8,78,101700,0,0,329,0,0,0,0,0,0,0,200,4.6,1,0,24.1,77777,9,999999999,240,0.1620,0,88,999.000,999.0,99.0 +1976,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,16.1,12.2,78,101700,0,0,326,0,0,0,0,0,0,0,200,4.1,1,0,24.1,77777,9,999999999,229,0.1620,0,88,999.000,999.0,99.0 +1976,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,15.0,12.8,87,101700,0,0,321,0,0,0,0,0,0,0,180,3.1,1,0,24.1,77777,9,999999999,240,0.1620,0,88,999.000,999.0,99.0 +1976,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,14.4,12.8,90,101600,0,0,319,0,0,0,0,0,0,0,190,2.1,0,0,24.1,77777,9,999999999,229,0.1620,0,88,999.000,999.0,99.0 +1976,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,15.0,12.8,87,101600,0,0,321,0,0,0,0,0,0,0,220,3.6,1,0,19.3,77777,9,999999999,240,0.1610,0,88,999.000,999.0,99.0 +1976,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,15.6,13.3,87,101500,0,0,325,0,0,0,0,0,0,0,220,2.6,1,0,19.3,77777,9,999999999,240,0.1610,0,88,999.000,999.0,99.0 +1976,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,15.0,13.3,90,101400,0,0,322,0,0,0,0,0,0,0,200,3.6,1,0,19.3,77777,9,999999999,240,0.1610,0,88,999.000,999.0,99.0 +1976,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,15.0,13.3,90,101400,0,0,322,0,0,0,0,0,0,0,190,2.1,1,0,19.3,77777,9,999999999,240,0.1610,0,88,999.000,999.0,99.0 +1976,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,15.0,13.9,93,101300,0,0,336,0,0,0,0,0,0,0,180,3.6,3,3,19.3,77777,9,999999999,250,0.1610,0,88,999.000,999.0,99.0 +1976,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,15.0,13.9,93,101300,52,888,336,19,18,17,2000,800,2000,350,190,2.6,6,3,12.9,77777,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1976,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,16.7,15.0,90,101300,288,1348,346,121,171,84,12700,13300,9800,1640,160,2.1,9,3,19.3,77777,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1976,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,19.4,16.1,81,101300,530,1348,369,238,180,167,25800,17600,18900,3900,190,4.6,9,6,16.1,310,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1976,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,21.1,17.2,79,101300,742,1348,398,299,121,232,32700,12600,25700,6000,180,6.2,10,9,16.1,310,9,999999999,309,0.1410,0,88,999.000,999.0,99.0 +1976,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,21.1,16.7,76,101200,908,1348,378,468,380,211,50400,39400,23800,5570,150,4.6,6,6,19.3,730,9,999999999,290,0.1410,0,88,999.000,999.0,99.0 +1976,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,22.2,17.2,73,101200,1018,1348,384,505,273,298,55200,29600,32800,9370,150,6.2,6,6,17.7,1010,9,999999999,300,0.1410,0,88,999.000,999.0,99.0 +1976,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,22.8,17.2,71,101100,1064,1348,418,288,13,278,34100,1100,33200,12840,160,5.2,10,10,19.3,910,9,999999999,300,0.1410,0,88,999.000,999.0,99.0 +1976,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,21.7,17.2,76,101000,1042,1348,412,298,4,295,35000,400,34700,13300,160,6.2,10,10,16.1,550,9,999999999,300,0.1410,0,88,999.000,999.0,99.0 +1976,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,18.9,16.1,84,101000,954,1348,395,228,6,224,27000,500,26600,10410,130,5.7,10,10,16.1,550,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1976,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,18.9,16.1,84,100900,807,1348,395,268,9,262,30500,800,30000,10610,120,5.7,10,10,16.1,520,9,999999999,279,0.1410,0,88,999.000,999.0,99.0 +1976,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,20.0,16.7,81,100800,609,1348,402,154,1,154,17700,100,17700,6250,120,4.1,10,10,12.9,520,9,999999999,290,0.1410,0,88,999.000,999.0,99.0 +1976,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,20.0,17.2,84,100700,376,1348,403,55,4,54,6500,200,6400,2230,120,5.2,10,10,14.5,520,9,999999999,300,0.1410,0,88,999.000,999.0,99.0 +1976,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,20.0,17.8,87,100600,125,1348,404,16,1,16,1900,0,1900,600,150,6.2,10,10,11.3,430,9,999999999,309,0.1410,0,88,999.000,999.0,99.0 +1976,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,20.6,18.3,87,100500,0,11,408,0,0,0,0,0,0,0,140,7.2,10,10,11.3,340,9,999999999,320,0.1610,0,88,999.000,999.0,99.0 +1976,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,21.1,18.9,87,100600,0,0,411,0,0,0,0,0,0,0,180,6.7,10,10,9.7,340,9,999999999,329,0.1610,0,88,999.000,999.0,99.0 +1976,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,21.1,18.9,87,100600,0,0,411,0,0,0,0,0,0,0,180,5.2,10,10,9.7,340,9,999999999,329,0.1610,0,88,999.000,999.0,99.0 +1976,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,20.6,18.9,90,100600,0,0,408,0,0,0,0,0,0,0,190,6.2,10,10,9.7,310,9,999999999,329,0.1610,0,88,999.000,999.0,99.0 +1976,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,20.0,18.3,90,100600,0,0,404,0,0,0,0,0,0,0,180,5.7,10,10,12.9,310,9,999999999,320,0.1610,0,88,999.000,999.0,99.0 +1976,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,18.3,16.1,87,100700,0,0,392,0,0,0,0,0,0,0,290,6.7,10,10,6.4,310,9,999999999,279,0.1610,0,88,999.000,999.0,99.0 +1976,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,17.2,14.4,84,100700,0,0,384,0,0,0,0,0,0,0,300,7.2,10,10,12.9,1010,9,999999999,259,0.1600,0,88,999.000,999.0,99.0 +1976,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,16.7,13.9,84,100700,0,0,381,0,0,0,0,0,0,0,270,4.1,10,10,12.9,1520,9,999999999,250,0.1600,0,88,999.000,999.0,99.0 +1976,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,16.1,13.3,84,100800,0,0,377,0,0,0,0,0,0,0,280,3.6,10,10,12.9,1160,9,999999999,240,0.1600,0,88,999.000,999.0,99.0 +1976,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,15.6,13.3,87,100900,0,0,374,0,0,0,0,0,0,0,240,4.1,10,10,12.9,2130,9,999999999,240,0.1600,0,88,999.000,999.0,99.0 +1976,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,13.3,87,100800,0,0,347,0,0,0,0,0,0,0,260,5.2,7,6,16.1,1520,9,999999999,240,0.1600,0,88,999.000,999.0,99.0 +1976,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.6,12.8,84,100900,49,866,346,18,6,17,1900,300,1900,420,280,5.2,6,6,16.1,2440,9,999999999,229,0.1710,0,88,999.000,999.0,99.0 +1976,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,15.6,12.8,84,101000,284,1349,330,125,261,70,13000,20000,8800,1280,260,3.1,5,1,19.3,77777,9,999999999,229,0.1710,0,88,999.000,999.0,99.0 +1976,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,17.2,9.4,60,101100,526,1349,328,318,540,106,32700,50600,12900,2020,270,5.2,3,0,24.1,77777,9,999999999,189,0.1710,0,88,999.000,999.0,99.0 +1976,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,17.8,9.4,58,101100,738,1349,337,468,622,127,49200,62000,15200,2830,290,3.6,2,1,24.1,77777,9,999999999,189,0.1710,0,88,999.000,999.0,99.0 +1976,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,18.9,8.9,52,101100,904,1349,355,587,537,226,62700,55600,25400,5970,270,4.1,6,5,24.1,2130,9,999999999,179,0.1710,0,88,999.000,999.0,99.0 +1976,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,15.6,10.0,70,101100,1014,1349,347,606,364,331,65600,39300,36000,10500,190,3.6,7,7,24.1,1220,9,999999999,200,0.1710,0,88,999.000,999.0,99.0 +1976,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,21.1,10.0,49,101000,1059,1349,367,725,620,235,75700,62600,26500,7890,210,6.2,5,5,24.1,77777,9,999999999,200,0.1710,0,88,999.000,999.0,99.0 +1976,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,21.1,9.4,47,101000,1037,1349,363,739,623,258,79400,64900,29400,8490,240,5.7,4,4,24.1,77777,9,999999999,189,0.1710,0,88,999.000,999.0,99.0 +1976,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,21.7,8.3,43,100900,949,1349,368,565,513,203,61400,53400,23800,5650,240,5.7,5,5,24.1,77777,9,999999999,179,0.1710,0,88,999.000,999.0,99.0 +1976,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,21.7,8.9,44,100900,801,1349,363,542,580,195,57600,59400,22200,4550,220,6.2,3,3,24.1,77777,9,999999999,179,0.1710,0,88,999.000,999.0,99.0 +1976,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,21.1,7.2,41,100900,603,1349,358,353,385,179,37500,39100,20000,3880,220,5.7,3,3,24.1,77777,9,999999999,170,0.1710,0,88,999.000,999.0,99.0 +1976,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,20.6,7.2,42,100900,369,1349,355,170,299,87,17700,25600,10700,1610,240,5.7,4,3,24.1,77777,9,999999999,170,0.1710,0,88,999.000,999.0,99.0 +1976,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,18.9,7.8,49,101000,117,1315,348,36,88,27,3800,4000,3400,480,240,6.7,3,3,24.1,77777,9,999999999,170,0.1710,0,88,999.000,999.0,99.0 +1976,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,17.8,8.3,54,101000,0,0,335,0,0,0,0,0,0,0,230,6.2,1,1,24.1,77777,9,999999999,179,0.1600,0,88,999.000,999.0,99.0 +1976,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,17.2,9.4,60,101100,0,0,328,0,0,0,0,0,0,0,230,5.7,0,0,24.1,77777,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1976,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,16.1,9.4,65,101100,0,0,323,0,0,0,0,0,0,0,230,5.2,0,0,24.1,77777,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1976,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,16.1,10.0,67,101100,0,0,355,0,0,0,0,0,0,0,200,3.6,8,8,24.1,2440,9,999999999,200,0.1600,0,88,999.000,999.0,99.0 +1976,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,16.7,8.9,60,101100,0,0,347,0,0,0,0,0,0,0,260,7.2,7,6,24.1,2440,9,999999999,179,0.1600,0,88,999.000,999.0,99.0 +1976,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,15.6,8.9,65,101100,0,0,342,0,0,0,0,0,0,0,240,6.2,6,6,24.1,2440,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1976,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,15.0,8.9,67,101100,0,0,331,0,0,0,0,0,0,0,250,5.2,3,3,24.1,77777,9,999999999,179,0.1590,0,88,999.000,999.0,99.0 +1976,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,14.4,8.3,67,101200,0,0,314,0,0,0,0,0,0,0,260,6.7,0,0,24.1,77777,9,999999999,179,0.1590,0,88,999.000,999.0,99.0 +1976,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,14.4,8.3,67,101200,0,0,314,0,0,0,0,0,0,0,260,6.2,0,0,24.1,77777,9,999999999,179,0.1590,0,88,999.000,999.0,99.0 +1976,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,13.9,8.3,69,101300,0,0,312,0,0,0,0,0,0,0,270,5.7,0,0,24.1,77777,9,999999999,179,0.1590,0,88,999.000,999.0,99.0 +1976,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,13.3,8.3,72,101400,0,0,309,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,179,0.1590,0,88,999.000,999.0,99.0 +1976,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,13.3,7.8,69,101500,47,844,309,25,93,15,2200,3500,2000,260,290,5.7,0,0,24.1,77777,9,999999999,170,0.0800,0,88,999.000,999.0,99.0 +1976,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,13.9,7.8,67,101600,279,1350,311,146,505,41,15200,39700,7000,770,290,6.7,0,0,24.1,77777,9,999999999,170,0.0800,0,88,999.000,999.0,99.0 +1976,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,15.6,7.8,60,101700,522,1350,319,336,710,61,35300,67300,9300,1290,290,7.7,0,0,24.1,77777,9,999999999,170,0.0800,0,88,999.000,999.0,99.0 +1976,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,17.2,7.8,54,101800,733,1350,326,519,807,78,55400,80400,11600,1840,320,6.2,0,0,24.1,77777,9,999999999,170,0.0800,0,88,999.000,999.0,99.0 +1976,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,18.9,7.8,49,101800,900,1350,340,579,662,136,61800,67500,16700,3640,310,5.7,1,1,24.1,77777,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1976,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,20.0,7.8,45,101800,1009,1350,350,743,787,152,77200,78800,18100,4280,300,6.7,2,2,24.1,77777,9,999999999,170,0.0800,0,88,999.000,999.0,99.0 +1976,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,20.6,7.8,44,101800,1054,1350,356,761,814,122,81400,82600,16700,4040,330,6.2,3,3,24.1,77777,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1976,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,21.1,8.3,44,101800,1031,1350,351,737,839,92,76300,83900,12000,2720,340,6.2,1,1,24.1,77777,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1976,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,22.2,8.3,41,101800,943,1350,349,697,860,93,72200,85700,12200,2350,310,5.7,0,0,24.1,77777,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1976,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,22.2,8.3,41,101800,794,1350,349,571,824,83,59300,81300,11300,1850,320,4.1,0,0,24.1,77777,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1976,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,22.2,7.8,40,101900,596,1350,349,400,747,67,42100,72400,10000,1460,290,4.6,0,0,24.1,77777,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1976,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,22.2,8.3,41,101900,362,1350,349,209,593,48,21400,51500,7600,960,320,4.1,0,0,24.1,77777,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1976,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,21.1,8.3,44,102000,111,1294,344,49,237,25,4700,12600,3600,440,320,3.6,0,0,24.1,77777,9,999999999,179,0.0800,0,88,999.000,999.0,99.0 +1976,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,20.0,8.3,47,102000,0,0,339,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,179,0.1590,0,88,999.000,999.0,99.0 +1976,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,18.9,8.9,52,102100,0,0,335,0,0,0,0,0,0,0,310,2.6,0,0,24.1,77777,9,999999999,189,0.1590,0,88,999.000,999.0,99.0 +1976,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,18.3,9.4,56,102200,0,0,333,0,0,0,0,0,0,0,330,1.0,0,0,24.1,77777,9,999999999,189,0.1590,0,88,999.000,999.0,99.0 +1976,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,16.1,10.6,70,102300,0,0,324,0,0,0,0,0,0,0,240,2.1,0,0,24.1,77777,9,999999999,209,0.1590,0,88,999.000,999.0,99.0 +1976,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,15.6,11.1,75,102300,0,0,322,0,0,0,0,0,0,0,170,1.5,0,0,32.2,77777,9,999999999,209,0.1590,0,88,999.000,999.0,99.0 +1976,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,15.0,12.2,84,102300,0,0,321,0,0,0,0,0,0,0,200,2.1,1,0,32.2,77777,9,999999999,229,0.1590,0,88,999.000,999.0,99.0 +1976,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,15.6,11.1,75,102300,0,0,322,0,0,0,0,0,0,0,240,2.6,1,0,32.2,77777,9,999999999,209,0.1580,0,88,999.000,999.0,99.0 +1976,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,15.6,11.1,75,102300,0,0,322,0,0,0,0,0,0,0,260,3.1,2,0,32.2,77777,9,999999999,209,0.1580,0,88,999.000,999.0,99.0 +1976,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,16.1,11.7,75,102300,0,0,325,0,0,0,0,0,0,0,260,3.1,1,0,32.2,77777,9,999999999,220,0.1580,0,88,999.000,999.0,99.0 +1976,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,16.1,11.1,72,102300,0,0,324,0,0,0,0,0,0,0,290,3.1,0,0,32.2,77777,9,999999999,209,0.1580,0,88,999.000,999.0,99.0 +1976,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,15.0,11.1,78,102400,0,0,320,0,0,0,0,0,0,0,310,3.1,3,0,32.2,77777,9,999999999,209,0.1580,0,88,999.000,999.0,99.0 +1976,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,15.0,11.7,81,102500,44,822,334,17,1,17,1900,0,1900,580,310,2.6,7,3,24.1,77777,9,999999999,220,0.3070,0,88,999.000,999.0,99.0 +1976,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,17.2,12.2,73,102500,275,1351,341,104,85,86,11200,6700,9800,1850,300,3.1,10,2,19.3,77777,9,999999999,229,0.3070,0,88,999.000,999.0,99.0 +1976,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,12.8,68,102600,517,1351,350,274,253,177,28800,24700,19300,3820,290,3.1,10,2,16.1,77777,9,999999999,240,0.3070,0,88,999.000,999.0,99.0 +1976,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,21.1,12.8,59,102600,729,1351,361,450,353,258,47600,36900,27600,6230,270,3.1,10,2,16.1,77777,9,999999999,240,0.3070,0,88,999.000,999.0,99.0 +1976,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,22.2,12.8,55,102600,895,1351,373,565,376,314,60400,40300,33600,8680,320,2.1,10,4,16.1,77777,9,999999999,240,0.3070,0,88,999.000,999.0,99.0 +1976,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,24.4,13.3,50,102600,1005,1351,385,570,329,324,61800,35500,35300,10100,300,2.6,10,4,16.1,77777,9,999999999,240,0.3070,0,88,999.000,999.0,99.0 +1976,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,24.4,13.3,50,102600,1049,1351,396,531,160,407,57900,16900,44700,13960,0,0.0,10,7,16.1,7620,9,999999999,240,0.3070,0,88,999.000,999.0,99.0 +1976,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,25.6,13.9,49,102600,1026,1351,403,417,78,357,45900,8000,39800,13420,0,0.0,10,7,19.3,7620,9,999999999,259,0.3070,0,88,999.000,999.0,99.0 +1976,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,26.1,14.4,49,102500,937,1351,388,641,491,299,66800,50700,31600,8450,180,4.1,10,2,19.3,77777,9,999999999,259,0.3070,0,88,999.000,999.0,99.0 +1976,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,27.2,15.0,47,102500,788,1351,389,505,483,221,52900,49300,24000,5170,250,4.6,9,1,19.3,77777,9,999999999,270,0.3070,0,88,999.000,999.0,99.0 +1976,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,27.8,15.6,47,102400,589,1351,399,328,335,181,34800,33800,20100,3930,240,4.6,10,2,19.3,77777,9,999999999,279,0.3070,0,88,999.000,999.0,99.0 +1976,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,26.7,16.1,52,102500,354,1351,393,141,129,107,15300,11200,12300,2360,230,5.7,10,2,19.3,77777,9,999999999,290,0.3070,0,88,999.000,999.0,99.0 +1976,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,25.0,16.1,58,102500,104,1249,394,34,3,33,3700,0,3700,1040,240,4.6,10,5,19.3,77777,9,999999999,290,0.3070,0,88,999.000,999.0,99.0 +1976,9,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,102500,0,0,386,0,0,0,0,0,0,0,240,4.6,10,4,19.3,77777,9,999999999,300,0.1580,0,88,999.000,999.0,99.0 +1976,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,22.8,16.7,69,102500,0,0,378,0,0,0,0,0,0,0,240,3.6,8,3,19.3,77777,9,999999999,300,0.1580,0,88,999.000,999.0,99.0 +1976,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,21.1,16.1,73,102500,0,0,353,0,0,0,0,0,0,0,240,3.1,0,0,19.3,77777,9,999999999,290,0.1580,0,88,999.000,999.0,99.0 +1976,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,20.0,15.6,76,102500,0,0,347,0,0,0,0,0,0,0,240,2.6,0,0,19.3,77777,9,999999999,279,0.1580,0,88,999.000,999.0,99.0 +1976,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,21.7,15.0,66,102500,0,0,370,0,0,0,0,0,0,0,280,4.1,6,3,20.9,77777,9,999999999,270,0.1580,0,88,999.000,999.0,99.0 +1976,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,20.0,15.0,73,102500,0,0,358,0,0,0,0,0,0,0,240,3.1,4,2,20.9,77777,9,999999999,270,0.1580,0,88,999.000,999.0,99.0 +1976,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,18.9,15.0,78,102500,0,0,341,0,0,0,0,0,0,0,230,2.6,0,0,20.9,77777,9,999999999,270,0.1570,0,88,999.000,999.0,99.0 +1976,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,18.3,14.4,78,102500,0,0,338,0,0,0,0,0,0,0,240,2.6,0,0,20.9,77777,9,999999999,259,0.1570,0,88,999.000,999.0,99.0 +1976,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,17.8,14.4,81,102400,0,0,336,0,0,0,0,0,0,0,240,3.1,0,0,19.3,77777,9,999999999,259,0.1570,0,88,999.000,999.0,99.0 +1976,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,17.2,14.4,84,102400,0,0,333,0,0,0,0,0,0,0,220,1.5,0,0,19.3,77777,9,999999999,259,0.1570,0,88,999.000,999.0,99.0 +1976,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,16.7,14.4,87,102400,0,0,337,0,0,0,0,0,0,0,270,2.1,4,1,19.3,77777,9,999999999,259,0.1570,0,88,999.000,999.0,99.0 +1976,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,17.8,14.4,81,102500,42,800,347,18,15,17,2000,800,1900,410,240,3.1,9,2,19.3,77777,9,999999999,259,0.1240,0,88,999.000,999.0,99.0 +1976,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,18.3,14.4,78,102500,271,1351,338,132,340,64,13800,25500,8700,1160,180,2.1,6,0,16.1,77777,9,999999999,259,0.1240,0,88,999.000,999.0,99.0 +1976,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,22.2,15.0,64,102500,513,1351,357,313,598,84,32600,56300,11200,1650,220,2.1,2,0,16.1,77777,9,999999999,270,0.1240,0,88,999.000,999.0,99.0 +1976,9,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,102500,725,1351,376,490,718,103,52100,72000,13400,2330,270,4.6,1,0,16.1,77777,9,999999999,270,0.1240,0,88,999.000,999.0,99.0 +1976,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,27.2,15.0,47,102500,891,1351,382,637,780,120,66700,78100,15000,2960,240,2.6,1,0,16.1,77777,9,999999999,270,0.1240,0,88,999.000,999.0,99.0 +1976,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,28.9,14.4,41,102400,1000,1351,390,740,827,125,78400,83500,16400,3670,270,3.1,0,0,19.3,77777,9,999999999,259,0.1240,0,88,999.000,999.0,99.0 +1976,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,29.4,14.4,40,102400,1044,1351,393,778,836,129,82600,84600,17100,4120,200,2.1,0,0,19.3,77777,9,999999999,259,0.1240,0,88,999.000,999.0,99.0 +1976,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,30.0,15.0,40,102300,1021,1351,396,752,816,133,79400,82300,17100,4000,230,3.6,1,0,19.3,77777,9,999999999,270,0.1240,0,88,999.000,999.0,99.0 +1976,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,31.1,14.4,36,102200,931,1351,401,678,788,132,70600,78900,16100,3360,210,4.6,2,0,19.3,77777,9,999999999,259,0.1240,0,88,999.000,999.0,99.0 +1976,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,31.1,14.4,36,102200,782,1351,401,557,704,147,58100,70300,17400,3360,260,5.2,6,0,20.9,77777,9,999999999,259,0.1240,0,88,999.000,999.0,99.0 +1976,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,29.4,14.4,40,102200,582,1351,405,354,528,124,37600,51600,15400,2440,250,6.7,9,2,20.9,77777,9,999999999,259,0.1240,0,88,999.000,999.0,99.0 +1976,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,28.9,16.1,46,102200,347,1351,400,169,363,75,17800,30400,10000,1370,230,6.2,8,1,19.3,77777,9,999999999,290,0.1240,0,88,999.000,999.0,99.0 +1976,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,25.6,16.7,58,102200,97,1205,383,38,74,31,3900,3100,3700,570,190,4.6,7,1,19.3,77777,9,999999999,300,0.1240,0,88,999.000,999.0,99.0 +1976,9,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,102200,0,0,371,0,0,0,0,0,0,0,200,3.6,6,1,19.3,77777,9,999999999,300,0.1570,0,88,999.000,999.0,99.0 +1976,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,23.3,16.1,64,102200,0,0,364,0,0,0,0,0,0,0,230,4.6,5,0,19.3,77777,9,999999999,290,0.1570,0,88,999.000,999.0,99.0 +1976,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,22.2,16.1,68,102200,0,0,358,0,0,0,0,0,0,0,240,4.1,1,0,19.3,77777,9,999999999,290,0.1570,0,88,999.000,999.0,99.0 +1976,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,21.7,16.1,71,102200,0,0,356,0,0,0,0,0,0,0,240,4.6,2,0,17.7,77777,9,999999999,290,0.1570,0,88,999.000,999.0,99.0 +1976,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,21.7,16.1,71,102200,0,0,356,0,0,0,0,0,0,0,240,4.1,2,0,12.9,77777,9,999999999,290,0.1570,0,88,999.000,999.0,99.0 +1976,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,20.6,15.6,73,102200,0,0,350,0,0,0,0,0,0,0,240,3.6,2,0,12.9,77777,9,999999999,279,0.1570,0,88,999.000,999.0,99.0 +1976,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,20.6,15.6,73,102200,0,0,350,0,0,0,0,0,0,0,240,3.6,2,0,11.3,77777,9,999999999,279,0.1560,0,88,999.000,999.0,99.0 +1976,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,20.0,15.6,76,102100,0,0,347,0,0,0,0,0,0,0,240,2.6,2,0,11.3,77777,9,999999999,279,0.1560,0,88,999.000,999.0,99.0 +1976,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,18.3,15.0,81,102100,0,0,339,0,0,0,0,0,0,0,210,2.6,2,0,11.3,77777,9,999999999,270,0.1560,0,88,999.000,999.0,99.0 +1976,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,18.3,15.0,81,102100,0,0,339,0,0,0,0,0,0,0,220,2.6,0,0,11.3,77777,9,999999999,270,0.1560,0,88,999.000,999.0,99.0 +1976,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,17.2,15.0,87,102100,0,0,340,0,0,0,0,0,0,0,210,2.1,4,1,9.7,77777,9,999999999,270,0.1560,0,88,999.000,999.0,99.0 +1976,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,18.3,15.0,81,102200,39,777,356,12,3,12,1400,0,1400,430,200,2.6,9,4,9.7,77777,9,999999999,270,0.2230,0,88,999.000,999.0,99.0 +1976,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,19.4,15.6,78,102200,266,1352,362,107,33,100,11600,2700,11100,2280,210,2.1,10,4,6.4,77777,9,999999999,279,0.2230,0,88,999.000,999.0,99.0 +1976,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,20.6,15.6,73,102200,509,1352,404,110,2,109,12700,100,12600,4420,210,2.1,10,10,6.4,7620,9,999999999,279,0.2230,0,88,999.000,999.0,99.0 +1976,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,22.2,15.6,66,102200,721,1352,393,307,131,237,33400,13500,26200,6050,230,2.6,10,8,6.4,7620,9,999999999,279,0.2230,0,88,999.000,999.0,99.0 +1976,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,24.4,16.7,62,102200,886,1352,400,462,304,262,50100,32600,28700,6950,230,3.1,10,7,8.0,7620,9,999999999,300,0.2230,0,88,999.000,999.0,99.0 +1976,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.0,17.2,62,102200,995,1352,410,520,281,311,56300,30400,33900,9500,190,3.6,10,8,8.0,7620,9,999999999,309,0.2230,0,88,999.000,999.0,99.0 +1976,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.1,17.2,58,102200,1039,1352,416,384,88,316,42400,9000,35400,12300,220,4.1,10,8,8.0,3050,9,999999999,309,0.2230,0,88,999.000,999.0,99.0 +1976,9,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,102100,1015,1352,411,428,177,295,47400,18900,33200,9650,230,4.6,10,7,8.0,3050,9,999999999,320,0.2230,0,88,999.000,999.0,99.0 +1976,9,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,102100,925,1352,430,454,224,300,49800,23700,33500,8900,240,4.6,10,9,9.7,3050,9,999999999,320,0.2230,0,88,999.000,999.0,99.0 +1976,9,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.6,52,102100,775,1352,423,284,123,213,31300,12900,23900,5620,240,6.7,10,9,12.9,3050,9,999999999,279,0.2230,0,88,999.000,999.0,99.0 +1976,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.6,15.6,54,102100,575,1352,412,218,81,184,24000,7900,20600,5180,230,5.7,10,8,12.9,3660,9,999999999,279,0.2230,0,88,999.000,999.0,99.0 +1976,9,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,102100,340,1352,418,76,14,73,8700,600,8600,2740,240,5.7,10,9,12.9,3660,9,999999999,290,0.2230,0,88,999.000,999.0,99.0 +1976,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,23.9,16.7,64,102200,91,1161,424,21,0,21,2400,0,2400,740,240,5.7,10,10,11.3,3050,9,999999999,300,0.2230,0,88,999.000,999.0,99.0 +1976,9,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,102200,0,0,421,0,0,0,0,0,0,0,240,4.1,10,10,11.3,3050,9,999999999,300,0.1560,0,88,999.000,999.0,99.0 +1976,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,21.7,17.2,76,102200,0,0,412,0,0,0,0,0,0,0,220,3.6,10,10,11.3,3050,9,999999999,309,0.1560,0,88,999.000,999.0,99.0 +1976,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,21.7,17.2,76,102200,0,0,412,0,0,0,0,0,0,0,240,4.1,10,10,11.3,3050,9,999999999,309,0.1560,0,88,999.000,999.0,99.0 +1976,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,20.6,16.7,79,102200,0,0,386,0,0,0,0,0,0,0,240,4.6,10,8,11.3,6100,9,999999999,300,0.1560,0,88,999.000,999.0,99.0 +1976,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,20.0,16.7,81,102200,0,0,366,0,0,0,0,0,0,0,230,3.1,10,4,11.3,77777,9,999999999,300,0.1560,0,88,999.000,999.0,99.0 +1976,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,20.0,16.7,81,102200,0,0,366,0,0,0,0,0,0,0,260,2.6,10,4,11.3,77777,9,999999999,300,0.1560,0,88,999.000,999.0,99.0 +1976,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,19.4,16.7,84,102200,0,0,380,0,0,0,0,0,0,0,220,2.6,10,8,11.3,7620,9,999999999,300,0.1560,0,88,999.000,999.0,99.0 +1976,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,18.9,16.7,87,102200,0,0,371,0,0,0,0,0,0,0,230,3.6,8,7,11.3,7620,9,999999999,300,0.1560,0,88,999.000,999.0,99.0 +1976,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,18.3,16.7,90,102200,0,0,355,0,0,0,0,0,0,0,230,3.1,8,3,11.3,77777,9,999999999,300,0.1560,0,88,999.000,999.0,99.0 +1976,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,18.3,16.1,87,102200,0,0,351,0,0,0,0,0,0,0,220,4.1,6,2,11.3,77777,9,999999999,290,0.1560,0,88,999.000,999.0,99.0 +1976,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,18.3,16.7,90,102300,0,0,358,0,0,0,0,0,0,0,230,3.6,8,4,11.3,77777,9,999999999,300,0.1560,0,88,999.000,999.0,99.0 +1976,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,17.2,16.1,93,102300,37,755,368,9,2,9,1100,0,1100,340,200,2.1,10,8,11.3,4880,9,999999999,290,0.1240,0,88,999.000,999.0,99.0 +1976,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,19.4,16.7,84,102400,262,1353,388,58,17,55,6400,1400,6100,1430,240,3.1,10,9,11.3,3660,9,999999999,300,0.1240,0,88,999.000,999.0,99.0 +1976,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,20.6,16.7,79,102400,505,1353,394,161,69,135,17700,6500,15200,3800,190,1.5,10,9,8.0,3660,9,999999999,300,0.1240,0,88,999.000,999.0,99.0 +1976,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.7,17.2,76,102400,716,1353,392,265,136,192,29100,14100,21700,4890,190,1.0,10,8,8.0,3660,9,999999999,309,0.1240,0,88,999.000,999.0,99.0 +1976,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,23.3,16.7,66,102400,882,1353,394,461,209,324,50100,22000,35700,9250,230,2.6,10,7,17.7,3660,9,999999999,300,0.1240,0,88,999.000,999.0,99.0 +1976,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.3,16.7,66,102400,990,1353,400,498,327,258,54900,35400,28900,7620,190,3.6,10,8,19.3,3660,9,999999999,300,0.1240,0,88,999.000,999.0,99.0 +1976,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,20.6,16.7,79,102400,1034,1353,405,193,9,186,23400,700,22900,9230,70,4.6,10,10,4.8,700,9,999999999,300,0.1240,0,88,999.000,999.0,99.0 +1976,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,20.6,16.1,76,102400,1009,1353,405,236,2,234,28000,200,27800,11020,60,4.6,10,10,4.8,700,9,999999999,290,0.1240,0,88,999.000,999.0,99.0 +1976,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,21.1,16.1,73,102400,919,1353,388,446,297,243,48800,32000,27000,6560,70,3.1,10,8,4.8,3660,9,999999999,290,0.1240,0,88,999.000,999.0,99.0 +1976,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,20.6,15.6,73,102300,769,1353,393,236,77,192,26000,7700,21600,6330,90,5.2,10,9,4.8,3660,9,999999999,279,0.1240,0,88,999.000,999.0,99.0 +1976,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,18.3,15.0,81,102200,568,1353,380,247,78,214,27000,7700,23800,5750,80,4.1,10,9,6.4,3660,9,999999999,270,0.1240,0,88,999.000,999.0,99.0 +1976,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,17.2,15.0,87,102300,333,1353,374,97,29,90,10600,2500,10000,2320,90,6.2,10,9,6.4,3660,9,999999999,270,0.1240,0,88,999.000,999.0,99.0 +1976,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,17.2,15.0,87,102300,85,1139,385,11,1,10,1200,0,1200,390,80,4.1,10,10,4.8,1310,9,999999999,270,0.1240,0,88,999.000,999.0,99.0 +1976,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,17.2,15.0,87,102300,0,0,385,0,0,0,0,0,0,0,350,1.0,10,10,4.8,1520,9,999999999,270,0.1560,0,88,999.000,999.0,99.0 +1976,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,16.1,15.0,93,102300,0,0,379,0,0,0,0,0,0,0,110,3.6,10,10,4.8,60,9,999999999,270,0.1560,0,88,999.000,999.0,99.0 +1976,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,15.6,15.0,97,102300,0,0,377,0,0,0,0,0,0,0,100,3.1,10,10,0.8,30,9,999999999,270,0.1560,0,88,999.000,999.0,99.0 +1976,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,15.6,15.0,97,102300,0,0,377,0,0,0,0,0,0,0,70,1.5,10,10,0.6,30,9,999999999,270,0.1560,0,88,999.000,999.0,99.0 +1976,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,16.1,15.0,93,102200,0,0,379,0,0,0,0,0,0,0,30,1.5,10,10,1.6,60,9,999999999,270,0.1560,0,88,999.000,999.0,99.0 +1976,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,16.7,15.6,93,102200,0,0,383,0,0,0,0,0,0,0,40,2.6,10,10,3.2,120,9,999999999,279,0.1560,0,88,999.000,999.0,99.0 +1976,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,17.2,15.6,90,102200,0,0,386,0,0,0,0,0,0,0,50,2.6,10,10,2.8,90,9,999999999,279,0.1550,0,88,999.000,999.0,99.0 +1976,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,17.8,16.1,90,102100,0,0,390,0,0,0,0,0,0,0,50,3.1,10,10,3.2,120,9,999999999,290,0.1550,0,88,999.000,999.0,99.0 +1976,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,17.2,15.6,90,102100,0,0,386,0,0,0,0,0,0,0,40,3.1,10,10,3.2,120,9,999999999,279,0.1550,0,88,999.000,999.0,99.0 +1976,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,17.2,15.6,90,102100,0,0,386,0,0,0,0,0,0,0,30,2.6,10,10,2.8,90,9,999999999,279,0.1550,0,88,999.000,999.0,99.0 +1976,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,16.7,15.6,93,102100,0,0,383,0,0,0,0,0,0,0,40,3.6,10,10,2.0,60,9,999999999,279,0.1550,0,88,999.000,999.0,99.0 +1976,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,17.2,16.1,93,102100,34,733,386,6,0,6,700,0,700,230,30,3.6,10,10,0.8,90,9,999999999,290,0.0730,0,88,999.000,999.0,99.0 +1976,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,17.2,16.1,93,102100,258,1354,386,38,8,36,4400,200,4400,1420,50,3.6,10,10,1.3,90,9,999999999,290,0.0730,0,88,999.000,999.0,99.0 +1976,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,17.8,16.7,93,102100,500,1354,390,82,6,80,9700,300,9600,3420,40,5.2,10,10,1.3,60,9,999999999,300,0.0730,0,88,999.000,999.0,99.0 +1976,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,18.3,17.2,93,102100,712,1354,394,118,6,115,14100,400,13900,5320,60,5.7,10,10,1.3,60,9,999999999,309,0.0730,0,88,999.000,999.0,99.0 +1976,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,18.3,17.2,93,102100,877,1354,394,169,1,169,20200,100,20200,8000,50,3.6,10,10,0.4,60,9,999999999,309,0.0730,0,88,999.000,999.0,99.0 +1976,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,18.3,17.8,97,102000,985,1354,394,200,4,196,23900,300,23600,9480,60,5.2,10,10,0.4,30,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1976,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,19.4,18.3,93,102000,1028,1354,401,188,0,188,22800,0,22800,9300,10,4.1,10,10,0.4,30,9,999999999,329,0.0730,0,88,999.000,999.0,99.0 +1976,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,20.0,18.3,90,101900,1004,1354,404,329,3,327,38100,300,37800,13990,40,5.2,10,10,1.6,340,9,999999999,329,0.0730,0,88,999.000,999.0,99.0 +1976,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,20.0,17.8,87,101900,913,1354,404,326,1,325,37100,100,37100,13150,80,4.6,10,10,4.8,270,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1976,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,20.0,17.8,87,101800,762,1354,404,255,1,254,28800,100,28800,10000,70,5.7,10,10,3.2,210,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1976,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,18.3,17.8,97,101700,561,1354,394,106,1,106,12400,100,12400,4510,70,4.6,10,10,0.8,30,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1976,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,18.3,17.8,97,101700,325,1354,394,57,0,57,6600,0,6600,2220,40,3.1,10,10,1.6,30,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1976,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,18.3,17.8,97,101700,79,1094,394,27,0,27,3000,0,3000,870,30,3.1,10,10,0.8,30,9,999999999,320,0.0730,0,88,999.000,999.0,99.0 +1976,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,17.8,93,101700,0,0,398,0,0,0,0,0,0,0,360,2.6,10,10,1.3,60,9,999999999,309,0.1550,0,88,999.000,999.0,99.0 +1976,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,18.3,17.8,97,101700,0,0,394,0,0,0,0,0,0,0,10,2.1,10,10,0.4,30,9,999999999,320,0.1550,0,88,999.000,999.0,99.0 +1976,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,18.3,17.8,97,101700,0,0,394,0,0,0,0,0,0,0,360,1.0,10,10,0.4,30,9,999999999,320,0.1550,0,88,999.000,999.0,99.0 +1976,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.3,17.8,97,101600,0,0,394,0,0,0,0,0,0,0,50,1.0,10,10,0.1,0,9,999999999,320,0.1550,0,88,999.000,999.0,99.0 +1976,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,17.2,97,101600,0,0,391,0,0,0,0,0,0,0,360,2.1,10,10,0.1,0,9,999999999,309,0.1550,0,88,999.000,999.0,99.0 +1976,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.8,17.2,97,101500,0,0,391,0,0,0,0,0,0,0,70,1.5,10,10,0.1,30,9,999999999,309,0.1550,0,88,999.000,999.0,99.0 +1976,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,17.2,17.2,100,101500,0,0,388,0,0,0,0,0,0,0,80,2.6,10,10,0.1,30,9,999999999,300,0.1540,0,88,999.000,999.0,99.0 +1976,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,17.8,17.2,97,101400,0,0,362,0,0,0,0,0,0,0,100,1.5,6,6,4.0,310,9,999999999,309,0.1540,0,88,999.000,999.0,99.0 +1976,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,17.8,17.2,97,101400,0,0,391,0,0,0,0,0,0,0,80,1.0,10,10,4.0,90,9,999999999,309,0.1540,0,88,999.000,999.0,99.0 +1976,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,17.8,17.2,97,101300,0,0,391,0,0,0,0,0,0,0,70,0.5,10,10,4.0,700,9,999999999,309,0.1540,0,88,999.000,999.0,99.0 +1976,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,16.7,16.7,100,101300,0,0,384,0,0,0,0,0,0,0,120,1.5,10,10,1.3,640,9,999999999,300,0.1540,0,88,999.000,999.0,99.0 +1976,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,17.2,17.2,100,101400,32,711,388,12,0,12,1400,0,1400,430,200,1.5,10,10,1.3,60,9,999999999,300,0.0810,0,88,999.000,999.0,99.0 +1976,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,18.9,17.2,90,101300,253,1354,372,84,72,71,9200,5500,8200,1520,110,1.5,7,7,1.6,7620,9,999999999,300,0.0810,0,88,999.000,999.0,99.0 +1976,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,20.0,18.9,93,101300,496,1354,405,199,89,166,21800,8500,18600,4420,200,2.1,10,10,3.2,180,9,999999999,329,0.0810,0,88,999.000,999.0,99.0 +1976,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,21.1,18.9,87,101300,707,1354,411,191,8,186,21900,600,21500,7750,170,0.5,10,10,9.7,340,9,999999999,329,0.0810,0,88,999.000,999.0,99.0 +1976,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,23.3,19.4,79,101300,873,1354,389,457,324,248,49700,34700,27300,6440,190,4.6,9,5,9.7,7620,9,999999999,350,0.0810,0,88,999.000,999.0,99.0 +1976,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,25.6,18.9,67,101200,980,1354,398,592,526,209,64400,54800,24600,6090,220,5.7,4,4,11.3,77777,9,999999999,340,0.0810,0,88,999.000,999.0,99.0 +1976,9,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,101100,1023,1354,402,681,623,208,71500,63100,23700,6510,230,7.2,4,4,12.9,77777,9,999999999,300,0.0810,0,88,999.000,999.0,99.0 +1976,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,26.7,16.1,52,101100,998,1354,397,675,666,182,71400,67700,21300,5510,220,7.7,3,3,16.1,77777,9,999999999,279,0.0810,0,88,999.000,999.0,99.0 +1976,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.1,16.7,56,101000,907,1354,416,567,395,301,60900,42400,32500,8320,220,5.7,8,8,16.1,1220,9,999999999,290,0.0810,0,88,999.000,999.0,99.0 +1976,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,26.1,16.7,56,100900,755,1354,398,448,523,154,48300,53300,18500,3390,200,6.2,4,4,16.1,77777,9,999999999,290,0.0810,0,88,999.000,999.0,99.0 +1976,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,26.1,15.6,52,100900,554,1354,384,344,681,63,36200,65200,9400,1360,200,7.7,1,1,16.1,77777,9,999999999,270,0.0810,0,88,999.000,999.0,99.0 +1976,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,23.9,17.8,69,100900,318,1354,388,146,312,72,15300,25200,9300,1310,210,6.2,4,4,16.1,77777,9,999999999,309,0.0810,0,88,999.000,999.0,99.0 +1976,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.2,17.2,73,100900,73,1050,367,34,134,20,3200,5700,2700,350,200,5.2,1,1,16.1,77777,9,999999999,300,0.0810,0,88,999.000,999.0,99.0 +1976,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,21.7,17.2,76,100900,0,0,401,0,0,0,0,0,0,0,200,4.1,9,9,16.1,2440,9,999999999,300,0.1540,0,88,999.000,999.0,99.0 +1976,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,21.7,16.7,73,100900,0,0,412,0,0,0,0,0,0,0,210,4.1,10,10,16.1,2440,9,999999999,290,0.1540,0,88,999.000,999.0,99.0 +1976,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,21.1,16.7,76,100900,0,0,408,0,0,0,0,0,0,0,240,5.2,10,10,16.1,2440,9,999999999,290,0.1540,0,88,999.000,999.0,99.0 +1976,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,20.6,16.7,79,100900,0,0,394,0,0,0,0,0,0,0,230,4.1,9,9,16.1,2740,9,999999999,300,0.1540,0,88,999.000,999.0,99.0 +1976,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,20.0,16.7,81,100900,0,0,355,0,0,0,0,0,0,0,240,5.2,1,1,12.9,77777,9,999999999,290,0.1540,0,88,999.000,999.0,99.0 +1976,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,19.4,16.1,81,100800,0,0,345,0,0,0,0,0,0,0,240,4.6,0,0,11.3,77777,9,999999999,279,0.1540,0,88,999.000,999.0,99.0 +1976,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,18.9,16.1,84,100700,0,0,357,0,0,0,0,0,0,0,240,4.1,4,3,11.3,77777,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1976,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,18.9,16.1,84,100700,0,0,349,0,0,0,0,0,0,0,250,4.6,1,1,11.3,77777,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1976,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,18.9,15.6,81,100700,0,0,357,0,0,0,0,0,0,0,270,4.1,3,3,11.3,77777,9,999999999,270,0.1530,0,88,999.000,999.0,99.0 +1976,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,17.8,15.6,87,100700,0,0,364,0,0,0,0,0,0,0,240,3.1,7,7,11.3,2440,9,999999999,270,0.1530,0,88,999.000,999.0,99.0 +1976,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,17.8,15.6,87,100700,0,0,348,0,0,0,0,0,0,0,240,3.1,2,2,9.7,77777,9,999999999,270,0.1530,0,88,999.000,999.0,99.0 +1976,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,17.2,15.0,87,100700,30,689,345,12,16,10,1200,600,1200,210,240,3.1,2,2,9.7,77777,9,999999999,270,0.1490,0,88,999.000,999.0,99.0 +1976,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,18.3,15.6,84,100700,249,1355,339,102,274,51,10700,19800,7100,910,260,2.6,0,0,9.7,77777,9,999999999,270,0.1490,0,88,999.000,999.0,99.0 +1976,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,20.0,15.6,76,100700,491,1355,347,289,564,83,30000,52500,10900,1610,270,4.6,0,0,9.7,77777,9,999999999,279,0.1490,0,88,999.000,999.0,99.0 +1976,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,22.2,15.0,64,100800,703,1355,357,469,691,108,49500,68800,13700,2380,290,2.6,0,0,12.9,77777,9,999999999,270,0.1490,0,88,999.000,999.0,99.0 +1976,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,22.8,15.0,62,100700,868,1355,379,557,508,230,58900,52300,25300,5810,320,4.1,4,4,16.1,77777,9,999999999,270,0.1490,0,88,999.000,999.0,99.0 +1976,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.9,15.6,60,100700,975,1355,378,652,663,172,69000,67400,20300,5030,310,7.2,2,2,19.3,77777,9,999999999,279,0.1490,0,88,999.000,999.0,99.0 +1976,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,25.0,15.6,56,100600,1018,1355,391,752,713,214,78800,72000,24500,6590,260,4.1,4,4,19.3,77777,9,999999999,279,0.1490,0,88,999.000,999.0,99.0 +1976,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,15.0,54,100600,992,1355,393,665,541,267,70700,56200,29400,8070,300,4.1,5,5,19.3,77777,9,999999999,270,0.1490,0,88,999.000,999.0,99.0 +1976,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,25.0,15.0,54,100500,900,1355,390,534,439,240,56500,45300,26300,6310,300,5.2,4,4,19.3,77777,9,999999999,270,0.1490,0,88,999.000,999.0,99.0 +1976,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,15.0,54,100600,749,1355,416,222,60,189,24500,6000,21200,6140,300,6.2,9,9,24.1,2130,9,999999999,270,0.1490,0,88,999.000,999.0,99.0 +1976,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,15.0,52,100600,547,1355,390,283,385,126,29800,37100,14800,2460,320,5.7,3,3,24.1,77777,9,999999999,270,0.1490,0,88,999.000,999.0,99.0 +1976,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,15.0,54,100600,311,1355,371,154,404,60,15700,32500,8200,1080,320,3.6,0,0,24.1,77777,9,999999999,270,0.1490,0,88,999.000,999.0,99.0 +1976,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,14.4,56,100700,68,1005,365,29,60,23,2900,2200,2700,410,290,3.1,0,0,24.1,77777,9,999999999,259,0.1490,0,88,999.000,999.0,99.0 +1976,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,22.2,15.0,64,100700,0,0,357,0,0,0,0,0,0,0,240,2.6,0,0,24.1,77777,9,999999999,270,0.1530,0,88,999.000,999.0,99.0 +1976,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,21.1,15.6,71,100700,0,0,353,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1976,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,21.7,15.0,66,100700,0,0,355,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,270,0.1530,0,88,999.000,999.0,99.0 +1976,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,21.1,15.6,71,100700,0,0,353,0,0,0,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1976,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,21.1,15.6,71,100700,0,0,353,0,0,0,0,0,0,0,280,4.6,0,0,24.1,77777,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1976,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,20.0,15.6,76,100700,0,0,347,0,0,0,0,0,0,0,280,4.6,0,0,24.1,77777,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1976,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,20.6,15.0,71,100700,0,0,349,0,0,0,0,0,0,0,280,4.6,0,0,24.1,77777,9,999999999,270,0.1520,0,88,999.000,999.0,99.0 +1976,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,18.3,14.4,78,100600,0,0,338,0,0,0,0,0,0,0,240,3.6,0,0,24.1,77777,9,999999999,259,0.1520,0,88,999.000,999.0,99.0 +1976,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,18.3,13.9,75,100600,0,0,337,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,250,0.1520,0,88,999.000,999.0,99.0 +1976,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,18.3,13.3,73,100600,0,0,337,0,0,0,0,0,0,0,280,5.7,0,0,24.1,77777,9,999999999,240,0.1520,0,88,999.000,999.0,99.0 +1976,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,18.3,12.2,68,100600,0,0,336,0,0,0,0,0,0,0,270,4.1,2,0,24.1,77777,9,999999999,229,0.1520,0,88,999.000,999.0,99.0 +1976,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,17.8,11.7,68,100600,28,667,339,14,8,13,1500,400,1500,320,260,3.6,10,1,24.1,77777,9,999999999,220,0.1410,0,88,999.000,999.0,99.0 +1976,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,18.9,11.7,63,100600,244,1356,352,104,142,78,11200,10500,9300,1670,270,3.1,10,3,19.3,77777,9,999999999,220,0.1410,0,88,999.000,999.0,99.0 +1976,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,12.8,63,100600,487,1356,356,274,317,160,28800,30300,17900,3390,280,5.7,9,2,19.3,77777,9,999999999,229,0.1410,0,88,999.000,999.0,99.0 +1976,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,22.2,13.9,59,100600,698,1356,356,466,672,119,48900,66500,14600,2570,270,4.6,3,0,19.3,77777,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1976,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,23.3,14.4,58,100600,863,1356,374,587,673,156,61700,67900,18300,3890,270,3.1,2,2,19.3,77777,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1976,9,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,100500,970,1356,381,656,706,148,70100,72200,18300,4350,260,5.7,3,1,19.3,77777,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1976,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,26.7,14.4,47,100400,1012,1356,395,683,545,274,72600,56700,30200,8580,230,6.2,9,3,19.3,77777,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1976,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,27.2,14.4,46,100500,986,1356,389,667,692,161,71000,70700,19500,4830,240,11.3,4,1,19.3,77777,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1976,9,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,100300,894,1356,394,600,634,180,62700,63800,20500,4590,240,6.7,4,3,19.3,77777,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1976,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,27.2,14.4,46,100300,742,1356,412,396,298,232,42400,31300,25200,5500,240,6.7,7,7,24.1,7620,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1976,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,26.7,14.4,47,100200,540,1356,405,240,177,169,26100,17400,19100,3960,230,6.7,7,6,24.1,7620,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1976,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.6,14.4,50,100200,303,1356,431,61,2,61,7000,100,7000,2280,220,6.2,10,10,24.1,3960,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1976,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.3,15.6,62,100200,62,983,419,17,0,17,1900,0,1900,600,190,4.6,10,10,19.3,7620,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1976,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,16.1,68,100100,0,0,414,0,0,0,0,0,0,0,200,5.2,10,10,19.3,7620,9,999999999,279,0.1520,0,88,999.000,999.0,99.0 +1976,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,22.2,16.1,68,100200,0,0,414,0,0,0,0,0,0,0,210,6.2,10,10,19.3,2440,9,999999999,279,0.1520,0,88,999.000,999.0,99.0 +1976,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,22.2,15.6,66,100200,0,0,413,0,0,0,0,0,0,0,210,6.2,10,10,19.3,2130,9,999999999,270,0.1520,0,88,999.000,999.0,99.0 +1976,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,21.1,15.6,71,100100,0,0,407,0,0,0,0,0,0,0,230,6.2,10,10,12.9,2130,9,999999999,270,0.1520,0,88,999.000,999.0,99.0 +1976,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,19.4,16.7,84,100100,0,0,399,0,0,0,0,0,0,0,220,5.2,10,10,8.0,2130,9,999999999,290,0.1520,0,88,999.000,999.0,99.0 +1976,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.9,17.2,90,100000,0,0,397,0,0,0,0,0,0,0,180,4.6,10,10,6.4,1490,9,999999999,300,0.1520,0,88,999.000,999.0,99.0 +1976,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,19.4,17.2,87,99900,0,0,400,0,0,0,0,0,0,0,230,4.1,10,10,6.4,1520,9,999999999,300,0.1510,0,88,999.000,999.0,99.0 +1976,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,17.2,87,99900,0,0,400,0,0,0,0,0,0,0,220,7.2,10,10,6.4,640,9,999999999,300,0.1510,0,88,999.000,999.0,99.0 +1976,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,17.2,90,99900,0,0,397,0,0,0,0,0,0,0,210,3.1,10,10,6.4,2130,9,999999999,300,0.1510,0,88,999.000,999.0,99.0 +1976,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,17.2,93,99900,0,0,341,0,0,0,0,0,0,0,220,4.6,0,0,6.4,77777,9,999999999,300,0.1510,0,88,999.000,999.0,99.0 +1976,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.3,16.7,90,99900,0,0,340,0,0,0,0,0,0,0,220,6.2,0,0,6.4,77777,9,999999999,290,0.1510,0,88,999.000,999.0,99.0 +1976,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,16.7,90,99900,26,644,364,6,4,5,600,200,600,130,230,4.6,6,6,4.0,3960,9,999999999,290,0.1530,0,88,999.000,999.0,99.0 +1976,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,18.9,16.7,87,99900,240,1357,367,85,82,71,9300,6000,8200,1520,240,3.6,10,6,4.0,2440,9,999999999,290,0.1530,0,88,999.000,999.0,99.0 +1976,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,21.1,16.1,73,99900,482,1357,396,127,47,110,13900,4400,12400,3150,230,6.2,9,9,6.4,2440,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1976,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,21.1,16.1,73,99900,694,1357,377,288,158,206,31400,16300,23100,5170,260,5.7,6,6,6.4,2440,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1976,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.2,16.1,68,100000,858,1357,394,485,356,259,52400,38000,28300,6690,250,4.6,8,8,8.0,610,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1976,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,23.3,14.4,58,100000,965,1357,380,400,283,198,43700,29500,22700,5600,270,6.7,4,4,11.3,77777,9,999999999,259,0.1530,0,88,999.000,999.0,99.0 +1976,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,23.3,14.4,58,99900,1007,1357,380,594,408,289,62700,42400,31200,8990,290,5.2,7,4,12.9,2440,9,999999999,259,0.1530,0,88,999.000,999.0,99.0 +1976,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,22.8,13.9,57,100000,980,1357,374,664,630,206,69400,63500,23300,5930,310,6.7,5,3,19.3,77777,9,999999999,250,0.1530,0,88,999.000,999.0,99.0 +1976,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,23.3,12.8,52,100000,888,1357,395,413,165,304,45000,17400,33600,8700,280,6.7,10,8,19.3,3050,9,999999999,229,0.1530,0,88,999.000,999.0,99.0 +1976,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.2,11.7,51,100000,735,1357,388,234,29,218,25700,2900,24100,6830,270,6.2,10,8,19.3,3660,9,999999999,209,0.1530,0,88,999.000,999.0,99.0 +1976,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,20.6,11.7,57,100000,533,1357,399,121,2,120,13900,100,13800,4850,320,5.2,10,10,24.1,3660,9,999999999,220,0.1530,0,88,999.000,999.0,99.0 +1976,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,20.0,10.6,55,100000,296,1357,394,53,5,52,6100,200,6100,2000,300,4.6,10,10,24.1,2440,9,999999999,200,0.1530,0,88,999.000,999.0,99.0 +1976,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,10.6,55,100100,57,938,394,15,0,15,1700,0,1700,540,310,4.6,10,10,24.1,2440,9,999999999,200,0.1530,0,88,999.000,999.0,99.0 +1976,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,10.6,57,100100,0,0,391,0,0,0,0,0,0,0,310,4.6,10,10,24.1,2440,9,999999999,200,0.1510,0,88,999.000,999.0,99.0 +1976,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,18.9,10.0,57,100200,0,0,388,0,0,0,0,0,0,0,320,4.1,10,10,24.1,2130,9,999999999,200,0.1510,0,88,999.000,999.0,99.0 +1976,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.3,8.3,52,100200,0,0,382,0,0,0,0,0,0,0,320,3.6,10,10,24.1,2130,9,999999999,179,0.1510,0,88,999.000,999.0,99.0 +1976,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.8,8.9,56,100200,0,0,380,0,0,0,0,0,0,0,330,5.7,10,10,24.1,2130,9,999999999,179,0.1510,0,88,999.000,999.0,99.0 +1976,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,16.1,8.3,60,100200,0,0,371,0,0,0,0,0,0,0,330,6.2,10,10,24.1,2130,9,999999999,179,0.1510,0,88,999.000,999.0,99.0 +1976,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,16.1,8.3,60,100300,0,0,353,0,0,0,0,0,0,0,330,6.2,8,8,24.1,2130,9,999999999,179,0.1510,0,88,999.000,999.0,99.0 +1976,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,15.0,8.3,65,100300,0,0,338,0,0,0,0,0,0,0,330,4.6,6,6,24.1,2130,9,999999999,179,0.1500,0,88,999.000,999.0,99.0 +1976,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,12.8,7.8,72,100300,0,0,306,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,170,0.1500,0,88,999.000,999.0,99.0 +1976,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,12.8,7.8,72,100300,0,0,306,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,170,0.1500,0,88,999.000,999.0,99.0 +1976,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,12.2,7.2,72,100300,0,0,303,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,170,0.1500,0,88,999.000,999.0,99.0 +1976,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,11.7,7.2,74,100400,0,0,301,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,170,0.1500,0,88,999.000,999.0,99.0 +1976,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,7.2,74,100500,24,600,301,12,2,12,1400,0,1400,420,300,2.6,0,0,24.1,77777,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1976,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,13.9,7.2,64,100500,235,1357,311,91,177,60,9600,12300,7500,1120,360,3.1,0,0,24.1,77777,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1976,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.6,8.3,62,100500,478,1357,319,259,426,107,27200,39600,13200,2030,150,3.1,0,0,24.1,77777,9,999999999,179,0.2500,0,88,999.000,999.0,99.0 +1976,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,8.3,62,100600,689,1357,330,405,451,175,42700,45300,19600,3730,150,3.1,2,2,24.1,77777,9,999999999,179,0.2500,0,88,999.000,999.0,99.0 +1976,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,16.7,9.4,63,100600,853,1357,325,583,648,173,60700,64900,19800,4190,140,4.1,0,0,24.1,77777,9,999999999,189,0.2500,0,88,999.000,999.0,99.0 +1976,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,17.2,10.6,65,100500,960,1357,351,558,351,308,60300,37800,33400,8980,110,5.2,6,6,24.1,2440,9,999999999,200,0.2500,0,88,999.000,999.0,99.0 +1976,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,18.3,8.9,54,100500,1001,1357,355,683,535,286,72100,55500,31000,8800,240,4.6,6,6,24.1,1220,9,999999999,179,0.2500,0,88,999.000,999.0,99.0 +1976,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,19.4,7.8,47,100500,974,1357,369,285,78,228,31800,8300,25800,7080,230,6.2,8,8,19.3,910,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1976,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,18.3,9.4,56,100600,881,1357,355,557,439,271,58100,45200,28700,7050,320,6.7,7,6,24.1,910,9,999999999,189,0.2500,0,88,999.000,999.0,99.0 +1976,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,18.9,7.2,47,100600,728,1357,339,455,550,158,48800,55800,18800,3410,290,6.7,1,1,24.1,77777,9,999999999,170,0.2500,0,88,999.000,999.0,99.0 +1976,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,18.9,6.1,43,100700,526,1357,343,288,423,123,30300,40300,14700,2380,270,6.7,2,2,24.1,77777,9,999999999,150,0.2500,0,88,999.000,999.0,99.0 +1976,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,18.3,6.1,45,100800,288,1357,335,96,144,65,10200,11200,7900,1200,280,5.2,1,1,24.1,77777,9,999999999,160,0.2500,0,88,999.000,999.0,99.0 +1976,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,17.2,4.4,43,100900,52,894,328,19,10,18,2000,600,2000,440,280,4.6,1,1,24.1,77777,9,999999999,139,0.2500,0,88,999.000,999.0,99.0 +1976,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,17.2,6.1,48,101000,0,0,356,0,0,0,0,0,0,0,270,3.6,8,8,24.1,1370,9,999999999,160,0.1500,0,88,999.000,999.0,99.0 +1976,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,16.7,5.6,48,101100,0,0,335,0,0,0,0,0,0,0,300,5.7,3,3,24.1,77777,9,999999999,150,0.1500,0,88,999.000,999.0,99.0 +1976,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,15.0,6.1,56,101200,0,0,314,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,160,0.1500,0,88,999.000,999.0,99.0 +1976,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,13.9,6.7,62,101300,0,0,310,0,0,0,0,0,0,0,260,4.6,0,0,24.1,77777,9,999999999,160,0.1500,0,88,999.000,999.0,99.0 +1976,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,12.8,6.1,64,101400,0,0,305,0,0,0,0,0,0,0,240,4.6,0,0,24.1,77777,9,999999999,160,0.1500,0,88,999.000,999.0,99.0 +1976,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,13.3,3.9,53,101500,0,0,305,0,0,0,0,0,0,0,270,5.7,0,0,24.1,77777,9,999999999,139,0.1500,0,88,999.000,999.0,99.0 +1976,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,13.3,3.3,51,101600,0,0,304,0,0,0,0,0,0,0,280,6.7,0,0,24.1,77777,9,999999999,129,0.1490,0,88,999.000,999.0,99.0 +1976,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,13.3,2.8,49,101600,0,0,303,0,0,0,0,0,0,0,270,7.7,0,0,24.1,77777,9,999999999,129,0.1490,0,88,999.000,999.0,99.0 +1976,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,12.2,3.3,55,101700,0,0,299,0,0,0,0,0,0,0,250,5.7,0,0,24.1,77777,9,999999999,129,0.1490,0,88,999.000,999.0,99.0 +1976,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,11.1,3.3,59,101800,0,0,295,0,0,0,0,0,0,0,240,6.2,0,0,24.1,77777,9,999999999,129,0.1490,0,88,999.000,999.0,99.0 +1976,9,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.3,64,101800,0,0,290,0,0,0,0,0,0,0,240,4.1,0,0,24.1,77777,9,999999999,129,0.1490,0,88,999.000,999.0,99.0 +1976,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,3.9,69,101800,22,577,288,15,44,10,0,0,0,0,220,4.1,0,0,24.1,77777,9,999999999,139,0.0820,0,88,999.000,999.0,99.0 +1976,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.1,4.4,64,101900,231,1358,296,115,448,38,11800,32300,6300,700,250,5.2,0,0,24.1,77777,9,999999999,139,0.0820,0,88,999.000,999.0,99.0 +1976,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,13.9,3.3,49,102000,473,1358,306,301,692,58,31300,64100,8900,1200,260,5.7,0,0,24.1,77777,9,999999999,129,0.0820,0,88,999.000,999.0,99.0 +1976,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,15.0,3.9,48,102000,684,1358,312,478,793,76,50600,78200,11100,1720,250,6.2,0,0,24.1,77777,9,999999999,139,0.0820,0,88,999.000,999.0,99.0 +1976,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,16.1,3.3,43,102000,849,1358,316,626,856,88,64900,84800,11800,2000,230,6.2,0,0,24.1,77777,9,999999999,129,0.0820,0,88,999.000,999.0,99.0 +1976,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,17.8,3.9,40,102000,955,1358,330,679,827,95,70400,82400,12300,2400,250,6.2,1,1,24.1,77777,9,999999999,139,0.0820,0,88,999.000,999.0,99.0 +1976,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,18.9,5.0,40,101900,996,1358,337,718,850,91,74400,84900,12000,2520,250,7.7,1,1,24.1,77777,9,999999999,150,0.0820,0,88,999.000,999.0,99.0 +1976,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,20.6,6.1,39,101800,968,1358,346,679,787,114,72100,79500,15300,3220,230,7.2,1,1,24.1,77777,9,999999999,160,0.0820,0,88,999.000,999.0,99.0 +1976,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,21.1,6.7,39,101800,875,1358,349,564,679,124,60300,69200,15600,3220,200,7.7,1,1,24.1,77777,9,999999999,160,0.0820,0,88,999.000,999.0,99.0 +1976,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,21.1,7.2,41,101700,721,1358,350,475,762,67,49600,74700,9800,1590,220,11.3,1,1,24.1,77777,9,999999999,170,0.0820,0,88,999.000,999.0,99.0 +1976,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,20.6,7.8,44,101600,519,1358,341,335,710,62,35000,67100,9300,1300,200,8.2,0,0,24.1,77777,9,999999999,170,0.0820,0,88,999.000,999.0,99.0 +1976,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,18.9,9.4,54,101600,281,1358,335,149,509,42,15400,39900,7100,790,200,9.3,0,0,24.1,77777,9,999999999,189,0.0820,0,88,999.000,999.0,99.0 +1976,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,17.8,9.4,58,101600,48,849,337,23,77,15,2100,2900,1900,260,200,8.2,3,1,24.1,77777,9,999999999,189,0.0820,0,88,999.000,999.0,99.0 +1976,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,17.2,10.0,63,101700,0,0,339,0,0,0,0,0,0,0,200,6.2,3,2,24.1,77777,9,999999999,200,0.1490,0,88,999.000,999.0,99.0 +1976,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,16.7,10.6,67,101700,0,0,333,0,0,0,0,0,0,0,200,6.2,1,1,24.1,77777,9,999999999,200,0.1490,0,88,999.000,999.0,99.0 +1976,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,16.7,11.1,70,101700,0,0,327,0,0,0,0,0,0,0,190,7.2,3,0,24.1,77777,9,999999999,209,0.1490,0,88,999.000,999.0,99.0 +1976,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,12.2,75,101700,0,0,335,0,0,0,0,0,0,0,190,6.7,3,1,24.1,77777,9,999999999,229,0.1490,0,88,999.000,999.0,99.0 +1976,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,17.2,12.8,75,101700,0,0,348,0,0,0,0,0,0,0,210,6.2,6,4,24.1,7620,9,999999999,229,0.1490,0,88,999.000,999.0,99.0 +1976,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,17.8,13.9,78,101700,0,0,358,0,0,0,0,0,0,0,210,4.6,6,6,24.1,7620,9,999999999,250,0.1490,0,88,999.000,999.0,99.0 +1976,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,17.8,14.4,81,101700,0,0,359,0,0,0,0,0,0,0,240,4.6,7,6,24.1,7620,9,999999999,259,0.1480,0,88,999.000,999.0,99.0 +1976,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,17.2,14.4,84,101700,0,0,356,0,0,0,0,0,0,0,240,4.1,7,6,24.1,7620,9,999999999,259,0.1480,0,88,999.000,999.0,99.0 +1976,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,17.2,14.4,84,101700,0,0,366,0,0,0,0,0,0,0,300,5.2,8,8,19.3,730,9,999999999,259,0.1480,0,88,999.000,999.0,99.0 +1976,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,16.1,6.7,54,101800,0,0,346,0,0,0,0,0,0,0,290,5.2,7,7,24.1,2440,9,999999999,160,0.1480,0,88,999.000,999.0,99.0 +1976,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,15.0,2.2,42,101900,0,0,341,0,0,0,0,0,0,0,300,5.7,8,8,24.1,2440,9,999999999,120,0.1480,0,88,999.000,999.0,99.0 +1976,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,14.4,2.2,44,101900,20,555,355,5,0,5,0,0,0,0,320,5.7,10,10,24.1,1830,9,999999999,129,0.2230,0,88,999.000,999.0,99.0 +1976,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,13.9,0.6,40,102000,226,1359,341,56,6,55,6300,100,6200,1880,310,3.1,10,9,24.1,2440,9,999999999,110,0.2230,0,88,999.000,999.0,99.0 +1976,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,13.9,1.1,42,102000,469,1359,334,130,77,103,14400,7400,11800,2350,320,4.6,8,8,24.1,2440,9,999999999,120,0.2230,0,88,999.000,999.0,99.0 +1976,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,13.9,0.6,40,102000,679,1359,328,244,86,201,26800,8500,22500,6090,300,4.1,8,7,24.1,2130,9,999999999,110,0.2230,0,88,999.000,999.0,99.0 +1976,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,14.4,1.7,42,102100,844,1359,328,466,330,260,50200,35200,28300,6650,280,4.1,7,6,32.2,7620,9,999999999,120,0.2230,0,88,999.000,999.0,99.0 +1976,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,16.1,2.2,39,102000,949,1359,336,454,228,293,49100,24600,31900,8370,290,4.1,7,6,32.2,7620,9,999999999,120,0.2230,0,88,999.000,999.0,99.0 +1976,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,17.8,1.7,34,102000,990,1359,341,632,471,287,66600,48900,30900,8660,270,4.1,7,5,32.2,7620,9,999999999,120,0.2230,0,88,999.000,999.0,99.0 +1976,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,18.9,1.7,32,101800,962,1359,346,597,316,372,63600,33900,39500,11240,350,1.5,7,5,32.2,7620,9,999999999,120,0.2230,0,88,999.000,999.0,99.0 +1976,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,17.8,3.9,40,101800,868,1359,341,502,466,202,53700,48100,22900,5030,160,4.1,6,4,32.2,7620,9,999999999,139,0.2230,0,88,999.000,999.0,99.0 +1976,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,17.8,2.8,37,101800,715,1359,340,405,408,189,42500,41100,20800,4120,120,3.6,6,4,48.3,7620,9,999999999,129,0.2230,0,88,999.000,999.0,99.0 +1976,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,17.8,2.8,37,101800,511,1359,337,270,366,131,28100,34600,15100,2550,120,4.1,4,3,32.2,77777,9,999999999,129,0.2230,0,88,999.000,999.0,99.0 +1976,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,16.7,5.0,46,101800,273,1359,327,103,182,65,10800,13700,8100,1210,120,4.1,2,1,32.2,77777,9,999999999,150,0.2230,0,88,999.000,999.0,99.0 +1976,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.0,7.8,62,101800,43,827,316,19,11,17,1900,600,1900,410,130,3.6,0,0,32.2,77777,9,999999999,170,0.2230,0,88,999.000,999.0,99.0 +1976,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.9,7.8,67,101900,0,0,311,0,0,0,0,0,0,0,130,4.1,0,0,32.2,77777,9,999999999,170,0.1480,0,88,999.000,999.0,99.0 +1976,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,13.3,8.3,72,101900,0,0,309,0,0,0,0,0,0,0,150,3.1,0,0,32.2,77777,9,999999999,179,0.1480,0,88,999.000,999.0,99.0 +1976,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,12.8,7.2,69,101900,0,0,306,0,0,0,0,0,0,0,150,1.5,0,0,32.2,77777,9,999999999,170,0.1480,0,88,999.000,999.0,99.0 +1976,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,13.3,4.4,55,101900,0,0,305,0,0,0,0,0,0,0,300,4.1,0,0,32.2,77777,9,999999999,139,0.1480,0,88,999.000,999.0,99.0 +1976,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,12.2,4.4,59,101900,0,0,300,0,0,0,0,0,0,0,310,4.1,0,0,32.2,77777,9,999999999,139,0.1480,0,88,999.000,999.0,99.0 +1976,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,11.1,3.9,61,101900,0,0,295,0,0,0,0,0,0,0,310,3.1,0,0,32.2,77777,9,999999999,139,0.1480,0,88,999.000,999.0,99.0 +1976,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,10.6,3.3,61,101900,0,0,293,0,0,0,0,0,0,0,320,3.6,0,0,32.2,77777,9,999999999,129,0.1470,0,88,999.000,999.0,99.0 +1976,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.0,2.8,61,101900,0,0,290,0,0,0,0,0,0,0,320,3.6,0,0,32.2,77777,9,999999999,129,0.1470,0,88,999.000,999.0,99.0 +1976,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,8.9,2.8,66,101900,0,0,285,0,0,0,0,0,0,0,310,4.1,0,0,32.2,77777,9,999999999,129,0.1470,0,88,999.000,999.0,99.0 +1976,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,8.9,2.8,66,101900,0,0,285,0,0,0,0,0,0,0,330,4.1,0,0,32.2,77777,9,999999999,129,0.1470,0,88,999.000,999.0,99.0 +1976,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,2.8,66,101900,0,0,285,0,0,0,0,0,0,0,320,4.1,0,0,32.2,77777,9,999999999,129,0.1470,0,88,999.000,999.0,99.0 +1976,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.3,2.8,68,101900,18,533,283,9,0,9,0,0,0,0,320,3.6,0,0,32.2,77777,9,999999999,129,0.3120,0,88,999.000,999.0,99.0 +1976,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,10.0,3.9,66,102000,222,1360,291,79,111,60,8500,7900,7200,1280,310,2.6,0,0,32.2,77777,9,999999999,139,0.3120,0,88,999.000,999.0,99.0 +1976,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,12.8,5.0,59,102000,464,1360,304,237,351,116,24700,32300,13600,2210,300,2.6,0,0,32.2,77777,9,999999999,150,0.3120,0,88,999.000,999.0,99.0 +1976,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,14.4,6.7,60,102000,675,1360,312,411,491,166,43400,49100,18900,3490,280,3.1,1,0,24.1,77777,9,999999999,160,0.3120,0,88,999.000,999.0,99.0 +1976,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,16.1,5.6,50,102000,838,1360,318,559,585,196,59800,60200,22500,4720,250,2.6,0,0,32.2,77777,9,999999999,150,0.3120,0,88,999.000,999.0,99.0 +1976,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,17.2,2.8,38,101900,944,1360,320,661,638,216,68600,63900,24100,5770,290,4.1,0,0,32.2,77777,9,999999999,129,0.3120,0,88,999.000,999.0,99.0 +1976,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,18.3,2.8,36,101900,984,1360,325,699,655,222,72600,65800,24900,6340,290,5.2,0,0,32.2,77777,9,999999999,129,0.3120,0,88,999.000,999.0,99.0 +1976,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,18.9,3.3,36,101800,956,1360,328,674,645,218,69900,64600,24300,5940,300,5.2,0,0,32.2,77777,9,999999999,129,0.3120,0,88,999.000,999.0,99.0 +1976,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,20.0,3.9,35,101800,862,1360,334,585,595,205,62400,61300,23500,5070,270,4.1,1,0,32.2,77777,9,999999999,139,0.3120,0,88,999.000,999.0,99.0 +1976,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,20.0,3.3,33,101800,708,1360,333,446,519,174,47100,52300,19800,3740,300,6.2,1,0,32.2,77777,9,999999999,129,0.3120,0,88,999.000,999.0,99.0 +1976,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,20.0,3.3,33,101800,504,1360,333,271,381,128,28200,35900,14900,2480,280,6.2,1,0,32.2,77777,9,999999999,129,0.3120,0,88,999.000,999.0,99.0 +1976,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,18.3,3.3,37,101800,266,1360,326,104,156,73,10900,11600,8600,1400,290,3.1,1,0,32.2,77777,9,999999999,129,0.3120,0,88,999.000,999.0,99.0 +1976,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,3.3,40,101800,39,782,321,17,2,16,1800,0,1800,540,240,3.6,0,0,32.2,77777,9,999999999,129,0.3120,0,88,999.000,999.0,99.0 +1976,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,16.7,3.3,41,101800,0,0,319,0,0,0,0,0,0,0,270,1.5,0,0,32.2,77777,9,999999999,129,0.1470,0,88,999.000,999.0,99.0 +1976,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,13.9,7.8,67,101900,0,0,322,0,0,0,0,0,0,0,190,3.1,2,2,32.2,77777,9,999999999,170,0.1470,0,88,999.000,999.0,99.0 +1976,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,13.3,8.9,75,101900,0,0,323,0,0,0,0,0,0,0,200,2.6,3,3,32.2,77777,9,999999999,189,0.1470,0,88,999.000,999.0,99.0 +1976,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,14.4,8.3,67,101900,0,0,324,0,0,0,0,0,0,0,240,4.1,2,2,32.2,77777,9,999999999,179,0.1470,0,88,999.000,999.0,99.0 +1976,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,13.3,7.8,69,101900,0,0,309,0,0,0,0,0,0,0,230,2.6,0,0,32.2,77777,9,999999999,170,0.1470,0,88,999.000,999.0,99.0 +1976,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,12.8,8.3,75,101900,0,0,307,0,0,0,0,0,0,0,240,3.1,0,0,32.2,77777,9,999999999,179,0.1470,0,88,999.000,999.0,99.0 +1976,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,12.2,8.3,77,102000,0,0,304,0,0,0,0,0,0,0,220,2.1,0,0,32.2,77777,9,999999999,179,0.1460,0,88,999.000,999.0,99.0 +1976,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,12.8,8.3,75,102000,0,0,307,0,0,0,0,0,0,0,230,2.1,0,0,32.2,77777,9,999999999,179,0.1460,0,88,999.000,999.0,99.0 +1976,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,12.2,8.3,77,102000,0,0,304,0,0,0,0,0,0,0,270,1.5,0,0,32.2,77777,9,999999999,179,0.1460,0,88,999.000,999.0,99.0 +1976,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,11.7,8.3,80,102000,0,0,312,0,0,0,0,0,0,0,360,1.0,2,2,24.1,77777,9,999999999,179,0.1460,0,88,999.000,999.0,99.0 +1976,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,11.7,8.9,83,102000,0,0,316,0,0,0,0,0,0,0,210,1.5,3,3,19.3,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1976,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,11.1,8.9,86,102000,17,510,310,10,19,7,0,0,0,0,190,2.1,3,2,19.3,77777,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1976,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,13.3,10.0,80,102100,217,1361,329,92,197,60,9600,13000,7500,1140,220,1.5,8,5,19.3,7620,9,999999999,200,0.0890,0,88,999.000,999.0,99.0 +1976,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,14.4,10.6,78,102100,459,1361,335,190,155,138,20700,14600,15800,3140,200,1.5,8,5,19.3,7620,9,999999999,209,0.0890,0,88,999.000,999.0,99.0 +1976,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,14.4,10.6,78,102100,670,1361,330,429,564,149,45700,56400,17800,3090,140,2.6,8,3,19.3,77777,9,999999999,209,0.0890,0,88,999.000,999.0,99.0 +1976,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,16.1,11.1,72,102100,833,1361,356,319,156,223,35300,16400,25200,6100,120,2.1,9,8,24.1,7620,9,999999999,209,0.0890,0,88,999.000,999.0,99.0 +1976,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,18.9,11.7,63,102100,939,1361,371,381,93,317,42000,9500,35400,11050,130,3.6,10,8,24.1,7620,9,999999999,220,0.0890,0,88,999.000,999.0,99.0 +1976,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,18.9,12.2,65,102000,979,1361,372,512,252,330,55200,27200,35600,9910,100,3.1,10,8,24.1,1520,9,999999999,229,0.0890,0,88,999.000,999.0,99.0 +1976,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,21.1,10.6,51,101900,950,1361,365,547,475,213,59000,49300,24500,5900,200,5.2,9,4,24.1,77777,9,999999999,209,0.0890,0,88,999.000,999.0,99.0 +1976,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,21.1,9.4,47,101800,855,1361,380,284,31,265,31300,3100,29300,8850,180,5.2,9,8,24.1,7620,9,999999999,189,0.0890,0,88,999.000,999.0,99.0 +1976,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,18.9,10.0,57,101800,701,1361,388,207,3,206,23600,300,23500,8250,160,6.2,10,10,24.1,3050,9,999999999,200,0.0890,0,88,999.000,999.0,99.0 +1976,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,18.3,8.9,54,101700,497,1361,383,111,1,111,12800,100,12700,4420,180,6.2,10,10,24.1,2440,9,999999999,179,0.0890,0,88,999.000,999.0,99.0 +1976,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,17.2,10.6,65,101700,258,1361,379,29,5,28,3500,100,3400,1140,160,5.7,10,10,24.1,2440,9,999999999,209,0.0890,0,88,999.000,999.0,99.0 +1976,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,16.1,12.2,78,101600,35,737,376,5,0,5,600,0,600,200,140,5.2,10,10,19.3,1160,9,999999999,229,0.0890,0,88,999.000,999.0,99.0 +1976,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,15.6,12.8,84,101500,0,0,374,0,0,0,0,0,0,0,150,6.2,10,10,19.3,1160,9,999999999,240,0.1460,0,88,999.000,999.0,99.0 +1976,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,15.6,13.3,87,101500,0,0,374,0,0,0,0,0,0,0,150,6.2,10,10,19.3,1160,9,999999999,240,0.1460,0,88,999.000,999.0,99.0 +1976,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,13.9,90,101400,0,0,375,0,0,0,0,0,0,0,170,4.1,10,10,19.3,880,9,999999999,250,0.1460,0,88,999.000,999.0,99.0 +1976,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,14.4,90,101300,0,0,378,0,0,0,0,0,0,0,150,3.6,10,10,19.3,910,9,999999999,259,0.1460,0,88,999.000,999.0,99.0 +1976,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,15.6,93,101200,0,0,383,0,0,0,0,0,0,0,170,3.6,10,10,16.1,1520,9,999999999,279,0.1460,0,88,999.000,999.0,99.0 +1976,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,17.2,16.1,93,101100,0,0,386,0,0,0,0,0,0,0,170,4.1,10,10,9.7,1980,9,999999999,279,0.1460,0,88,999.000,999.0,99.0 +1976,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,18.9,17.2,90,101000,0,0,397,0,0,0,0,0,0,0,210,6.7,10,10,9.7,1980,9,999999999,300,0.1450,0,88,999.000,999.0,99.0 +1976,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,18.9,16.7,87,101000,0,0,396,0,0,0,0,0,0,0,200,4.1,10,10,8.0,2130,9,999999999,290,0.1450,0,88,999.000,999.0,99.0 +1976,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,18.3,17.2,93,100900,0,0,394,0,0,0,0,0,0,0,200,3.6,10,10,6.4,910,9,999999999,300,0.1450,0,88,999.000,999.0,99.0 +1976,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,18.3,16.1,87,100700,0,0,392,0,0,0,0,0,0,0,190,6.2,10,10,9.7,1490,9,999999999,279,0.1450,0,88,999.000,999.0,99.0 +1976,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,18.3,16.7,90,100600,0,0,393,0,0,0,0,0,0,0,200,6.2,10,10,8.0,550,9,999999999,290,0.1450,0,88,999.000,999.0,99.0 +1976,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,18.9,17.2,90,100600,15,488,397,3,0,3,0,0,0,0,220,6.2,10,10,6.4,370,9,999999999,300,0.0690,0,88,999.000,999.0,99.0 +1976,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,19.4,17.8,90,100600,212,1361,400,52,2,52,5800,0,5800,1760,230,6.2,10,10,16.1,6100,9,999999999,309,0.0690,0,88,999.000,999.0,99.0 +1976,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,20.6,17.8,84,100600,455,1361,407,131,5,129,14700,300,14500,4680,230,7.2,10,10,16.1,6100,9,999999999,309,0.0690,0,88,999.000,999.0,99.0 +1976,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,18.3,79,100700,665,1361,380,396,501,149,42100,50100,17600,3080,240,7.2,9,4,16.1,77777,9,999999999,320,0.0690,0,88,999.000,999.0,99.0 +1976,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,17.8,74,100700,828,1361,408,209,2,208,24300,200,24200,9130,250,6.7,10,9,19.3,730,9,999999999,320,0.0690,0,88,999.000,999.0,99.0 +1976,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,22.8,17.8,74,100600,933,1361,419,175,3,173,21000,200,20900,8350,260,6.7,10,10,19.3,880,9,999999999,320,0.0690,0,88,999.000,999.0,99.0 +1976,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,17.8,71,100600,973,1361,422,300,7,295,34800,600,34300,12800,250,5.7,10,10,17.7,1100,9,999999999,309,0.0690,0,88,999.000,999.0,99.0 +1976,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,22.8,17.8,74,100500,944,1361,419,279,1,278,32300,100,32200,12080,250,5.2,10,10,16.1,1100,9,999999999,309,0.0690,0,88,999.000,999.0,99.0 +1976,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,22.8,17.8,74,100500,849,1361,419,272,10,266,31200,900,30600,11010,240,5.2,10,10,16.1,1310,9,999999999,309,0.0690,0,88,999.000,999.0,99.0 +1976,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,22.2,18.3,79,100500,694,1361,416,144,6,141,16900,400,16700,6210,250,4.6,10,10,14.5,1250,9,999999999,320,0.0690,0,88,999.000,999.0,99.0 +1976,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,21.1,18.3,84,100400,490,1361,410,78,1,77,9100,100,9100,3280,210,3.6,10,10,8.0,1400,9,999999999,320,0.0690,0,88,999.000,999.0,99.0 +1976,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,20.6,18.9,90,100400,251,1361,408,35,1,35,4100,0,4100,1370,210,3.1,10,10,4.8,1100,9,999999999,329,0.0690,0,88,999.000,999.0,99.0 +1976,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,20.6,18.9,90,100400,31,692,408,14,0,14,1600,0,1600,480,230,4.1,10,10,4.8,240,9,999999999,329,0.0690,0,88,999.000,999.0,99.0 +1976,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,20.0,18.9,93,100400,0,0,405,0,0,0,0,0,0,0,340,5.2,10,10,4.8,240,9,999999999,329,0.1450,0,88,999.000,999.0,99.0 +1976,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,17.8,16.1,90,100500,0,0,390,0,0,0,0,0,0,0,10,6.2,10,10,11.3,310,9,999999999,279,0.1450,0,88,999.000,999.0,99.0 +1976,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,17.2,15.6,90,100500,0,0,386,0,0,0,0,0,0,0,360,4.1,10,10,17.7,370,9,999999999,270,0.1450,0,88,999.000,999.0,99.0 +1976,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,15.6,14.4,93,100500,0,0,376,0,0,0,0,0,0,0,10,5.2,10,10,17.7,370,9,999999999,259,0.1450,0,88,999.000,999.0,99.0 +1976,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,14.4,13.3,93,100500,0,0,368,0,0,0,0,0,0,0,30,5.7,10,10,16.1,210,9,999999999,240,0.1450,0,88,999.000,999.0,99.0 +1976,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,13.9,12.8,93,100500,0,0,365,0,0,0,0,0,0,0,30,6.2,10,10,16.1,240,9,999999999,229,0.1450,0,88,999.000,999.0,99.0 +1976,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,13.9,12.2,90,100500,0,0,364,0,0,0,0,0,0,0,350,5.2,10,10,16.1,240,9,999999999,229,0.1440,0,88,999.000,999.0,99.0 +1976,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,13.3,12.8,96,100500,0,0,362,0,0,0,0,0,0,0,360,5.2,10,10,6.4,180,9,999999999,229,0.1440,0,88,999.000,999.0,99.0 +1976,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,13.9,12.2,90,100500,0,0,364,0,0,0,0,0,0,0,20,4.1,10,10,12.9,210,9,999999999,229,0.1440,0,88,999.000,999.0,99.0 +1976,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,13.3,12.2,93,100600,0,0,361,0,0,0,0,0,0,0,360,5.2,10,10,16.1,310,9,999999999,220,0.1440,0,88,999.000,999.0,99.0 +1976,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,13.3,11.7,90,100600,0,0,361,0,0,0,0,0,0,0,350,4.1,10,10,19.3,310,9,999999999,220,0.1440,0,88,999.000,999.0,99.0 +1976,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,13.3,11.1,87,100700,14,465,360,6,0,6,0,0,0,0,350,4.1,10,10,19.3,310,9,999999999,209,0.0660,0,88,999.000,999.0,99.0 +1976,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,13.3,11.1,87,100800,208,1362,360,58,0,58,6400,0,6400,1870,320,4.1,10,10,20.9,940,9,999999999,209,0.0660,0,88,999.000,999.0,99.0 +1976,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,13.9,10.6,80,100900,450,1362,353,153,48,137,16800,4500,15300,3630,330,5.2,9,9,20.9,670,9,999999999,200,0.0660,0,88,999.000,999.0,99.0 +1976,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,16.1,11.1,72,101000,660,1362,344,358,429,149,38100,42800,17300,3070,320,4.6,5,5,20.9,77777,9,999999999,209,0.0660,0,88,999.000,999.0,99.0 +1976,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,17.2,9.4,60,101000,823,1362,342,548,653,151,57400,65500,17700,3580,310,6.2,3,3,24.1,77777,9,999999999,189,0.0660,0,88,999.000,999.0,99.0 +1976,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,17.2,8.9,58,101000,928,1362,350,469,309,258,51200,33300,28500,7040,320,5.7,6,6,24.1,1070,9,999999999,179,0.0660,0,88,999.000,999.0,99.0 +1976,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,17.2,7.8,54,101000,967,1362,358,655,570,248,69800,59200,27700,7110,320,5.7,8,8,24.1,1220,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1976,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,18.3,6.7,47,101000,938,1362,352,682,745,166,71900,75600,19800,4540,310,6.2,6,6,24.1,1370,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1976,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,18.9,6.1,43,101000,842,1362,351,520,553,175,56100,57000,20800,4180,310,6.7,5,5,24.1,77777,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1976,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,18.3,5.0,42,101100,687,1362,345,438,572,147,46800,57500,17700,3070,340,6.2,4,4,24.1,77777,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1976,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,16.7,4.4,45,101100,482,1362,334,316,638,88,32600,58800,11700,1680,320,5.2,3,3,24.1,77777,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1976,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,16.7,5.0,46,101200,243,1362,327,121,450,40,12500,33100,6500,740,360,4.6,1,1,24.1,77777,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1976,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,15.0,5.0,51,101300,28,647,323,19,68,12,1600,2200,1500,210,360,3.1,2,2,24.1,77777,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1976,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,13.9,5.0,55,101300,0,0,318,0,0,0,0,0,0,0,20,2.6,2,2,24.1,77777,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1976,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,12.8,5.6,62,101400,0,0,304,0,0,0,0,0,0,0,30,2.1,0,0,24.1,77777,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1976,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,12.2,5.6,64,101400,0,0,302,0,0,0,0,0,0,0,10,3.1,0,0,24.1,77777,9,999999999,150,0.1440,0,88,999.000,999.0,99.0 +1976,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,11.1,3.9,61,101400,0,0,295,0,0,0,0,0,0,0,360,2.1,0,0,24.1,77777,9,999999999,139,0.1440,0,88,999.000,999.0,99.0 +1976,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,11.1,3.3,59,101400,0,0,295,0,0,0,0,0,0,0,360,2.1,0,0,24.1,77777,9,999999999,129,0.1440,0,88,999.000,999.0,99.0 +1976,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,10.6,3.9,64,101400,0,0,293,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,139,0.1440,0,88,999.000,999.0,99.0 +1976,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,9.4,3.9,69,101400,0,0,288,0,0,0,0,0,0,0,340,2.1,0,0,24.1,77777,9,999999999,139,0.1430,0,88,999.000,999.0,99.0 +1976,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,9.4,3.9,69,101400,0,0,303,0,0,0,0,0,0,0,310,2.6,5,4,24.1,77777,9,999999999,139,0.1430,0,88,999.000,999.0,99.0 +1976,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,8.9,5.0,77,101400,0,0,293,0,0,0,0,0,0,0,300,1.5,1,1,24.1,77777,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1976,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,8.3,4.4,77,101300,0,0,284,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,139,0.1430,0,88,999.000,999.0,99.0 +1976,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,8.9,4.4,74,101300,0,0,287,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,139,0.1430,0,88,999.000,999.0,99.0 +1976,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,7.8,4.4,80,101300,12,443,282,8,13,6,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,139,0.1120,0,88,999.000,999.0,99.0 +1976,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,9.4,4.4,71,101400,203,1363,289,90,334,40,9200,22500,5800,710,270,4.1,0,0,20.9,77777,9,999999999,139,0.1120,0,88,999.000,999.0,99.0 +1976,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,10.6,2.8,59,101400,445,1363,292,267,610,66,27900,55600,9700,1280,270,4.6,0,0,20.9,77777,9,999999999,129,0.1120,0,88,999.000,999.0,99.0 +1976,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,12.2,2.8,53,101300,655,1363,299,446,741,87,46200,72100,11400,1810,280,5.7,0,0,24.1,77777,9,999999999,129,0.1120,0,88,999.000,999.0,99.0 +1976,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,13.9,2.8,47,101200,818,1363,306,590,808,102,62000,80600,13500,2390,270,6.2,0,0,24.1,77777,9,999999999,129,0.1120,0,88,999.000,999.0,99.0 +1976,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,15.6,3.9,46,101200,922,1363,314,682,838,112,72200,84300,14900,2940,250,5.7,0,0,24.1,77777,9,999999999,139,0.1120,0,88,999.000,999.0,99.0 +1976,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,16.7,4.4,45,101000,961,1363,320,719,852,115,76300,86000,15500,3180,250,5.7,0,0,24.1,77777,9,999999999,139,0.1120,0,88,999.000,999.0,99.0 +1976,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,17.8,5.0,43,100900,931,1363,325,692,843,112,73200,84900,15000,2980,240,6.7,0,0,24.1,77777,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1976,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,18.3,4.4,40,100900,835,1363,327,608,816,104,63900,81600,13700,2480,240,6.2,0,0,24.1,77777,9,999999999,139,0.1120,0,88,999.000,999.0,99.0 +1976,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,18.9,5.0,40,100800,680,1363,330,468,754,90,48700,73800,11800,1890,240,7.7,0,0,24.1,77777,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1976,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,18.3,5.0,42,100800,475,1363,328,293,637,69,30700,59100,10000,1360,240,9.3,0,0,24.1,77777,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1976,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,17.8,6.1,47,100800,236,1363,327,112,386,44,11400,27800,6500,790,240,8.2,0,0,24.1,77777,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1976,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.1,6.1,52,100800,24,625,319,15,31,12,0,0,0,0,250,5.7,0,0,24.1,77777,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1976,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.0,6.7,58,100900,0,0,315,0,0,0,0,0,0,0,250,5.2,0,0,24.1,77777,9,999999999,160,0.1430,0,88,999.000,999.0,99.0 +1976,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,14.4,6.7,60,100900,0,0,312,0,0,0,0,0,0,0,230,5.7,0,0,24.1,77777,9,999999999,160,0.1430,0,88,999.000,999.0,99.0 +1976,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,7.2,64,100900,0,0,311,0,0,0,0,0,0,0,240,5.7,0,0,24.1,77777,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1976,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,7.2,69,101000,0,0,306,0,0,0,0,0,0,0,230,5.2,0,0,24.1,77777,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1976,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,12.8,7.2,69,100900,0,0,306,0,0,0,0,0,0,0,240,5.2,0,0,24.1,77777,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1976,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,13.3,7.2,67,100900,0,0,308,0,0,0,0,0,0,0,260,5.2,0,0,24.1,77777,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1976,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,12.8,7.2,69,100900,0,0,306,0,0,0,0,0,0,0,240,5.2,0,0,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1976,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,12.8,7.2,69,100900,0,0,306,0,0,0,0,0,0,0,250,4.6,0,0,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1976,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,12.8,7.2,69,100900,0,0,306,0,0,0,0,0,0,0,250,6.2,0,0,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1976,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,11.7,7.2,74,100900,0,0,301,0,0,0,0,0,0,0,250,4.6,0,0,24.1,77777,9,999999999,170,0.1420,0,88,999.000,999.0,99.0 +1976,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,11.7,6.7,72,101000,0,0,301,0,0,0,0,0,0,0,250,4.1,1,0,24.1,77777,9,999999999,160,0.1420,0,88,999.000,999.0,99.0 +1976,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,7.2,74,101100,11,421,311,5,9,4,0,0,0,0,260,3.6,2,2,19.3,77777,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1976,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.3,7.2,67,101200,198,1364,308,89,343,38,9000,22900,5700,680,240,3.1,1,0,20.9,77777,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1976,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,15.6,8.3,62,101200,440,1364,319,266,565,82,27300,50800,10900,1530,260,4.1,6,0,19.3,77777,9,999999999,179,0.0990,0,88,999.000,999.0,99.0 +1976,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,16.7,8.9,60,101300,650,1364,331,415,635,110,43300,62200,13600,2300,280,4.1,7,1,19.3,77777,9,999999999,179,0.0990,0,88,999.000,999.0,99.0 +1976,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,18.3,9.4,56,101300,813,1364,350,454,326,258,48600,34600,27900,6450,300,4.1,7,4,19.3,7620,9,999999999,189,0.0990,0,88,999.000,999.0,99.0 +1976,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,18.3,9.4,56,101200,917,1364,360,484,340,254,52700,36600,28100,6840,300,2.1,9,7,19.3,3660,9,999999999,189,0.0990,0,88,999.000,999.0,99.0 +1976,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,18.3,9.4,56,101200,955,1364,384,304,5,301,35100,500,34800,12820,340,2.6,10,10,19.3,3050,9,999999999,189,0.0990,0,88,999.000,999.0,99.0 +1976,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,18.9,10.0,57,101200,925,1364,388,242,4,240,28400,300,28100,10750,330,2.6,10,10,19.3,3050,9,999999999,200,0.0990,0,88,999.000,999.0,99.0 +1976,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,19.4,9.4,53,101200,829,1364,355,499,483,204,53100,49600,22800,4870,320,2.1,8,4,17.7,77777,9,999999999,189,0.0990,0,88,999.000,999.0,99.0 +1976,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,19.4,9.4,53,101200,673,1364,371,349,369,166,36800,36900,18600,3480,280,2.1,10,8,16.1,3050,9,999999999,189,0.0990,0,88,999.000,999.0,99.0 +1976,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,16.7,11.1,70,101200,468,1364,367,145,77,118,15900,7200,13400,3290,120,3.1,10,9,16.1,3050,9,999999999,209,0.0990,0,88,999.000,999.0,99.0 +1976,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,16.7,10.6,67,101200,228,1364,377,43,6,42,4900,100,4900,1550,110,2.1,10,10,16.1,2440,9,999999999,200,0.0990,0,88,999.000,999.0,99.0 +1976,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,15.6,12.2,81,101200,21,580,373,5,0,5,0,0,0,0,130,3.1,10,10,11.3,2440,9,999999999,229,0.0990,0,88,999.000,999.0,99.0 +1976,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,15.6,12.2,81,101300,0,0,373,0,0,0,0,0,0,0,140,3.1,10,10,11.3,2440,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1976,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,15.0,12.2,84,101300,0,0,370,0,0,0,0,0,0,0,150,2.1,10,10,11.3,2440,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1976,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,15.0,11.7,81,101300,0,0,369,0,0,0,0,0,0,0,150,2.1,10,10,11.3,3050,9,999999999,220,0.1420,0,88,999.000,999.0,99.0 +1976,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.4,13.0,81,101400,0,0,378,0,0,0,0,0,0,0,130,2.8,10,10,11.3,2440,9,999999999,220,0.1420,0,88,999.000,999.0,99.0 +1976,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,17.9,14.2,78,101300,0,0,388,0,0,0,0,0,0,0,80,3.6,10,10,11.3,2440,9,999999999,209,0.1420,0,88,999.000,999.0,99.0 +1976,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,19.3,15.5,84,101400,0,0,397,0,0,0,0,0,0,0,20,4.3,10,10,9.7,2130,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1986,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,20.7,16.8,76,100800,0,0,406,0,0,0,0,0,0,0,240,5.0,10,10,8.0,2440,9,999999999,370,0.1420,0,88,999.000,999.0,99.0 +1986,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,22.1,18.1,79,100600,0,0,416,0,0,0,0,0,0,0,240,5.7,10,10,8.0,2440,9,999999999,370,0.1420,0,88,999.000,999.0,99.0 +1986,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,23.6,19.3,79,100600,0,0,426,0,0,0,0,0,0,0,250,6.5,10,10,8.0,2440,9,999999999,370,0.1420,0,88,999.000,999.0,99.0 +1986,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,25.0,20.6,76,100600,0,0,436,0,0,0,0,0,0,0,230,7.2,10,10,8.0,2440,9,999999999,370,0.1420,0,88,999.000,999.0,99.0 +1986,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,25.0,20.0,74,100600,0,0,414,0,0,0,0,0,0,0,230,6.2,8,8,8.0,2440,9,999999999,359,0.1420,0,88,999.000,999.0,99.0 +1986,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,24.4,19.4,74,100700,10,398,399,5,2,4,0,0,0,0,270,5.7,8,6,8.0,2440,9,999999999,350,0.0820,0,88,999.000,999.0,99.0 +1986,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,25.0,19.4,71,100700,195,1364,389,81,245,45,8400,15500,6100,810,260,7.2,7,2,8.0,77777,9,999999999,340,0.0820,0,88,999.000,999.0,99.0 +1986,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,26.1,17.8,60,100900,437,1364,392,247,551,67,25600,49900,9500,1290,300,8.2,4,2,11.3,77777,9,999999999,309,0.0820,0,88,999.000,999.0,99.0 +1986,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,25.6,17.2,60,101000,647,1364,407,365,360,193,38900,37000,21300,4280,330,8.2,7,7,24.1,1070,9,999999999,300,0.0820,0,88,999.000,999.0,99.0 +1986,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,16.1,56,101100,809,1364,391,498,541,174,53500,55500,20500,4020,330,8.2,4,3,24.1,77777,9,999999999,290,0.0820,0,88,999.000,999.0,99.0 +1986,10,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,101100,913,1364,382,622,708,143,65900,72100,17500,3830,330,8.8,6,2,24.1,77777,9,999999999,250,0.0820,0,88,999.000,999.0,99.0 +1986,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,24.4,13.3,50,101100,951,1364,378,638,686,155,67600,69900,18700,4360,330,8.2,6,2,24.1,77777,9,999999999,240,0.0820,0,88,999.000,999.0,99.0 +1986,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,25.0,12.2,45,101200,921,1364,386,475,333,247,51700,35800,27400,6650,310,7.7,8,4,24.1,77777,9,999999999,229,0.0820,0,88,999.000,999.0,99.0 +1986,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,23.9,12.2,48,101200,824,1364,384,589,712,153,61300,71400,18000,3620,310,7.2,5,5,24.1,77777,9,999999999,229,0.0820,0,88,999.000,999.0,99.0 +1986,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,24.4,10.6,42,101200,668,1364,384,432,613,128,44600,59900,15200,2650,310,6.7,5,5,24.1,77777,9,999999999,209,0.0820,0,88,999.000,999.0,99.0 +1986,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,9.4,40,101300,463,1364,374,237,417,92,25000,38400,11900,1710,320,7.2,3,3,24.1,77777,9,999999999,189,0.0820,0,88,999.000,999.0,99.0 +1986,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,22.8,8.9,41,101300,224,1364,368,96,244,55,9900,16600,7100,1000,330,6.2,3,3,24.1,77777,9,999999999,179,0.0820,0,88,999.000,999.0,99.0 +1986,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.7,8.3,43,101300,20,557,362,14,32,11,0,0,0,0,330,6.2,4,3,24.1,77777,9,999999999,179,0.0820,0,88,999.000,999.0,99.0 +1986,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,20.6,8.3,46,101400,0,0,360,0,0,0,0,0,0,0,330,5.2,4,4,24.1,77777,9,999999999,179,0.1420,0,88,999.000,999.0,99.0 +1986,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,20.6,8.9,47,101500,0,0,370,0,0,0,0,0,0,0,330,3.1,7,7,24.1,2740,9,999999999,189,0.1420,0,88,999.000,999.0,99.0 +1986,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,20.6,8.9,47,101500,0,0,395,0,0,0,0,0,0,0,340,1.5,10,10,24.1,2740,9,999999999,189,0.1420,0,88,999.000,999.0,99.0 +1986,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.6,9.4,49,101500,0,0,396,0,0,0,0,0,0,0,330,2.1,10,10,24.1,2440,9,999999999,189,0.1420,0,88,999.000,999.0,99.0 +1986,10,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,9.4,51,101500,0,0,393,0,0,0,0,0,0,0,320,3.1,10,10,24.1,2130,9,999999999,189,0.1420,0,88,999.000,999.0,99.0 +1986,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,19.4,10.0,55,101500,0,0,390,0,0,0,0,0,0,0,350,3.6,10,10,24.1,2130,9,999999999,200,0.1420,0,88,999.000,999.0,99.0 +1986,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,17.8,10.6,63,101500,0,0,383,0,0,0,0,0,0,0,360,3.1,10,10,24.1,2130,9,999999999,209,0.1420,0,88,999.000,999.0,99.0 +1986,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,17.2,10.0,63,101500,0,0,379,0,0,0,0,0,0,0,70,2.1,10,10,24.1,2440,9,999999999,200,0.1420,0,88,999.000,999.0,99.0 +1986,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,17.2,10.0,63,101400,0,0,379,0,0,0,0,0,0,0,40,2.6,10,10,16.1,1310,9,999999999,200,0.1420,0,88,999.000,999.0,99.0 +1986,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,16.7,10.0,65,101400,0,0,376,0,0,0,0,0,0,0,30,2.1,10,10,24.1,1310,9,999999999,200,0.1420,0,88,999.000,999.0,99.0 +1986,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,16.7,10.0,65,101400,0,0,376,0,0,0,0,0,0,0,70,1.5,10,10,24.1,1160,9,999999999,200,0.1420,0,88,999.000,999.0,99.0 +1986,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,16.1,10.6,70,101500,9,375,374,2,0,2,0,0,0,0,10,1.5,10,10,16.1,1160,9,999999999,209,0.0830,0,88,999.000,999.0,99.0 +1986,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,16.1,11.1,72,101500,191,1365,374,39,4,38,4400,0,4400,1350,60,2.6,10,10,19.3,1830,9,999999999,209,0.0830,0,88,999.000,999.0,99.0 +1986,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,16.1,11.7,75,101500,432,1365,357,119,28,110,13000,2600,12200,3000,60,3.1,10,8,24.1,2740,9,999999999,220,0.0830,0,88,999.000,999.0,99.0 +1986,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,16.7,11.7,73,101400,642,1365,360,297,188,208,32200,19100,23300,5080,30,3.6,10,8,24.1,2740,9,999999999,220,0.0830,0,88,999.000,999.0,99.0 +1986,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,16.7,12.2,75,101400,804,1365,379,196,2,195,22800,200,22800,8560,90,3.6,10,10,24.1,1520,9,999999999,229,0.0830,0,88,999.000,999.0,99.0 +1986,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,16.7,12.2,75,101400,907,1365,361,441,244,277,47600,26200,30100,7500,70,3.1,10,8,24.1,1520,9,999999999,229,0.0830,0,88,999.000,999.0,99.0 +1986,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,17.2,12.2,73,101400,945,1365,363,434,206,290,47700,21800,32500,8700,90,3.6,10,8,24.1,2740,9,999999999,229,0.0830,0,88,999.000,999.0,99.0 +1986,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,17.2,12.2,73,101300,915,1365,381,286,2,285,33000,200,32800,12050,120,4.1,10,10,24.1,1070,9,999999999,229,0.0830,0,88,999.000,999.0,99.0 +1986,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,16.1,13.9,87,101300,818,1365,378,213,13,206,24900,1100,24200,9000,130,4.6,10,10,24.1,1070,9,999999999,250,0.0830,0,88,999.000,999.0,99.0 +1986,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,16.7,14.4,87,101400,661,1365,382,186,9,182,21300,700,20900,7310,90,3.6,10,10,24.1,1010,9,999999999,259,0.0830,0,88,999.000,999.0,99.0 +1986,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,16.1,13.9,87,101300,456,1365,378,69,6,67,8200,300,8100,2850,80,3.6,10,10,19.3,1010,9,999999999,250,0.0830,0,88,999.000,999.0,99.0 +1986,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,15.0,14.4,97,101400,217,1365,373,40,5,39,4600,100,4500,1430,30,4.1,10,10,3.2,430,9,999999999,259,0.0830,0,88,999.000,999.0,99.0 +1986,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,13.9,12.2,90,101500,17,512,364,4,0,4,0,0,0,0,10,3.6,10,10,8.0,520,9,999999999,229,0.0830,0,88,999.000,999.0,99.0 +1986,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,14.4,12.8,90,101600,0,0,368,0,0,0,0,0,0,0,10,3.6,10,10,16.1,580,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1986,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,14.4,12.2,87,101600,0,0,367,0,0,0,0,0,0,0,10,3.1,10,10,19.3,760,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1986,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,13.9,12.2,90,101700,0,0,322,0,0,0,0,0,0,0,360,2.6,1,1,19.3,77777,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1986,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,13.9,12.2,90,101700,0,0,326,0,0,0,0,0,0,0,270,2.6,2,2,19.3,77777,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1986,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,13.9,12.8,93,101700,0,0,330,0,0,0,0,0,0,0,300,4.1,3,3,9.7,77777,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1986,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,12.2,93,101700,0,0,324,0,0,0,0,0,0,0,280,3.6,2,2,12.9,77777,9,999999999,229,0.1420,0,88,999.000,999.0,99.0 +1986,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,13.3,11.7,90,101700,0,0,323,0,0,0,0,0,0,0,300,4.1,2,2,12.9,77777,9,999999999,220,0.1410,0,88,999.000,999.0,99.0 +1986,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,12.8,11.7,93,101700,0,0,316,0,0,0,0,0,0,0,300,3.1,1,1,16.1,77777,9,999999999,220,0.1410,0,88,999.000,999.0,99.0 +1986,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,11.7,93,101700,0,0,310,0,0,0,0,0,0,0,260,2.6,0,0,16.1,77777,9,999999999,220,0.1410,0,88,999.000,999.0,99.0 +1986,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,11.1,93,101700,0,0,307,0,0,0,0,0,0,0,350,4.1,0,0,16.1,77777,9,999999999,209,0.1410,0,88,999.000,999.0,99.0 +1986,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,10.6,93,101800,0,0,310,0,0,0,0,0,0,0,10,2.6,1,1,16.1,77777,9,999999999,209,0.1410,0,88,999.000,999.0,99.0 +1986,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,10.6,10.0,96,101900,8,353,309,2,2,2,0,0,0,0,160,3.6,6,2,16.1,77777,9,999999999,200,0.1530,0,88,999.000,999.0,99.0 +1986,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,11.1,90,102000,186,1365,320,68,99,54,7300,6400,6400,1140,200,1.5,9,2,11.3,77777,9,999999999,209,0.1530,0,88,999.000,999.0,99.0 +1986,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,11.7,87,102000,427,1365,332,197,121,158,21000,11100,17500,3550,0,0.0,9,4,11.3,77777,9,999999999,220,0.1530,0,88,999.000,999.0,99.0 +1986,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,15.0,11.7,81,102000,637,1365,369,205,3,204,23100,300,23000,7690,40,2.1,10,10,16.1,460,9,999999999,220,0.1530,0,88,999.000,999.0,99.0 +1986,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,15.6,11.7,78,102000,798,1365,373,257,2,256,29300,200,29200,10310,40,2.6,10,10,19.3,460,9,999999999,220,0.1530,0,88,999.000,999.0,99.0 +1986,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,16.1,11.7,75,101900,902,1365,375,235,3,234,27500,300,27400,10410,360,1.5,10,10,19.3,460,9,999999999,220,0.1530,0,88,999.000,999.0,99.0 +1986,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,15.6,11.7,78,101900,939,1365,362,309,127,221,34500,13500,25200,6590,140,3.1,10,9,24.1,2440,9,999999999,220,0.1530,0,88,999.000,999.0,99.0 +1986,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,15.6,11.7,78,101800,908,1365,373,310,4,307,35400,400,35100,12580,140,3.6,10,10,24.1,2440,9,999999999,220,0.1530,0,88,999.000,999.0,99.0 +1986,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,15.0,12.2,84,101800,811,1365,370,175,12,167,20600,900,20000,7620,120,4.6,10,10,19.3,550,9,999999999,229,0.1530,0,88,999.000,999.0,99.0 +1986,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,14.4,12.2,87,101700,654,1365,367,177,5,175,20300,400,20100,7070,110,5.2,10,10,19.3,790,9,999999999,229,0.1530,0,88,999.000,999.0,99.0 +1986,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,14.4,13.3,93,101700,449,1365,368,68,2,68,8100,100,8100,2860,110,5.2,10,10,14.5,580,9,999999999,240,0.1530,0,88,999.000,999.0,99.0 +1986,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,14.4,13.9,97,101600,209,1365,369,24,1,23,2800,0,2800,910,140,4.1,10,10,4.8,1980,9,999999999,250,0.1530,0,88,999.000,999.0,99.0 +1986,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,15.0,13.9,93,101500,14,489,372,3,0,3,0,0,0,0,190,5.7,10,10,4.8,730,9,999999999,250,0.1530,0,88,999.000,999.0,99.0 +1986,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,14.4,13.3,93,101400,0,0,368,0,0,0,0,0,0,0,180,4.6,10,10,8.0,1310,9,999999999,240,0.1410,0,88,999.000,999.0,99.0 +1986,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,15.0,13.9,93,101300,0,0,372,0,0,0,0,0,0,0,140,4.6,10,10,4.8,270,9,999999999,250,0.1410,0,88,999.000,999.0,99.0 +1986,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,15.0,14.4,97,101100,0,0,373,0,0,0,0,0,0,0,160,5.7,10,10,4.8,270,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1986,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,15.0,14.4,97,101000,0,0,373,0,0,0,0,0,0,0,160,5.2,10,10,4.8,270,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1986,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,15.0,14.4,97,100900,0,0,373,0,0,0,0,0,0,0,90,3.1,10,10,4.8,150,9,999999999,259,0.1410,0,88,999.000,999.0,99.0 +1986,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,15.0,15.0,100,100700,0,0,373,0,0,0,0,0,0,0,90,4.6,10,10,4.8,60,9,999999999,270,0.1410,0,88,999.000,999.0,99.0 +1986,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,15.6,15.0,97,100600,0,0,377,0,0,0,0,0,0,0,100,4.1,10,10,4.8,150,9,999999999,270,0.1400,0,88,999.000,999.0,99.0 +1986,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,15.6,15.6,100,100400,0,0,377,0,0,0,0,0,0,0,130,5.2,10,10,4.8,340,9,999999999,270,0.1400,0,88,999.000,999.0,99.0 +1986,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,15.6,15.6,100,100300,0,0,377,0,0,0,0,0,0,0,80,4.1,10,10,4.8,210,9,999999999,270,0.1400,0,88,999.000,999.0,99.0 +1986,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,15.6,15.6,100,100200,0,0,377,0,0,0,0,0,0,0,80,3.6,10,10,0.8,60,9,999999999,270,0.1400,0,88,999.000,999.0,99.0 +1986,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,15.6,15.6,100,100200,0,0,377,0,0,0,0,0,0,0,320,2.6,10,10,0.8,60,9,999999999,270,0.1400,0,88,999.000,999.0,99.0 +1986,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,16.1,15.6,97,100300,7,330,380,2,0,2,0,0,0,0,310,5.2,10,10,1.2,60,9,999999999,270,0.2430,0,88,999.000,999.0,99.0 +1986,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,16.1,15.6,97,100300,181,1366,380,41,1,41,4600,0,4600,1400,320,4.6,10,10,4.8,120,9,999999999,270,0.2430,0,88,999.000,999.0,99.0 +1986,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,16.1,15.0,93,100300,422,1366,379,101,1,100,11400,100,11400,3780,320,5.2,10,10,9.7,180,9,999999999,259,0.2430,0,88,999.000,999.0,99.0 +1986,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,17.2,15.0,87,100300,631,1366,353,251,114,198,27300,11500,22000,4810,320,3.1,8,5,11.3,7620,9,999999999,259,0.2430,0,88,999.000,999.0,99.0 +1986,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,19.4,15.6,78,100300,793,1366,359,446,367,230,47900,38900,25200,5560,300,6.2,7,3,19.3,77777,9,999999999,270,0.2430,0,88,999.000,999.0,99.0 +1986,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,22.2,16.7,71,100300,896,1366,380,545,430,260,57000,44300,27900,6800,320,7.2,8,5,24.1,7620,9,999999999,290,0.2430,0,88,999.000,999.0,99.0 +1986,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,22.8,16.7,69,100300,933,1366,406,256,25,238,28200,2500,26400,8650,300,6.2,9,9,24.1,670,9,999999999,290,0.2430,0,88,999.000,999.0,99.0 +1986,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,22.8,16.7,69,100200,902,1366,406,303,16,293,34800,1500,33800,12150,310,3.6,9,9,24.1,670,9,999999999,290,0.2430,0,88,999.000,999.0,99.0 +1986,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,23.9,16.7,64,100200,804,1366,404,372,152,281,40300,15800,30900,7520,310,4.1,8,8,24.1,1160,9,999999999,290,0.2430,0,88,999.000,999.0,99.0 +1986,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,23.3,16.1,64,100100,647,1366,389,303,198,208,32900,20100,23300,5090,350,3.6,8,6,24.1,3050,9,999999999,279,0.2430,0,88,999.000,999.0,99.0 +1986,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,21.7,16.7,73,100100,441,1366,386,115,59,96,12700,5400,10900,2710,140,3.6,10,7,24.1,1160,9,999999999,290,0.2430,0,88,999.000,999.0,99.0 +1986,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,16.1,76,100100,202,1366,394,48,6,47,5400,100,5400,1610,90,3.1,10,9,16.1,760,9,999999999,279,0.2430,0,88,999.000,999.0,99.0 +1986,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,19.4,15.6,78,100100,12,444,398,2,0,2,0,0,0,0,80,3.6,10,10,11.3,760,9,999999999,270,0.2430,0,88,999.000,999.0,99.0 +1986,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,15.6,81,100000,0,0,395,0,0,0,0,0,0,0,110,3.6,10,10,11.3,760,9,999999999,270,0.1400,0,88,999.000,999.0,99.0 +1986,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,17.2,16.1,93,99900,0,0,386,0,0,0,0,0,0,0,130,2.1,10,10,9.7,730,9,999999999,279,0.1400,0,88,999.000,999.0,99.0 +1986,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,16.1,14.4,90,99900,0,0,378,0,0,0,0,0,0,0,40,7.2,10,10,8.0,370,9,999999999,250,0.1400,0,88,999.000,999.0,99.0 +1986,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,15.0,13.9,93,99800,0,0,372,0,0,0,0,0,0,0,50,7.2,10,10,6.4,370,9,999999999,250,0.1400,0,88,999.000,999.0,99.0 +1986,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,13.3,12.2,93,99900,0,0,361,0,0,0,0,0,0,0,30,7.7,10,10,6.4,310,9,999999999,220,0.1400,0,88,999.000,999.0,99.0 +1986,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,12.8,11.1,90,99900,0,0,358,0,0,0,0,0,0,0,30,6.2,10,10,16.1,910,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1986,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,12.8,11.1,90,100000,0,0,358,0,0,0,0,0,0,0,10,5.2,10,10,16.1,760,9,999999999,209,0.1390,0,88,999.000,999.0,99.0 +1986,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,12.2,12.2,100,100000,0,0,356,0,0,0,0,0,0,0,10,5.2,10,10,16.1,270,9,999999999,220,0.1390,0,88,999.000,999.0,99.0 +1986,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,10.0,86,100000,0,0,353,0,0,0,0,0,0,0,360,3.6,10,10,16.1,550,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1986,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,10.0,86,100100,0,0,353,0,0,0,0,0,0,0,330,4.6,10,10,16.1,400,9,999999999,189,0.1390,0,88,999.000,999.0,99.0 +1986,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,10.6,90,100200,0,0,354,0,0,0,0,0,0,0,300,3.6,10,10,16.1,610,9,999999999,200,0.1390,0,88,999.000,999.0,99.0 +1986,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,12.8,10.6,87,100200,6,308,357,0,0,0,0,0,0,0,340,4.6,10,10,16.1,1400,9,999999999,200,0.1090,0,88,999.000,999.0,99.0 +1986,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,12.8,9.4,80,100300,176,1367,356,42,3,42,4700,0,4700,1410,330,7.2,10,10,16.1,1250,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1986,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,9.4,78,100300,417,1367,358,103,2,102,11600,100,11600,3810,340,6.7,10,10,16.1,1250,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1986,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,13.9,8.3,69,100400,626,1367,342,243,177,161,26700,18000,18500,3900,310,6.7,8,8,16.1,1250,9,999999999,179,0.1090,0,88,999.000,999.0,99.0 +1986,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,15.6,8.3,62,100400,788,1367,341,347,270,190,37900,28600,21300,4430,320,8.2,6,6,24.1,1250,9,999999999,179,0.1090,0,88,999.000,999.0,99.0 +1986,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,14.4,6.7,60,100400,890,1367,350,338,91,279,37300,9300,31200,9490,330,7.7,9,9,24.1,760,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1986,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,14.4,6.7,60,100400,927,1367,350,379,150,276,41600,15900,30800,8130,320,7.2,9,9,24.1,760,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1986,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,15.0,6.1,56,100400,895,1367,345,406,272,226,44400,29200,25200,5850,300,6.7,8,8,24.1,760,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1986,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,15.0,6.1,56,100400,797,1367,353,231,76,187,25500,7600,21100,6300,280,7.7,9,9,24.1,760,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1986,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,15.0,5.0,52,100400,640,1367,351,230,62,201,25300,6100,22400,5860,300,7.7,9,9,24.1,1070,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1986,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,14.4,5.0,53,100400,434,1367,348,152,44,138,16600,4100,15300,3590,300,7.2,9,9,24.1,1070,9,999999999,139,0.1090,0,88,999.000,999.0,99.0 +1986,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,14.4,5.0,53,100400,195,1367,336,64,55,55,6800,3700,6300,1160,310,5.2,7,7,24.1,1070,9,999999999,139,0.1090,0,88,999.000,999.0,99.0 +1986,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,13.9,5.0,55,100500,10,399,333,5,3,4,0,0,0,0,270,3.1,7,7,24.1,1160,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1986,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,13.9,4.4,53,100500,0,0,323,0,0,0,0,0,0,0,250,6.2,4,4,24.1,77777,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1986,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,12.8,3.9,55,100500,0,0,312,0,0,0,0,0,0,0,280,7.2,2,2,24.1,77777,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1986,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.2,3.9,57,100600,0,0,300,0,0,0,0,0,0,0,280,5.7,0,0,24.1,77777,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1986,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,11.7,3.3,57,100500,0,0,297,0,0,0,0,0,0,0,250,6.2,0,0,24.1,77777,9,999999999,129,0.1390,0,88,999.000,999.0,99.0 +1986,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,3.9,61,100500,0,0,295,0,0,0,0,0,0,0,280,6.2,0,0,24.1,77777,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1986,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,11.1,3.9,61,100500,0,0,295,0,0,0,0,0,0,0,250,4.1,0,0,24.1,77777,9,999999999,139,0.1390,0,88,999.000,999.0,99.0 +1986,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,4.4,66,100400,0,0,294,0,0,0,0,0,0,0,240,4.6,0,0,24.1,77777,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1986,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,8.9,1.1,59,100300,0,0,283,0,0,0,0,0,0,0,230,4.6,0,0,24.1,77777,9,999999999,120,0.1380,0,88,999.000,999.0,99.0 +1986,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,8.9,4.4,74,100200,0,0,287,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1986,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,8.9,4.4,74,100100,0,0,331,0,0,0,0,0,0,0,230,5.2,10,10,24.1,1400,9,999999999,139,0.1380,0,88,999.000,999.0,99.0 +1986,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,10.0,5.6,74,100000,0,0,338,0,0,0,0,0,0,0,220,5.7,10,10,24.1,1490,9,999999999,150,0.1380,0,88,999.000,999.0,99.0 +1986,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,11.1,6.7,74,100000,5,285,344,1,1,1,0,0,0,0,240,6.2,10,10,24.1,1250,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1986,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,11.7,6.7,72,100100,171,1368,347,32,1,32,3700,0,3700,1140,240,7.2,10,10,24.1,1400,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1986,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,12.2,3.9,57,100100,412,1368,315,182,203,120,19200,18300,13600,2420,280,9.8,5,4,24.1,77777,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1986,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,12.2,2.2,51,100100,621,1368,322,267,197,176,29100,19900,20000,4250,280,9.8,7,7,24.1,1250,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1986,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,13.3,1.1,44,100100,782,1368,326,394,334,201,42700,35400,22400,4710,280,10.3,7,7,24.1,1250,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1986,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,13.9,0.6,40,100100,884,1368,328,483,352,253,52300,37700,27800,6600,290,10.3,7,7,24.1,1250,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,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,13.9,0.6,40,100100,921,1368,334,482,300,279,52200,32200,30400,7640,290,11.3,8,8,24.1,1250,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,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,13.9,0.6,40,100100,889,1368,341,451,343,226,49300,36800,25300,5810,290,10.8,9,9,24.1,1250,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,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,13.9,0.6,40,100200,791,1368,341,363,132,286,39300,13700,31300,7580,290,10.3,9,9,24.1,1250,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,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,13.3,0.0,40,100300,633,1368,337,207,73,173,22700,7200,19400,5170,310,9.3,9,9,24.1,1250,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1986,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,12.2,-1.1,40,100400,427,1368,319,215,259,132,22400,23700,15000,2710,310,10.8,7,7,24.1,1250,9,999999999,100,0.0730,0,88,999.000,999.0,99.0 +1986,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,11.1,-3.3,37,100600,187,1368,303,69,129,51,7200,7700,6200,960,310,12.4,4,4,24.1,77777,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1986,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,10.0,-2.8,41,100800,8,353,301,5,3,5,0,0,0,0,310,10.3,5,5,24.1,77777,9,999999999,89,0.0730,0,88,999.000,999.0,99.0 +1986,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,-3.3,42,101100,0,0,307,0,0,0,0,0,0,0,310,11.3,8,8,24.1,1310,9,999999999,89,0.1380,0,88,999.000,999.0,99.0 +1986,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,7.8,-3.9,44,101200,0,0,308,0,0,0,0,0,0,0,320,10.8,9,9,24.1,1160,9,999999999,89,0.1380,0,88,999.000,999.0,99.0 +1986,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,7.2,-3.9,46,101300,0,0,291,0,0,0,0,0,0,0,310,7.2,6,6,24.1,1160,9,999999999,89,0.1380,0,88,999.000,999.0,99.0 +1986,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,6.7,-3.9,47,101400,0,0,288,0,0,0,0,0,0,0,310,8.2,6,6,24.1,1100,9,999999999,89,0.1380,0,88,999.000,999.0,99.0 +1986,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,6.1,-5.6,43,101500,0,0,284,0,0,0,0,0,0,0,310,7.2,6,6,24.1,1250,9,999999999,80,0.1380,0,88,999.000,999.0,99.0 +1986,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,5.6,-5.0,47,101600,0,0,297,0,0,0,0,0,0,0,300,6.7,9,9,24.1,1250,9,999999999,80,0.1380,0,88,999.000,999.0,99.0 +1986,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,5.0,-4.4,51,101600,0,0,284,0,0,0,0,0,0,0,310,7.7,7,7,24.1,1250,9,999999999,80,0.1370,0,88,999.000,999.0,99.0 +1986,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,4.4,-5.0,51,101600,0,0,260,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,80,0.1370,0,88,999.000,999.0,99.0 +1986,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,3.9,-3.9,57,101700,0,0,259,0,0,0,0,0,0,0,310,6.2,0,0,24.1,77777,9,999999999,89,0.1370,0,88,999.000,999.0,99.0 +1986,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,3.3,-4.4,57,101800,0,0,257,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,80,0.1370,0,88,999.000,999.0,99.0 +1986,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,3.3,-4.4,57,101900,0,0,257,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,80,0.1370,0,88,999.000,999.0,99.0 +1986,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,2.8,-3.3,65,101900,4,262,256,6,24,3,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1986,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,3.9,-3.3,60,102000,167,1369,271,77,236,47,7700,13600,6100,860,300,4.1,7,3,24.1,77777,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1986,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,5.6,-3.9,51,102000,407,1369,279,259,493,110,26600,43400,13600,2090,290,5.2,10,4,24.1,77777,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1986,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,6.7,-3.9,47,102100,616,1369,279,417,661,116,43000,63800,14200,2330,310,6.7,7,2,24.1,77777,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1986,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,8.9,-4.4,39,102000,776,1369,283,538,802,78,55800,79000,10800,1760,310,6.2,3,1,24.1,77777,9,999999999,80,0.0560,0,88,999.000,999.0,99.0 +1986,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,10.0,-4.4,36,102000,878,1369,282,650,881,79,67400,87500,11100,1990,310,5.2,1,0,24.1,77777,9,999999999,80,0.0560,0,88,999.000,999.0,99.0 +1986,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,11.1,-3.9,35,102000,914,1369,287,698,921,77,72500,91700,11000,2050,310,6.2,0,0,24.1,77777,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1986,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,11.7,-4.4,32,102000,882,1369,289,681,930,75,70700,92500,10900,1950,320,4.6,0,0,24.1,77777,9,999999999,80,0.0560,0,88,999.000,999.0,99.0 +1986,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,12.8,-4.4,30,102000,784,1369,294,584,890,69,60800,87800,10300,1700,280,3.6,0,0,24.1,77777,9,999999999,80,0.0560,0,88,999.000,999.0,99.0 +1986,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,12.8,-3.9,31,102000,626,1369,294,448,841,59,46700,81200,9500,1380,270,6.7,0,0,24.1,77777,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1986,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,12.8,-3.9,31,102000,419,1369,294,270,722,44,28000,65200,8000,1010,300,3.6,0,0,24.1,77777,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1986,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,12.2,-3.9,33,102000,180,1369,292,91,462,28,9000,31600,4800,530,300,4.6,0,0,24.1,77777,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1986,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,11.1,-4.4,34,102100,6,331,287,10,37,5,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1986,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,11.1,-4.4,34,102200,0,0,287,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,89,0.1370,0,88,999.000,999.0,99.0 +1986,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,10.6,-2.8,40,102200,0,0,286,0,0,0,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,89,0.1370,0,88,999.000,999.0,99.0 +1986,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,10.0,-1.7,45,102200,0,0,285,0,0,0,0,0,0,0,280,4.6,0,0,24.1,77777,9,999999999,100,0.1370,0,88,999.000,999.0,99.0 +1986,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,8.3,-0.6,54,102200,0,0,279,0,0,0,0,0,0,0,240,3.6,0,0,24.1,77777,9,999999999,110,0.1370,0,88,999.000,999.0,99.0 +1986,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,8.3,-0.6,54,102200,0,0,279,0,0,0,0,0,0,0,240,5.2,0,0,24.1,77777,9,999999999,110,0.1370,0,88,999.000,999.0,99.0 +1986,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,-0.6,56,102300,0,0,277,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,110,0.1370,0,88,999.000,999.0,99.0 +1986,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,6.1,0.0,65,102300,0,0,271,0,0,0,0,0,0,0,220,3.6,0,0,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,6.1,0.0,65,102300,0,0,271,0,0,0,0,0,0,0,220,4.6,0,0,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,6.1,0.0,65,102300,0,0,271,0,0,0,0,0,0,0,200,3.6,0,0,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,6.1,0.0,65,102300,0,0,271,0,0,0,0,0,0,0,240,3.6,0,0,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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.2,0.6,63,102300,0,0,276,0,0,0,0,0,0,0,240,4.6,0,0,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,0.6,58,102300,3,217,281,3,6,2,0,0,0,0,230,5.2,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,0.6,56,102300,162,1369,283,70,297,34,7000,17900,4900,590,240,7.2,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,11.7,0.6,47,102300,402,1369,294,241,610,59,25000,54000,9100,1140,210,6.2,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,13.9,0.6,40,102300,610,1369,304,417,749,79,43100,72300,10800,1630,230,6.7,0,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,16.1,0.6,35,102200,771,1369,313,559,809,98,58200,80200,12900,2190,240,9.3,1,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,17.8,0.6,32,102100,872,1369,320,651,833,115,67900,83200,14700,2760,240,10.3,2,0,24.1,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1986,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,18.9,0.0,28,102000,908,1369,325,686,846,118,71600,84800,15200,2960,230,7.2,2,0,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,20.0,0.0,26,101900,876,1369,336,608,790,97,64500,79500,13500,2480,210,8.8,1,1,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,20.6,0.0,25,101800,777,1369,339,538,778,91,56500,77500,12400,2110,200,8.2,1,1,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,20.6,0.0,25,101800,619,1369,339,417,733,81,43000,70800,10900,1670,230,9.3,1,1,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,20.0,0.0,26,101800,412,1369,336,234,549,66,24200,48700,9400,1260,230,8.2,1,1,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,18.3,0.0,29,101800,173,1369,328,73,285,35,7200,17700,5000,620,230,6.2,1,1,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,17.2,0.0,31,101800,5,285,323,3,9,2,0,0,0,0,220,8.2,1,1,24.1,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1986,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,16.1,0.0,34,101900,0,0,323,0,0,0,0,0,0,0,210,6.7,3,2,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,15.6,0.0,35,101900,0,0,320,0,0,0,0,0,0,0,220,7.7,3,2,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,15.0,0.0,36,101900,0,0,318,0,0,0,0,0,0,0,210,6.2,6,2,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,14.4,0.0,38,101900,0,0,315,0,0,0,0,0,0,0,220,6.2,8,2,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,14.4,0.0,38,101900,0,0,305,0,0,0,0,0,0,0,220,4.6,0,0,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,14.4,12.8,90,101800,0,0,319,0,0,0,0,0,0,0,230,6.2,0,0,24.1,77777,9,999999999,229,0.1360,0,88,999.000,999.0,99.0 +1986,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,15.0,10.6,75,101800,0,0,319,0,0,0,0,0,0,0,230,5.2,0,0,16.1,77777,9,999999999,209,0.1350,0,88,999.000,999.0,99.0 +1986,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,15.6,13.9,90,101800,0,0,325,0,0,0,0,0,0,0,230,5.2,0,0,11.3,77777,9,999999999,250,0.1350,0,88,999.000,999.0,99.0 +1986,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,16.1,14.4,90,101800,0,0,328,0,0,0,0,0,0,0,230,5.2,0,0,11.3,77777,9,999999999,259,0.1350,0,88,999.000,999.0,99.0 +1986,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,16.1,14.4,90,101800,0,0,328,0,0,0,0,0,0,0,230,5.7,0,0,11.3,77777,9,999999999,259,0.1350,0,88,999.000,999.0,99.0 +1986,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,15.6,14.4,93,101700,0,0,326,0,0,0,0,0,0,0,230,6.2,0,0,11.3,77777,9,999999999,259,0.1350,0,88,999.000,999.0,99.0 +1986,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,15.6,15.0,97,101700,2,194,333,0,0,0,0,0,0,0,230,6.2,1,1,8.0,77777,9,999999999,270,0.2350,0,88,999.000,999.0,99.0 +1986,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,16.1,15.0,93,101700,157,1370,339,46,81,36,4800,4300,4300,650,230,6.2,2,2,8.0,77777,9,999999999,270,0.2350,0,88,999.000,999.0,99.0 +1986,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,15.6,87,101700,397,1370,348,202,358,96,20900,31300,11800,1790,240,5.7,2,2,8.0,77777,9,999999999,279,0.2350,0,88,999.000,999.0,99.0 +1986,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,20.0,15.6,76,101700,605,1370,359,342,424,152,35700,41500,17300,3070,250,6.7,5,2,8.0,77777,9,999999999,279,0.2350,0,88,999.000,999.0,99.0 +1986,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,21.1,15.0,68,101700,765,1370,367,436,357,234,46600,37600,25500,5590,220,5.7,6,3,9.7,77777,9,999999999,270,0.2350,0,88,999.000,999.0,99.0 +1986,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,21.1,14.4,66,101700,866,1370,366,582,494,266,60400,50700,28200,6740,220,5.2,8,3,9.7,77777,9,999999999,259,0.2350,0,88,999.000,999.0,99.0 +1986,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,22.8,13.9,57,101600,902,1370,377,512,298,314,54700,31900,33600,8640,240,4.6,9,4,12.9,77777,9,999999999,250,0.2350,0,88,999.000,999.0,99.0 +1986,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,23.9,12.8,50,101600,869,1370,379,581,529,241,60800,54400,26200,6060,260,6.2,8,3,16.1,77777,9,999999999,240,0.2350,0,88,999.000,999.0,99.0 +1986,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,24.4,11.1,43,101500,770,1370,379,487,438,238,52000,46200,26000,5720,250,5.2,9,3,16.1,77777,9,999999999,209,0.2350,0,88,999.000,999.0,99.0 +1986,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,23.9,10.6,43,101500,612,1370,390,307,177,227,33000,17700,25000,5470,240,4.6,9,7,16.1,1250,9,999999999,200,0.2350,0,88,999.000,999.0,99.0 +1986,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,22.2,10.6,48,101600,405,1370,387,160,80,136,17500,7300,15300,3430,350,5.7,10,8,16.1,1310,9,999999999,209,0.2350,0,88,999.000,999.0,99.0 +1986,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,20.6,10.0,51,101600,166,1370,397,47,2,47,5200,0,5200,1480,360,6.7,10,10,16.1,1310,9,999999999,200,0.2350,0,88,999.000,999.0,99.0 +1986,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,17.8,10.0,61,101800,4,240,382,2,0,2,0,0,0,0,10,6.7,10,10,16.1,1160,9,999999999,200,0.2350,0,88,999.000,999.0,99.0 +1986,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,15.0,9.4,70,101900,0,0,367,0,0,0,0,0,0,0,360,7.7,10,10,24.1,1400,9,999999999,189,0.1350,0,88,999.000,999.0,99.0 +1986,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,13.3,7.2,67,102100,0,0,355,0,0,0,0,0,0,0,340,8.8,10,10,24.1,1100,9,999999999,170,0.1350,0,88,999.000,999.0,99.0 +1986,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,11.1,5.6,69,102100,0,0,343,0,0,0,0,0,0,0,340,8.2,10,10,19.3,1160,9,999999999,150,0.1350,0,88,999.000,999.0,99.0 +1986,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,9.4,5.6,77,102200,0,0,335,0,0,0,0,0,0,0,340,8.2,10,10,19.3,1310,9,999999999,150,0.1350,0,88,999.000,999.0,99.0 +1986,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,6.7,89,102300,0,0,331,0,0,0,0,0,0,0,340,6.7,10,10,11.3,430,9,999999999,160,0.1350,0,88,999.000,999.0,99.0 +1986,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,7.8,6.7,93,102300,0,0,328,0,0,0,0,0,0,0,360,5.7,10,10,19.3,400,9,999999999,160,0.1350,0,88,999.000,999.0,99.0 +1986,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,7.2,5.6,89,102300,0,0,324,0,0,0,0,0,0,0,360,7.7,10,10,24.1,580,9,999999999,150,0.1340,0,88,999.000,999.0,99.0 +1986,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,7.2,5.6,89,102400,0,0,324,0,0,0,0,0,0,0,350,5.7,10,10,24.1,910,9,999999999,150,0.1340,0,88,999.000,999.0,99.0 +1986,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,6.7,2.2,74,102500,0,0,318,0,0,0,0,0,0,0,360,6.7,10,10,24.1,1100,9,999999999,129,0.1340,0,88,999.000,999.0,99.0 +1986,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,5.6,0.0,68,102600,0,0,311,0,0,0,0,0,0,0,10,7.7,10,10,24.1,940,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1986,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.0,0.0,70,102700,0,0,308,0,0,0,0,0,0,0,10,6.7,10,10,24.1,1160,9,999999999,110,0.1340,0,88,999.000,999.0,99.0 +1986,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.9,-3.9,57,102800,2,171,277,0,0,0,0,0,0,0,360,6.7,6,6,24.1,1100,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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,3.9,-4.4,55,102800,152,1371,272,50,71,42,5400,4100,5000,880,360,7.2,4,4,24.1,77777,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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,4.4,-5.0,51,102900,392,1371,269,193,370,86,20300,32200,11000,1590,10,7.2,3,2,24.1,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1986,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,5.6,-6.1,43,102900,600,1371,269,314,448,116,33700,44000,14400,2270,360,6.7,3,1,24.1,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1986,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,6.7,-5.6,42,103000,759,1371,273,497,647,134,51800,64500,15900,3000,30,6.2,3,1,24.1,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1986,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,7.2,-6.1,39,103000,860,1371,275,595,735,129,63100,74600,16100,3250,330,3.1,3,1,24.1,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1986,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,-5.6,37,103000,896,1371,280,606,707,139,64100,71900,17000,3630,20,4.6,3,1,24.1,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1986,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,9.4,-5.6,35,102900,862,1371,284,568,587,194,60700,60500,22500,4750,40,5.2,3,1,24.1,77777,9,999999999,80,0.1490,0,88,999.000,999.0,99.0 +1986,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,8.9,-3.3,42,102900,763,1371,279,537,730,126,56300,73000,15500,2850,70,5.2,2,0,24.1,77777,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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,8.9,-2.8,44,103000,605,1371,280,401,658,106,41400,63500,13300,2140,80,5.2,2,0,24.1,77777,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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,8.3,-2.8,46,103000,398,1371,277,225,486,81,22800,42100,10500,1470,110,5.2,3,0,24.1,77777,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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,-3.3,46,103100,158,1371,275,63,189,41,6500,10600,5300,740,80,4.6,2,0,24.1,77777,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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.2,-2.8,49,103200,3,217,273,2,1,2,0,0,0,0,90,4.6,2,0,24.1,77777,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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,7.2,-2.8,49,103200,0,0,273,0,0,0,0,0,0,0,90,4.6,2,0,24.1,77777,9,999999999,89,0.1340,0,88,999.000,999.0,99.0 +1986,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.2,-2.2,52,103300,0,0,273,0,0,0,0,0,0,0,90,3.6,3,0,24.1,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1986,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.2,-3.3,47,103300,0,0,272,0,0,0,0,0,0,0,70,4.1,2,0,16.1,77777,9,999999999,89,0.1340,0,88,999.000,999.0,99.0 +1986,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,6.7,-3.3,49,103400,0,0,276,0,0,0,0,0,0,0,60,3.1,3,1,16.1,77777,9,999999999,89,0.1340,0,88,999.000,999.0,99.0 +1986,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,6.1,-1.7,58,103400,0,0,270,0,0,0,0,0,0,0,30,3.1,2,0,16.1,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1986,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,5.0,-1.1,65,103400,0,0,266,0,0,0,0,0,0,0,50,3.1,0,0,16.1,77777,9,999999999,100,0.1340,0,88,999.000,999.0,99.0 +1986,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,5.6,-1.1,63,103400,0,0,268,0,0,0,0,0,0,0,10,3.6,0,0,16.1,77777,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1986,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,3.9,-4.4,55,103400,0,0,259,0,0,0,0,0,0,0,350,4.1,0,0,16.1,77777,9,999999999,89,0.1330,0,88,999.000,999.0,99.0 +1986,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,3.3,-2.2,67,103400,0,0,259,0,0,0,0,0,0,0,350,4.1,0,0,16.1,77777,9,999999999,100,0.1330,0,88,999.000,999.0,99.0 +1986,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,3.3,-2.8,65,103400,0,0,258,0,0,0,0,0,0,0,350,4.1,0,0,16.1,77777,9,999999999,89,0.1330,0,88,999.000,999.0,99.0 +1986,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,3.9,-2.8,62,103500,0,0,269,0,0,0,0,0,0,0,350,4.1,2,2,16.1,77777,9,999999999,89,0.1330,0,88,999.000,999.0,99.0 +1986,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,3.9,-1.7,67,103500,1,149,275,0,0,0,0,0,0,0,320,4.1,5,4,16.1,77777,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1986,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,-0.6,68,103500,147,1372,285,41,49,35,4400,2800,4100,730,320,4.6,7,6,24.1,1100,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1986,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,6.7,0.0,63,103600,387,1372,307,96,26,89,10600,2300,9900,2420,320,3.6,9,9,24.1,1070,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1986,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,10.0,1.1,54,103600,594,1372,311,227,110,178,24600,11000,19800,4250,230,3.6,7,7,24.1,1070,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1986,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,11.7,1.1,49,103600,754,1372,324,327,158,239,35600,16400,26600,6180,120,6.7,8,8,24.1,1070,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1986,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,11.1,1.7,53,103600,854,1372,329,246,60,208,27100,6000,23300,7200,120,6.7,9,9,24.1,1070,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1986,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,12.2,2.2,51,103500,889,1372,322,445,273,266,48000,29200,29000,7020,100,6.7,7,7,24.1,1070,9,999999999,129,0.1700,0,88,999.000,999.0,99.0 +1986,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,12.2,2.2,51,103400,856,1372,308,590,675,165,61500,67700,19100,3990,90,6.2,2,2,24.1,77777,9,999999999,129,0.1700,0,88,999.000,999.0,99.0 +1986,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,11.7,2.8,55,103400,756,1372,310,451,513,164,48100,52200,19200,3600,90,6.7,3,3,24.1,77777,9,999999999,129,0.1700,0,88,999.000,999.0,99.0 +1986,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,11.7,3.3,57,103300,598,1372,310,300,342,149,32200,34600,17100,3110,90,7.2,3,3,24.1,77777,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1986,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,11.7,3.3,57,103300,391,1372,303,187,332,91,19500,28800,11200,1690,100,6.2,1,1,24.1,77777,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1986,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,10.6,3.9,64,103300,151,1372,299,50,130,35,5300,6700,4500,630,100,5.7,2,1,24.1,77777,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1986,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,10.6,3.9,64,103200,2,171,293,1,0,1,0,0,0,0,130,5.2,1,0,24.1,77777,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1986,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,10.0,5.0,71,103200,0,0,292,0,0,0,0,0,0,0,130,5.7,0,0,19.3,77777,9,999999999,150,0.1330,0,88,999.000,999.0,99.0 +1986,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,10.0,5.0,71,103200,0,0,292,0,0,0,0,0,0,0,130,4.6,0,0,19.3,77777,9,999999999,150,0.1330,0,88,999.000,999.0,99.0 +1986,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,10.0,5.6,74,103100,0,0,292,0,0,0,0,0,0,0,140,5.2,0,0,19.3,77777,9,999999999,150,0.1330,0,88,999.000,999.0,99.0 +1986,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,10.0,5.0,71,103100,0,0,292,0,0,0,0,0,0,0,140,4.1,0,0,19.3,77777,9,999999999,150,0.1330,0,88,999.000,999.0,99.0 +1986,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,8.9,5.6,80,103000,0,0,288,0,0,0,0,0,0,0,120,4.1,0,0,19.3,77777,9,999999999,150,0.1330,0,88,999.000,999.0,99.0 +1986,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,9.4,6.1,80,103000,0,0,290,0,0,0,0,0,0,0,30,2.6,0,0,19.3,77777,9,999999999,160,0.1330,0,88,999.000,999.0,99.0 +1986,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,9.4,6.7,83,103000,0,0,320,0,0,0,0,0,0,0,300,1.5,8,8,19.3,550,9,999999999,160,0.1320,0,88,999.000,999.0,99.0 +1986,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,7.2,3.9,80,102900,0,0,292,0,0,0,0,0,0,0,350,3.6,3,3,19.3,77777,9,999999999,139,0.1320,0,88,999.000,999.0,99.0 +1986,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,5.0,86,102900,0,0,303,0,0,0,0,0,0,0,300,4.1,7,7,19.3,490,9,999999999,150,0.1320,0,88,999.000,999.0,99.0 +1986,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,4.4,83,102800,0,0,323,0,0,0,0,0,0,0,340,4.6,10,10,16.1,1160,9,999999999,139,0.1320,0,88,999.000,999.0,99.0 +1986,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,7.2,4.4,83,102800,0,0,323,0,0,0,0,0,0,0,310,4.6,10,10,12.9,490,9,999999999,139,0.1320,0,88,999.000,999.0,99.0 +1986,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,7.2,4.4,83,102800,1,126,323,0,0,0,0,0,0,0,360,3.6,10,10,12.9,400,9,999999999,139,0.0570,0,88,999.000,999.0,99.0 +1986,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,4.4,83,102900,142,1373,323,38,13,37,4200,900,4100,880,320,4.6,10,10,14.5,430,9,999999999,139,0.0570,0,88,999.000,999.0,99.0 +1986,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,8.3,5.0,80,102900,381,1373,329,127,11,124,14000,700,13800,4090,360,3.6,10,10,14.5,430,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1986,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,8.9,5.6,80,102900,589,1373,332,183,5,181,20600,400,20400,6760,330,4.1,10,10,14.5,430,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1986,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,9.4,5.6,77,102800,748,1373,335,227,2,226,25900,200,25800,9090,350,4.1,10,10,14.5,430,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1986,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,11.1,7.2,77,102800,848,1373,345,275,8,270,31400,700,31000,11060,60,3.1,10,10,24.1,340,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1986,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,11.7,7.8,77,102700,883,1373,348,291,5,287,33200,500,32900,11800,70,3.1,10,10,24.1,340,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1986,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,11.7,8.9,83,102600,849,1373,350,322,3,321,36400,300,36200,12270,70,3.1,10,10,24.1,340,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1986,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,12.8,9.4,80,102400,749,1373,333,317,166,225,34600,17200,25200,5800,110,4.6,8,7,24.1,1010,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1986,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,12.2,9.4,83,102400,590,1373,343,198,73,166,21700,7100,18600,4810,90,1.5,10,9,24.1,520,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1986,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,12.2,9.4,83,102400,383,1373,353,159,82,136,17400,7400,15300,3330,90,2.1,10,10,24.1,1010,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1986,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,12.2,10.0,86,102400,144,1373,353,30,4,29,3300,0,3300,1010,80,3.1,10,10,24.1,1010,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1986,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,12.2,10.6,90,102400,1,126,354,1,0,1,0,0,0,0,100,3.6,10,10,24.1,1070,9,999999999,209,0.0570,0,88,999.000,999.0,99.0 +1986,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,12.2,10.6,90,102400,0,0,354,0,0,0,0,0,0,0,140,4.1,10,10,19.3,940,9,999999999,209,0.1320,0,88,999.000,999.0,99.0 +1986,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,11.7,10.0,90,102300,0,0,322,0,0,0,0,0,0,0,170,4.1,8,5,16.1,7620,9,999999999,200,0.1320,0,88,999.000,999.0,99.0 +1986,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,9.4,83,102400,0,0,353,0,0,0,0,0,0,0,200,4.1,10,10,12.9,610,9,999999999,189,0.1320,0,88,999.000,999.0,99.0 +1986,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,12.2,9.4,83,102300,0,0,353,0,0,0,0,0,0,0,180,4.6,10,10,12.9,940,9,999999999,189,0.1320,0,88,999.000,999.0,99.0 +1986,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,11.7,9.4,86,102300,0,0,321,0,0,0,0,0,0,0,190,4.1,8,5,12.9,3050,9,999999999,189,0.1320,0,88,999.000,999.0,99.0 +1986,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,11.1,9.4,90,102200,0,0,314,0,0,0,0,0,0,0,200,4.6,7,3,12.9,77777,9,999999999,189,0.1320,0,88,999.000,999.0,99.0 +1986,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,11.7,9.4,86,102200,0,0,350,0,0,0,0,0,0,0,210,4.1,10,10,12.9,910,9,999999999,189,0.1310,0,88,999.000,999.0,99.0 +1986,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,12.2,9.4,83,102100,0,0,324,0,0,0,0,0,0,0,220,4.6,8,5,12.9,3050,9,999999999,189,0.1310,0,88,999.000,999.0,99.0 +1986,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,11.1,9.4,90,102000,0,0,319,0,0,0,0,0,0,0,230,4.6,5,5,12.9,77777,9,999999999,189,0.1310,0,88,999.000,999.0,99.0 +1986,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,12.2,10.0,86,102000,0,0,353,0,0,0,0,0,0,0,230,5.7,10,10,12.9,760,9,999999999,200,0.1310,0,88,999.000,999.0,99.0 +1986,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,11.7,10.0,90,102000,0,0,351,0,0,0,0,0,0,0,200,4.1,10,10,12.9,760,9,999999999,200,0.1310,0,88,999.000,999.0,99.0 +1986,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,11.7,10.6,93,102000,1,103,352,0,0,0,0,0,0,0,190,4.1,10,10,12.9,760,9,999999999,209,0.1000,0,88,999.000,999.0,99.0 +1986,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,13.3,11.1,87,102000,137,1373,360,29,2,29,3300,0,3300,990,210,4.6,10,10,24.1,820,9,999999999,209,0.1000,0,88,999.000,999.0,99.0 +1986,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,13.9,11.7,87,102000,376,1373,364,95,2,94,10600,100,10600,3410,210,5.2,10,10,24.1,820,9,999999999,220,0.1000,0,88,999.000,999.0,99.0 +1986,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,15.0,12.2,84,101900,583,1373,360,308,214,216,33000,21200,24000,5140,200,5.2,9,9,24.1,790,9,999999999,229,0.1000,0,88,999.000,999.0,99.0 +1986,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,15.6,12.8,84,101900,742,1373,374,133,15,125,15900,1100,15300,5780,190,5.2,10,10,12.9,270,9,999999999,240,0.1000,0,88,999.000,999.0,99.0 +1986,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,17.2,13.9,81,101800,842,1373,373,276,80,226,30300,8100,25400,7640,190,5.2,9,9,12.9,270,9,999999999,250,0.1000,0,88,999.000,999.0,99.0 +1986,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,17.8,14.4,81,101700,877,1373,369,392,163,287,42800,17100,31800,8070,170,4.1,8,8,16.1,1980,9,999999999,259,0.1000,0,88,999.000,999.0,99.0 +1986,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,18.9,13.9,73,101600,843,1373,393,268,37,245,29500,3700,27200,8160,220,5.2,10,10,24.1,760,9,999999999,250,0.1000,0,88,999.000,999.0,99.0 +1986,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,18.3,13.9,76,101600,743,1373,389,138,4,135,16300,300,16100,6160,220,5.2,10,10,12.9,670,9,999999999,250,0.1000,0,88,999.000,999.0,99.0 +1986,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,18.3,14.4,78,101500,583,1373,390,176,17,169,19900,1300,19300,6440,190,4.6,10,10,16.1,700,9,999999999,259,0.1000,0,88,999.000,999.0,99.0 +1986,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,18.3,13.9,76,101500,376,1373,389,95,5,93,10600,300,10600,3390,220,5.2,10,10,16.1,670,9,999999999,250,0.1000,0,88,999.000,999.0,99.0 +1986,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,17.8,13.3,75,101500,137,1373,386,33,0,33,3700,0,3700,1090,210,6.2,10,10,16.1,640,9,999999999,240,0.1000,0,88,999.000,999.0,99.0 +1986,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,17.2,13.3,78,101500,1,103,383,0,0,0,0,0,0,0,230,5.7,10,10,16.1,400,9,999999999,240,0.1000,0,88,999.000,999.0,99.0 +1986,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.7,13.9,84,101500,0,0,381,0,0,0,0,0,0,0,210,6.2,10,10,16.1,310,9,999999999,250,0.1310,0,88,999.000,999.0,99.0 +1986,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,16.7,14.4,87,101500,0,0,382,0,0,0,0,0,0,0,220,5.2,10,10,16.1,240,9,999999999,259,0.1310,0,88,999.000,999.0,99.0 +1986,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,16.7,15.0,90,101500,0,0,382,0,0,0,0,0,0,0,230,4.6,10,10,16.1,210,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1986,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,16.7,15.0,90,101400,0,0,382,0,0,0,0,0,0,0,240,5.2,10,10,11.3,150,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1986,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,16.7,15.6,93,101400,0,0,383,0,0,0,0,0,0,0,230,5.7,10,10,11.3,150,9,999999999,279,0.1310,0,88,999.000,999.0,99.0 +1986,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,16.7,15.0,90,101400,0,0,358,0,0,0,0,0,0,0,250,5.2,9,7,11.3,1160,9,999999999,270,0.1310,0,88,999.000,999.0,99.0 +1986,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,16.7,15.0,90,101300,0,0,358,0,0,0,0,0,0,0,250,3.1,8,7,11.3,1160,9,999999999,270,0.1300,0,88,999.000,999.0,99.0 +1986,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,16.1,15.0,93,101200,0,0,379,0,0,0,0,0,0,0,220,2.1,10,10,9.7,270,9,999999999,270,0.1300,0,88,999.000,999.0,99.0 +1986,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,15.0,14.4,97,101200,0,0,373,0,0,0,0,0,0,0,150,2.1,10,10,8.0,270,9,999999999,259,0.1300,0,88,999.000,999.0,99.0 +1986,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,15.6,15.0,97,101100,0,0,377,0,0,0,0,0,0,0,170,3.6,10,10,4.8,150,9,999999999,270,0.1300,0,88,999.000,999.0,99.0 +1986,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,15.6,15.0,97,101100,0,0,377,0,0,0,0,0,0,0,120,3.1,10,10,0.8,60,9,999999999,270,0.1300,0,88,999.000,999.0,99.0 +1986,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,15.0,15.0,100,101000,0,80,373,0,0,0,0,0,0,0,120,3.1,10,10,2.4,210,9,999999999,270,0.0570,0,88,999.000,999.0,99.0 +1986,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,15.0,15.0,100,100900,132,1374,373,24,1,24,2700,0,2700,850,110,4.1,10,10,0.8,90,9,999999999,270,0.0570,0,88,999.000,999.0,99.0 +1986,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,15.6,15.6,100,100800,371,1374,377,70,2,69,8000,100,8000,2700,90,3.6,10,10,1.6,120,9,999999999,279,0.0570,0,88,999.000,999.0,99.0 +1986,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,14.4,14.4,100,100700,578,1374,370,129,1,128,14800,100,14800,5260,120,3.6,10,10,0.4,60,9,999999999,259,0.0570,0,88,999.000,999.0,99.0 +1986,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.1,15.6,97,100600,736,1374,380,263,1,262,29500,100,29400,9840,130,3.6,10,10,0.4,370,9,999999999,279,0.0570,0,88,999.000,999.0,99.0 +1986,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,16.7,16.1,97,100500,836,1374,384,318,1,317,35700,100,35700,12040,170,2.6,10,10,3.2,310,9,999999999,279,0.0570,0,88,999.000,999.0,99.0 +1986,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,19.4,18.9,97,100400,870,1374,402,181,1,180,21400,100,21300,8340,220,5.2,10,10,6.4,120,9,999999999,329,0.0570,0,88,999.000,999.0,99.0 +1986,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,18.9,87,100300,836,1374,411,285,2,284,32400,200,32300,11290,240,6.2,10,10,11.3,370,9,999999999,329,0.0570,0,88,999.000,999.0,99.0 +1986,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,21.1,18.9,87,100200,736,1374,411,165,0,165,19200,0,19200,7180,240,5.2,10,10,11.3,370,9,999999999,329,0.0570,0,88,999.000,999.0,99.0 +1986,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,21.7,18.3,81,100200,577,1374,414,194,0,194,21600,0,21600,6950,230,5.2,10,10,11.3,640,9,999999999,320,0.0570,0,88,999.000,999.0,99.0 +1986,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,21.7,18.3,81,100200,369,1374,414,128,0,128,14000,0,14000,4070,240,4.6,10,10,11.3,610,9,999999999,320,0.0570,0,88,999.000,999.0,99.0 +1986,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,21.1,18.3,84,100100,131,1374,410,34,0,34,3800,0,3800,1090,240,4.6,10,10,11.3,610,9,999999999,320,0.0570,0,88,999.000,999.0,99.0 +1986,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,18.9,90,100200,0,57,408,1,0,1,0,0,0,0,220,4.1,10,10,11.3,670,9,999999999,329,0.0570,0,88,999.000,999.0,99.0 +1986,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,20.6,18.3,87,100200,0,0,408,0,0,0,0,0,0,0,240,5.7,10,10,11.3,880,9,999999999,320,0.1300,0,88,999.000,999.0,99.0 +1986,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,20.0,17.2,84,100200,0,0,377,0,0,0,0,0,0,0,240,7.2,8,7,11.3,2440,9,999999999,300,0.1300,0,88,999.000,999.0,99.0 +1986,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,18.9,17.2,90,100200,0,0,372,0,0,0,0,0,0,0,230,7.2,7,7,11.3,2440,9,999999999,300,0.1300,0,88,999.000,999.0,99.0 +1986,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,18.3,16.1,87,100300,0,0,351,0,0,0,0,0,0,0,250,6.2,6,2,16.1,77777,9,999999999,279,0.1300,0,88,999.000,999.0,99.0 +1986,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,18.3,13.9,76,100300,0,0,352,0,0,0,0,0,0,0,240,7.2,6,3,16.1,77777,9,999999999,250,0.1300,0,88,999.000,999.0,99.0 +1986,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,16.7,8.9,60,100400,0,0,351,0,0,0,0,0,0,0,300,9.8,9,7,16.1,7620,9,999999999,179,0.1300,0,88,999.000,999.0,99.0 +1986,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,14.4,6.7,60,100500,0,0,328,0,0,0,0,0,0,0,270,6.7,10,4,16.1,77777,9,999999999,160,0.1290,0,88,999.000,999.0,99.0 +1986,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,13.3,4.4,55,100600,0,0,315,0,0,0,0,0,0,0,270,8.2,7,2,16.1,77777,9,999999999,139,0.1290,0,88,999.000,999.0,99.0 +1986,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,4.4,59,100600,0,0,310,0,0,0,0,0,0,0,290,5.2,6,2,16.1,77777,9,999999999,139,0.1290,0,88,999.000,999.0,99.0 +1986,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,11.7,3.9,59,100700,0,0,313,0,0,0,0,0,0,0,280,6.7,8,4,16.1,77777,9,999999999,139,0.1290,0,88,999.000,999.0,99.0 +1986,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,11.1,2.8,57,100900,0,0,294,0,0,0,0,0,0,0,280,7.2,0,0,16.1,77777,9,999999999,129,0.1290,0,88,999.000,999.0,99.0 +1986,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,10.6,2.2,57,100900,0,34,304,0,0,0,0,0,0,0,260,6.2,7,3,16.1,77777,9,999999999,120,0.1290,0,88,999.000,999.0,99.0 +1986,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.6,1.1,52,101000,127,1375,300,47,127,35,4900,5800,4400,650,270,7.7,6,2,24.1,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,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,10.6,1.7,55,101100,365,1375,301,192,389,87,19900,32900,11100,1610,260,7.2,8,2,24.1,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,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,11.7,1.7,51,101100,572,1375,305,354,564,116,36200,53500,13900,2240,270,6.2,8,2,24.1,77777,9,999999999,120,0.0800,0,88,999.000,999.0,99.0 +1986,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,12.8,0.6,44,101000,731,1375,309,517,708,136,53600,70000,16200,2940,280,7.7,7,2,24.1,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,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,14.4,-0.6,36,101000,830,1375,310,580,725,138,61000,73100,16700,3310,280,7.7,7,1,24.1,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,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,14.4,-0.6,36,101000,864,1375,310,619,740,149,64900,74700,17900,3690,280,7.7,8,1,24.1,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,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,12.2,-1.1,40,101100,829,1375,304,618,748,162,64200,74800,18900,3790,270,7.7,8,2,24.1,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1986,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,15.6,-0.6,34,101000,729,1375,320,499,579,188,52200,58500,21200,4110,300,7.7,8,2,24.1,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,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,14.4,-1.1,35,101100,570,1375,314,369,622,107,37900,59200,13300,2100,290,9.3,8,2,24.1,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1986,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,13.9,-0.6,37,101100,362,1375,312,187,357,90,19200,30100,11200,1670,310,7.7,8,2,24.1,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1986,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,12.8,0.0,42,101200,124,1375,304,51,164,35,5100,7900,4400,640,290,6.7,6,1,24.1,77777,9,999999999,110,0.0800,0,88,999.000,999.0,99.0 +1986,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,12.2,0.0,43,101300,0,11,302,0,0,0,0,0,0,0,310,5.2,3,1,24.1,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1986,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,11.1,0.0,47,101400,0,0,291,0,0,0,0,0,0,0,300,5.2,2,0,24.1,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1986,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,11.1,0.6,49,101400,0,0,292,0,0,0,0,0,0,0,270,4.6,2,0,24.1,77777,9,999999999,110,0.1290,0,88,999.000,999.0,99.0 +1986,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,10.6,1.1,52,101500,0,0,290,0,0,0,0,0,0,0,260,4.6,1,0,24.1,77777,9,999999999,120,0.1290,0,88,999.000,999.0,99.0 +1986,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,10.6,1.1,52,101500,0,0,290,0,0,0,0,0,0,0,260,5.2,1,0,24.1,77777,9,999999999,120,0.1290,0,88,999.000,999.0,99.0 +1986,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,9.4,1.1,56,101600,0,0,295,0,0,0,0,0,0,0,250,4.6,6,2,24.1,77777,9,999999999,120,0.1290,0,88,999.000,999.0,99.0 +1986,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,9.4,1.7,59,101500,0,0,298,0,0,0,0,0,0,0,290,5.2,8,3,24.1,77777,9,999999999,120,0.1290,0,88,999.000,999.0,99.0 +1986,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,9.4,1.1,56,101600,0,0,291,0,0,0,0,0,0,0,270,6.2,5,1,12.9,77777,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1986,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,8.9,1.7,61,101600,0,0,290,0,0,0,0,0,0,0,280,4.6,4,1,12.9,77777,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1986,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,7.8,1.7,66,101600,0,0,280,0,0,0,0,0,0,0,250,4.1,3,0,12.9,77777,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1986,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,8.3,1.1,61,101600,0,0,281,0,0,0,0,0,0,0,280,5.2,2,0,12.9,77777,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1986,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,7.8,1.1,63,101600,0,0,279,0,0,0,0,0,0,0,280,4.6,2,0,12.9,77777,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1986,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,7.2,1.7,68,101600,0,11,286,0,0,0,0,0,0,0,290,6.2,7,2,19.3,77777,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1986,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,7.8,1.7,66,101700,122,1376,294,38,55,32,4000,2800,3800,670,290,4.6,9,4,19.3,77777,9,999999999,120,0.1140,0,88,999.000,999.0,99.0 +1986,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.8,2.2,68,101700,360,1376,295,189,318,104,19800,27200,12600,2060,290,4.6,10,4,19.3,77777,9,999999999,120,0.1140,0,88,999.000,999.0,99.0 +1986,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,9.4,2.8,64,101700,566,1376,302,360,477,160,37000,46000,18000,3220,290,3.1,10,4,24.1,77777,9,999999999,129,0.1140,0,88,999.000,999.0,99.0 +1986,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,11.1,2.8,57,101700,725,1376,309,481,573,175,50700,57900,20100,3780,290,3.6,10,4,24.1,77777,9,999999999,129,0.1140,0,88,999.000,999.0,99.0 +1986,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,12.2,2.8,53,101600,824,1376,314,493,442,226,51700,45200,24500,5390,280,3.6,10,4,24.1,77777,9,999999999,129,0.1140,0,88,999.000,999.0,99.0 +1986,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,13.3,2.2,47,101600,857,1376,318,486,415,224,51200,42700,24500,5510,250,3.6,10,4,24.1,77777,9,999999999,120,0.1140,0,88,999.000,999.0,99.0 +1986,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,13.3,2.8,49,101500,823,1376,324,456,312,267,48600,33100,28800,6730,240,2.6,10,6,24.1,2740,9,999999999,129,0.1140,0,88,999.000,999.0,99.0 +1986,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,14.4,1.1,41,101500,722,1376,327,297,144,221,32400,14900,24600,5610,260,4.6,10,6,24.1,7620,9,999999999,120,0.1140,0,88,999.000,999.0,99.0 +1986,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,13.9,1.7,44,101500,563,1376,335,226,78,193,24600,7600,21500,5250,350,3.1,9,8,24.1,1250,9,999999999,120,0.1140,0,88,999.000,999.0,99.0 +1986,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,13.9,0.6,40,101500,355,1376,341,99,32,91,10900,2800,10200,2380,320,3.6,9,9,24.1,1250,9,999999999,110,0.1140,0,88,999.000,999.0,99.0 +1986,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,13.3,0.6,42,101500,117,1364,338,29,4,28,3200,0,3200,940,290,5.7,9,9,24.1,1400,9,999999999,110,0.1140,0,88,999.000,999.0,99.0 +1986,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,12.8,1.1,45,101600,0,0,346,0,0,0,0,0,0,0,300,4.6,10,10,24.1,1400,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1986,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,12.2,1.1,47,101700,0,0,343,0,0,0,0,0,0,0,310,5.2,10,10,24.1,1400,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1986,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,11.7,2.2,53,101700,0,0,342,0,0,0,0,0,0,0,320,4.6,10,10,24.1,1490,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,11.1,2.2,55,101700,0,0,322,0,0,0,0,0,0,0,330,3.6,8,8,24.1,1490,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,10.6,2.2,57,101700,0,0,307,0,0,0,0,0,0,0,320,4.1,4,4,24.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,9.4,2.8,64,101800,0,0,300,0,0,0,0,0,0,0,310,3.6,3,3,24.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,8.9,3.3,69,101700,0,0,286,0,0,0,0,0,0,0,310,3.1,1,0,24.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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.9,3.3,69,101700,0,0,286,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,3.3,71,101700,0,0,289,0,0,0,0,0,0,0,310,3.6,2,1,24.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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.3,3.3,71,101800,0,0,296,0,0,0,0,0,0,0,300,3.6,4,3,24.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,7.8,3.3,74,101800,0,0,325,0,0,0,0,0,0,0,310,4.1,10,10,24.1,1680,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,7.8,3.3,74,101800,0,0,316,0,0,0,0,0,0,0,330,4.6,9,9,24.1,1680,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,6.7,3.3,80,101900,0,0,289,0,0,0,0,0,0,0,340,4.6,3,3,24.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,6.7,3.9,83,101900,117,1365,287,45,183,27,4600,8900,3800,480,350,5.2,3,2,24.1,77777,9,999999999,139,0.0910,0,88,999.000,999.0,99.0 +1986,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,5.0,74,101900,355,1377,302,200,489,71,20200,40800,9600,1280,10,5.2,3,3,24.1,77777,9,999999999,150,0.0910,0,88,999.000,999.0,99.0 +1986,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.0,5.0,71,101900,561,1377,309,326,508,116,34600,49100,14500,2250,360,6.2,5,5,24.1,77777,9,999999999,150,0.0910,0,88,999.000,999.0,99.0 +1986,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,8.3,6.7,89,102000,719,1377,331,115,8,111,13800,500,13500,5150,350,7.7,10,10,9.7,610,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1986,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,8.3,6.7,89,102000,818,1377,331,147,12,140,17600,900,17100,6610,360,7.7,10,10,6.4,610,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1986,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,8.9,6.1,83,102000,851,1377,333,132,6,128,16000,400,15700,6220,360,7.7,10,10,11.3,610,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1986,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,8.9,5.6,80,102000,816,1377,332,293,3,291,33100,300,32900,11250,20,7.2,10,10,11.3,610,9,999999999,150,0.0910,0,88,999.000,999.0,99.0 +1986,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,8.3,4.4,77,102000,715,1377,328,189,1,189,21800,100,21700,7820,30,7.2,10,10,11.3,610,9,999999999,139,0.0910,0,88,999.000,999.0,99.0 +1986,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,8.3,3.3,71,102000,556,1377,327,178,5,176,19900,400,19700,6390,30,5.2,10,10,19.3,610,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1986,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,8.3,2.8,68,102100,348,1377,326,102,2,101,11300,100,11200,3430,10,5.2,10,10,19.3,1980,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1986,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,8.3,2.2,66,102100,111,1319,326,25,0,25,2800,0,2800,860,360,5.7,10,10,19.3,700,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1986,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,8.3,2.2,66,102200,0,0,326,0,0,0,0,0,0,0,360,5.2,10,10,19.3,1490,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,7.8,2.2,68,102200,0,0,323,0,0,0,0,0,0,0,360,6.2,10,10,16.1,1490,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,7.8,1.7,66,102200,0,0,323,0,0,0,0,0,0,0,360,5.2,10,10,16.1,1490,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1986,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,6.7,3.3,80,102300,0,0,320,0,0,0,0,0,0,0,10,6.2,10,10,12.9,1070,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1986,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,6.7,3.9,83,102300,0,0,320,0,0,0,0,0,0,0,360,6.2,10,10,12.9,1160,9,999999999,139,0.1280,0,88,999.000,999.0,99.0 +1986,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,6.1,4.4,89,102400,0,0,318,0,0,0,0,0,0,0,360,6.2,10,10,12.9,580,9,999999999,139,0.1280,0,88,999.000,999.0,99.0 +1986,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,6.1,4.4,89,102400,0,0,318,0,0,0,0,0,0,0,350,5.7,10,10,11.3,550,9,999999999,139,0.1280,0,88,999.000,999.0,99.0 +1986,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,5.6,4.4,93,102400,0,0,316,0,0,0,0,0,0,0,350,6.7,10,10,11.3,1010,9,999999999,139,0.1270,0,88,999.000,999.0,99.0 +1986,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,5.6,4.4,93,102400,0,0,316,0,0,0,0,0,0,0,360,6.2,10,10,11.3,1010,9,999999999,139,0.1270,0,88,999.000,999.0,99.0 +1986,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,5.6,3.3,86,102500,0,0,315,0,0,0,0,0,0,0,10,5.7,10,10,11.3,1100,9,999999999,129,0.1270,0,88,999.000,999.0,99.0 +1986,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,5.6,3.3,86,102600,0,0,315,0,0,0,0,0,0,0,350,5.2,10,10,11.3,730,9,999999999,129,0.1270,0,88,999.000,999.0,99.0 +1986,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,5.0,2.2,83,102600,0,0,311,0,0,0,0,0,0,0,350,5.2,10,10,11.3,1400,9,999999999,129,0.1270,0,88,999.000,999.0,99.0 +1986,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,5.6,1.7,76,102700,0,0,313,0,0,0,0,0,0,0,330,5.2,10,10,16.1,1400,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1986,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,5.6,1.1,73,102700,113,1343,287,39,60,33,4200,3100,3900,690,330,5.2,8,5,24.1,2130,9,999999999,120,0.1360,0,88,999.000,999.0,99.0 +1986,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,6.7,0.6,65,102800,349,1377,280,182,373,85,18700,31000,10800,1570,360,5.7,6,1,24.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,7.8,1.1,63,102900,555,1377,293,311,443,129,32500,42600,15300,2520,360,5.2,8,4,24.1,77777,9,999999999,120,0.1360,0,88,999.000,999.0,99.0 +1986,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,9.4,1.1,56,102900,713,1377,298,305,264,166,33100,27600,18800,3640,30,5.7,8,3,24.1,77777,9,999999999,120,0.1360,0,88,999.000,999.0,99.0 +1986,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,10.0,0.0,50,102900,812,1377,302,489,470,209,51500,48100,23100,4890,360,6.2,7,4,24.1,7620,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,9.4,0.0,52,102900,845,1377,308,479,369,250,51500,39300,27300,6300,50,5.2,7,7,24.1,1070,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,9.4,-0.6,50,102800,810,1377,312,435,233,297,47000,24300,32700,7940,40,4.6,8,8,24.1,1070,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1986,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,8.9,1.1,59,102800,709,1377,318,258,76,218,28300,7600,24300,6610,90,5.7,9,9,24.1,1520,9,999999999,120,0.1360,0,88,999.000,999.0,99.0 +1986,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,8.9,1.1,59,102800,549,1377,318,185,57,161,20200,5500,18000,4520,90,4.6,9,9,24.1,1310,9,999999999,120,0.1360,0,88,999.000,999.0,99.0 +1986,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,9.4,1.1,56,102900,342,1377,305,145,255,80,15300,21300,10000,1510,60,4.6,6,6,24.1,1310,9,999999999,120,0.1360,0,88,999.000,999.0,99.0 +1986,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,8.3,1.1,61,102900,104,1297,290,30,58,25,3200,2500,3000,440,50,3.6,2,2,24.1,77777,9,999999999,120,0.1360,0,88,999.000,999.0,99.0 +1986,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,7.2,1.7,68,103000,0,0,277,0,0,0,0,0,0,0,50,3.6,0,0,24.1,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1986,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,6.7,1.7,71,103000,0,0,275,0,0,0,0,0,0,0,40,3.1,0,0,24.1,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1986,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,6.7,1.7,71,103000,0,0,275,0,0,0,0,0,0,0,360,3.1,0,0,24.1,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1986,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,7.2,1.1,66,103000,0,0,277,0,0,0,0,0,0,0,340,3.1,0,0,24.1,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1986,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,6.1,1.1,71,103000,0,0,272,0,0,0,0,0,0,0,350,3.1,0,0,24.1,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1986,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,6.1,1.1,71,103000,0,0,272,0,0,0,0,0,0,0,340,4.6,0,0,24.1,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1986,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,5.0,1.1,76,103000,0,0,268,0,0,0,0,0,0,0,340,3.6,0,0,24.1,77777,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1986,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,4.4,1.1,79,103000,0,0,266,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,120,0.1260,0,88,999.000,999.0,99.0 +1986,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,3.9,1.1,82,102900,0,0,264,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,120,0.1260,0,88,999.000,999.0,99.0 +1986,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,3.3,0.0,79,102900,0,0,261,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,110,0.1260,0,88,999.000,999.0,99.0 +1986,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,2.8,-1.1,76,102900,0,0,258,0,0,0,0,0,0,0,340,4.1,0,0,24.1,77777,9,999999999,100,0.1260,0,88,999.000,999.0,99.0 +1986,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,2.8,-1.7,73,102900,0,0,257,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,100,0.1260,0,88,999.000,999.0,99.0 +1986,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,2.8,-2.2,70,102900,0,0,257,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,100,0.1260,0,88,999.000,999.0,99.0 +1986,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,3.9,-1.7,67,102900,108,1321,261,39,114,28,4000,5000,3600,500,330,4.6,0,0,24.1,77777,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1986,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,5.6,-1.1,63,102900,344,1378,268,181,455,65,18400,37700,8900,1180,300,3.6,0,0,24.1,77777,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1986,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,7.8,-1.1,54,102800,550,1378,277,349,637,91,36100,60500,11900,1800,300,3.6,0,0,24.1,77777,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1986,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.0,-2.8,41,102800,707,1378,289,467,622,144,48100,61000,16700,3010,270,4.1,1,1,24.1,77777,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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.7,-2.8,37,102700,806,1378,303,505,525,195,53500,53700,22000,4510,270,3.6,3,3,24.1,77777,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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,12.2,-3.9,33,102600,838,1378,327,315,118,242,34600,12400,27000,6600,240,3.6,9,9,24.1,3050,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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,12.8,-3.9,31,102500,803,1378,330,365,142,281,39500,14800,30900,7480,220,2.1,9,9,24.1,3050,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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,14.4,-3.9,28,102400,702,1378,325,302,224,186,32500,23300,20500,4150,210,2.1,8,7,24.1,3050,9,999999999,89,0.1490,0,88,999.000,999.0,99.0 +1986,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,14.4,-0.6,36,102400,542,1378,314,334,551,113,33900,51600,13600,2140,210,3.1,2,2,24.1,77777,9,999999999,110,0.1490,0,88,999.000,999.0,99.0 +1986,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,15.0,-2.2,31,102200,335,1378,311,162,386,66,17000,31600,9300,1190,210,3.1,1,1,24.1,77777,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1986,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,15.0,-2.2,31,102200,99,1252,305,39,109,28,3900,4500,3500,500,240,3.1,0,0,24.1,77777,9,999999999,100,0.1490,0,88,999.000,999.0,99.0 +1986,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,14.4,-2.2,32,102200,0,0,303,0,0,0,0,0,0,0,250,4.1,0,0,24.1,77777,9,999999999,100,0.1260,0,88,999.000,999.0,99.0 +1986,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,12.8,-1.7,37,102200,0,0,297,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,100,0.1260,0,88,999.000,999.0,99.0 +1986,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,-1.7,34,102100,0,0,301,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,100,0.1260,0,88,999.000,999.0,99.0 +1986,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,11.7,-0.6,43,102100,0,0,293,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,110,0.1260,0,88,999.000,999.0,99.0 +1986,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,11.1,0.0,47,102100,0,0,291,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,110,0.1260,0,88,999.000,999.0,99.0 +1986,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,11.1,0.0,47,102100,0,0,291,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,110,0.1260,0,88,999.000,999.0,99.0 +1986,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.6,0.0,48,102100,0,0,289,0,0,0,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,110,0.1260,0,88,999.000,999.0,99.0 +1986,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,10.0,0.0,50,102100,0,0,287,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,110,0.1250,0,88,999.000,999.0,99.0 +1986,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,9.4,0.0,52,102100,0,0,290,0,0,0,0,0,0,0,330,5.7,1,1,24.1,77777,9,999999999,110,0.1250,0,88,999.000,999.0,99.0 +1986,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,8.9,0.0,54,102100,0,0,292,0,0,0,0,0,0,0,320,5.2,2,2,24.1,77777,9,999999999,110,0.1250,0,88,999.000,999.0,99.0 +1986,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,8.9,-1.1,50,102100,0,0,287,0,0,0,0,0,0,0,340,5.2,1,1,24.1,77777,9,999999999,100,0.1250,0,88,999.000,999.0,99.0 +1986,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,8.3,-1.1,52,102200,0,0,279,0,0,0,0,0,0,0,340,5.7,0,0,24.1,77777,9,999999999,100,0.1250,0,88,999.000,999.0,99.0 +1986,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,8.3,-0.6,54,102200,0,0,279,0,0,0,0,0,0,0,330,5.2,0,0,24.1,77777,9,999999999,110,0.1250,0,88,999.000,999.0,99.0 +1986,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.9,-0.6,52,102300,103,1276,282,42,167,26,4200,7800,3600,460,350,5.2,0,0,24.1,77777,9,999999999,110,0.1090,0,88,999.000,999.0,99.0 +1986,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,10.0,0.6,52,102400,339,1379,293,181,475,62,18400,39200,8700,1130,360,5.7,1,1,24.1,77777,9,999999999,110,0.1090,0,88,999.000,999.0,99.0 +1986,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.2,3.3,55,102400,544,1379,305,337,638,82,35200,60700,11100,1640,30,4.6,1,1,24.1,77777,9,999999999,129,0.1090,0,88,999.000,999.0,99.0 +1986,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,102400,701,1379,315,507,770,111,53100,76300,14200,2400,40,6.2,2,2,24.1,77777,9,999999999,139,0.1090,0,88,999.000,999.0,99.0 +1986,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,5.6,58,102400,799,1379,319,543,694,136,56800,69600,16400,3150,60,5.7,2,2,24.1,77777,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1986,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,13.3,7.2,67,102400,832,1379,314,561,749,105,58700,74700,13500,2450,80,6.7,1,1,24.1,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1986,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,12.8,7.2,69,102300,796,1379,316,540,663,152,56000,66100,17700,3450,70,6.2,2,2,24.1,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1986,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,12.8,7.2,69,102300,695,1379,316,432,595,128,44700,58500,15100,2700,80,6.7,2,2,24.1,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1986,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,12.2,7.2,72,102300,535,1379,303,342,679,75,35900,64600,10700,1510,90,6.2,0,0,24.1,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1986,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,11.7,7.2,74,102200,328,1379,301,178,508,54,18200,41800,8200,1000,110,5.2,0,0,24.1,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1986,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,10.6,7.2,80,102200,93,1230,297,39,148,25,3900,6700,3300,440,110,4.6,0,0,24.1,77777,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1986,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,10.0,7.2,83,102200,0,0,294,0,0,0,0,0,0,0,100,4.1,0,0,24.1,77777,9,999999999,170,0.1250,0,88,999.000,999.0,99.0 +1986,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,10.0,7.2,83,102200,0,0,294,0,0,0,0,0,0,0,130,4.6,0,0,24.1,77777,9,999999999,170,0.1250,0,88,999.000,999.0,99.0 +1986,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,9.4,7.2,86,102200,0,0,292,0,0,0,0,0,0,0,130,4.1,0,0,24.1,77777,9,999999999,170,0.1250,0,88,999.000,999.0,99.0 +1986,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,8.3,6.7,89,102200,0,0,287,0,0,0,0,0,0,0,200,3.6,0,0,24.1,77777,9,999999999,160,0.1250,0,88,999.000,999.0,99.0 +1986,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,8.3,6.7,89,102200,0,0,287,0,0,0,0,0,0,0,200,3.1,0,0,24.1,77777,9,999999999,160,0.1250,0,88,999.000,999.0,99.0 +1986,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,7.8,6.7,93,102200,0,0,285,0,0,0,0,0,0,0,190,3.1,0,0,24.1,77777,9,999999999,160,0.1250,0,88,999.000,999.0,99.0 +1986,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,7.8,6.1,89,102200,0,0,284,0,0,0,0,0,0,0,220,3.1,0,0,24.1,77777,9,999999999,160,0.1250,0,88,999.000,999.0,99.0 +1986,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,7.2,6.1,93,102100,0,0,282,0,0,0,0,0,0,0,210,3.6,1,0,24.1,77777,9,999999999,160,0.1240,0,88,999.000,999.0,99.0 +1986,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,7.2,6.1,93,102100,0,0,291,0,0,0,0,0,0,0,220,3.6,2,2,24.1,77777,9,999999999,160,0.1240,0,88,999.000,999.0,99.0 +1986,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,6.7,96,102000,0,0,297,0,0,0,0,0,0,0,200,3.1,5,4,24.1,77777,9,999999999,160,0.1240,0,88,999.000,999.0,99.0 +1986,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,7.8,6.7,93,102000,0,0,308,0,0,0,0,0,0,0,190,4.1,8,7,16.1,3660,9,999999999,160,0.1240,0,88,999.000,999.0,99.0 +1986,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,7.2,93,102000,0,0,322,0,0,0,0,0,0,0,230,3.1,9,9,16.1,2440,9,999999999,170,0.1240,0,88,999.000,999.0,99.0 +1986,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,8.9,7.8,93,102000,0,0,319,0,0,0,0,0,0,0,210,3.6,8,8,16.1,2440,9,999999999,170,0.1240,0,88,999.000,999.0,99.0 +1986,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,7.8,90,102000,98,1253,316,17,8,17,1900,500,1900,440,220,5.7,7,7,19.3,3050,9,999999999,170,0.1630,0,88,999.000,999.0,99.0 +1986,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,10.6,8.3,86,102000,333,1380,318,107,91,85,11700,7700,9800,1860,220,7.2,8,6,19.3,6100,9,999999999,179,0.1630,0,88,999.000,999.0,99.0 +1986,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.8,8.9,77,101900,538,1380,321,278,357,137,28900,34000,15600,2690,230,7.2,4,3,19.3,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1986,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,14.4,9.4,72,101900,695,1380,325,424,522,158,44900,52400,18400,3320,230,7.2,3,2,24.1,77777,9,999999999,189,0.1630,0,88,999.000,999.0,99.0 +1986,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,16.7,8.3,58,101800,793,1380,335,507,628,142,52900,62800,16700,3250,240,7.2,2,2,24.1,77777,9,999999999,179,0.1630,0,88,999.000,999.0,99.0 +1986,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,17.8,7.8,52,101700,826,1380,339,532,621,156,55300,62100,18000,3650,240,7.2,2,2,24.1,77777,9,999999999,170,0.1630,0,88,999.000,999.0,99.0 +1986,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,18.9,6.7,45,101600,790,1380,332,474,585,135,49600,58600,15900,3100,240,6.7,2,0,24.1,77777,9,999999999,160,0.1630,0,88,999.000,999.0,99.0 +1986,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,18.9,5.6,42,101500,689,1380,337,432,573,143,44400,55900,16400,2940,250,6.7,6,1,24.1,77777,9,999999999,150,0.1630,0,88,999.000,999.0,99.0 +1986,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,20.0,5.0,38,101400,529,1380,346,302,436,132,31400,41400,15400,2570,220,6.7,8,2,24.1,77777,9,999999999,150,0.1630,0,88,999.000,999.0,99.0 +1986,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,19.4,3.9,36,101400,321,1380,346,158,252,98,16400,20400,11700,1950,220,6.7,10,3,24.1,77777,9,999999999,139,0.1630,0,88,999.000,999.0,99.0 +1986,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.9,3.9,37,101400,87,1184,346,29,22,27,3100,1300,3000,640,240,5.7,8,4,24.1,77777,9,999999999,139,0.1630,0,88,999.000,999.0,99.0 +1986,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,16.7,4.4,45,101400,0,0,342,0,0,0,0,0,0,0,200,2.6,8,6,24.1,4570,9,999999999,139,0.1240,0,88,999.000,999.0,99.0 +1986,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,16.7,5.0,46,101500,0,0,370,0,0,0,0,0,0,0,240,3.1,10,10,16.1,2440,9,999999999,150,0.1240,0,88,999.000,999.0,99.0 +1986,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,16.7,5.0,46,101500,0,0,352,0,0,0,0,0,0,0,240,5.2,9,8,16.1,1520,9,999999999,150,0.1240,0,88,999.000,999.0,99.0 +1986,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,15.6,5.0,50,101500,0,0,364,0,0,0,0,0,0,0,240,4.1,10,10,16.1,4570,9,999999999,150,0.1240,0,88,999.000,999.0,99.0 +1986,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,15.0,5.6,54,101500,0,0,362,0,0,0,0,0,0,0,230,4.1,10,10,16.1,3050,9,999999999,150,0.1240,0,88,999.000,999.0,99.0 +1986,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.9,6.1,60,101500,0,0,357,0,0,0,0,0,0,0,220,3.1,10,10,16.1,3050,9,999999999,160,0.1240,0,88,999.000,999.0,99.0 +1986,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,5.6,58,101500,0,0,356,0,0,0,0,0,0,0,230,3.6,10,10,16.1,3050,9,999999999,150,0.1240,0,88,999.000,999.0,99.0 +1986,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,7.8,67,101600,0,0,342,0,0,0,0,0,0,0,290,4.6,8,8,16.1,3050,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1986,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,13.9,8.3,69,101600,0,0,325,0,0,0,0,0,0,0,330,5.2,8,3,16.1,77777,9,999999999,179,0.1230,0,88,999.000,999.0,99.0 +1986,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,12.8,8.3,75,101700,0,0,325,0,0,0,0,0,0,0,330,4.1,7,5,16.1,3050,9,999999999,179,0.1230,0,88,999.000,999.0,99.0 +1986,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,7.8,75,101700,0,0,317,0,0,0,0,0,0,0,310,4.1,7,3,16.1,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1986,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,11.1,7.2,77,101800,0,0,312,0,0,0,0,0,0,0,340,4.1,4,3,11.3,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1986,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,11.1,7.2,77,101800,0,0,314,0,0,0,0,0,0,0,340,3.6,4,4,11.3,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1986,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.2,6.7,69,101900,94,1231,309,39,105,29,4000,4300,3600,530,320,3.6,6,1,11.3,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,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,6.7,64,102000,328,1381,307,189,551,56,19400,45200,8600,1030,270,3.1,6,0,11.3,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,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,6.1,56,102000,532,1381,314,355,738,66,36700,69700,9700,1360,260,3.1,3,0,11.3,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,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,15.6,6.7,56,102000,689,1381,317,487,805,81,51100,79100,11400,1780,180,4.1,3,0,11.3,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,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,16.7,6.7,52,102000,787,1381,322,573,807,108,59200,79800,13600,2350,180,4.6,6,0,12.9,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,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,17.8,6.1,47,101900,819,1381,327,605,846,97,63500,84500,13200,2290,170,5.2,4,0,16.1,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1986,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,20.0,5.6,39,101800,783,1381,336,575,847,89,60600,84400,12500,2080,250,4.6,3,0,16.1,77777,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1986,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,20.0,5.6,39,101800,682,1381,336,488,814,81,51000,79900,11400,1770,220,5.7,3,0,16.1,77777,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1986,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,20.6,5.6,38,101700,522,1381,339,349,749,61,36200,70700,9400,1280,230,6.2,2,0,19.3,77777,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1986,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,20.6,4.4,35,101700,315,1381,337,183,594,44,18400,49100,7200,850,280,6.2,2,0,19.3,77777,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1986,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,17.2,7.2,52,101800,82,1162,325,42,210,22,3800,10200,3100,390,210,5.2,2,0,12.9,77777,9,999999999,170,0.0610,0,88,999.000,999.0,99.0 +1986,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,15.6,8.3,62,101800,0,0,319,0,0,0,0,0,0,0,220,6.2,1,0,12.9,77777,9,999999999,179,0.1230,0,88,999.000,999.0,99.0 +1986,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,15.0,7.8,62,101800,0,0,316,0,0,0,0,0,0,0,200,4.1,2,0,12.9,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1986,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,14.4,7.8,65,101800,0,0,313,0,0,0,0,0,0,0,220,6.7,2,0,12.9,77777,9,999999999,179,0.1230,0,88,999.000,999.0,99.0 +1986,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,13.9,7.8,67,101900,0,0,311,0,0,0,0,0,0,0,240,6.7,1,0,12.9,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1986,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,12.8,7.8,72,101800,0,0,306,0,0,0,0,0,0,0,230,5.7,1,0,12.9,77777,9,999999999,170,0.1230,0,88,999.000,999.0,99.0 +1986,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,12.8,8.3,75,101800,0,0,328,0,0,0,0,0,0,0,230,5.2,10,6,12.9,3050,9,999999999,179,0.1230,0,88,999.000,999.0,99.0 +1986,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,12.2,8.3,77,101800,0,0,325,0,0,0,0,0,0,0,240,5.7,10,6,12.9,3050,9,999999999,179,0.1230,0,88,999.000,999.0,99.0 +1986,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,11.7,8.9,83,101800,0,0,316,0,0,0,0,0,0,0,230,5.2,10,3,12.9,77777,9,999999999,189,0.1220,0,88,999.000,999.0,99.0 +1986,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,11.1,8.9,86,101700,0,0,313,0,0,0,0,0,0,0,230,4.1,10,3,12.9,77777,9,999999999,189,0.1220,0,88,999.000,999.0,99.0 +1986,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,11.7,9.4,86,101700,0,0,313,0,0,0,0,0,0,0,220,6.7,10,2,12.9,77777,9,999999999,189,0.1220,0,88,999.000,999.0,99.0 +1986,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,11.7,10.0,90,101600,0,0,317,0,0,0,0,0,0,0,230,7.2,10,3,11.3,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1986,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,12.2,10.0,86,101600,0,0,316,0,0,0,0,0,0,0,230,7.2,6,2,9.7,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1986,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,12.2,10.0,86,101600,0,0,316,0,0,0,0,0,0,0,230,6.7,7,2,9.7,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1986,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,10.0,80,101500,89,1209,321,38,113,27,3800,4600,3400,490,230,6.7,9,2,9.7,77777,9,999999999,200,0.0510,0,88,999.000,999.0,99.0 +1986,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,15.0,10.6,75,101500,322,1381,330,157,352,73,16300,28300,9700,1330,230,7.7,10,2,9.7,77777,9,999999999,209,0.0510,0,88,999.000,999.0,99.0 +1986,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,16.1,10.6,70,101500,527,1381,335,303,499,110,32100,47400,13900,2100,230,6.2,8,2,9.7,77777,9,999999999,209,0.0510,0,88,999.000,999.0,99.0 +1986,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,18.3,10.6,61,101400,683,1381,348,428,507,174,44800,50700,19600,3670,230,6.2,10,3,9.7,77777,9,999999999,209,0.0510,0,88,999.000,999.0,99.0 +1986,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,20.6,11.1,55,101300,781,1381,373,476,527,175,50700,53700,20300,3920,230,8.2,10,7,11.3,7620,9,999999999,209,0.0510,0,88,999.000,999.0,99.0 +1986,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,22.2,10.6,48,101200,813,1381,373,355,267,196,38700,28400,21900,4640,240,7.7,10,5,11.3,77777,9,999999999,209,0.0510,0,88,999.000,999.0,99.0 +1986,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,22.8,10.6,46,101100,777,1381,384,453,463,189,47800,47100,21200,4260,240,7.7,10,7,12.9,7620,9,999999999,200,0.0510,0,88,999.000,999.0,99.0 +1986,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,23.3,9.4,41,101100,675,1381,399,272,81,232,29800,8100,25800,6710,270,7.2,10,9,12.9,7620,9,999999999,189,0.0510,0,88,999.000,999.0,99.0 +1986,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,22.8,10.0,45,101100,515,1381,383,189,122,143,20600,11800,16200,3310,250,6.2,10,7,12.9,7620,9,999999999,200,0.0510,0,88,999.000,999.0,99.0 +1986,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,22.2,9.4,44,101100,308,1381,375,125,214,76,13200,17000,9400,1440,280,7.7,10,6,12.9,3050,9,999999999,189,0.0510,0,88,999.000,999.0,99.0 +1986,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,18.9,11.1,61,101100,77,1117,389,9,9,9,1100,500,1000,240,270,7.7,10,10,12.9,1980,9,999999999,209,0.0510,0,88,999.000,999.0,99.0 +1986,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,18.3,10.6,61,101200,0,0,385,0,0,0,0,0,0,0,280,7.7,10,10,12.9,2130,9,999999999,209,0.1220,0,88,999.000,999.0,99.0 +1986,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,17.8,10.0,61,101300,0,0,345,0,0,0,0,0,0,0,290,6.7,5,3,12.9,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1986,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,16.7,10.0,65,101400,0,0,340,0,0,0,0,0,0,0,290,6.2,7,3,12.9,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1986,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,16.1,8.9,63,101500,0,0,336,0,0,0,0,0,0,0,330,6.2,5,3,12.9,77777,9,999999999,189,0.1220,0,88,999.000,999.0,99.0 +1986,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,5.0,57,101600,0,0,316,0,0,0,0,0,0,0,340,7.2,2,2,12.9,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1986,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,11.7,3.3,57,101700,0,0,310,0,0,0,0,0,0,0,310,8.2,10,3,12.9,77777,9,999999999,129,0.1220,0,88,999.000,999.0,99.0 +1986,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,10.6,2.2,57,101800,0,0,292,0,0,0,0,0,0,0,350,6.7,8,0,16.1,77777,9,999999999,129,0.1220,0,88,999.000,999.0,99.0 +1986,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,10.0,2.2,59,101900,0,0,295,0,0,0,0,0,0,0,360,6.2,8,1,19.3,77777,9,999999999,129,0.1210,0,88,999.000,999.0,99.0 +1986,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,9.4,1.7,59,101900,0,0,309,0,0,0,0,0,0,0,330,5.2,10,7,19.3,3050,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1986,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,9.4,1.1,56,101900,0,0,314,0,0,0,0,0,0,0,340,4.6,10,8,19.3,3050,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1986,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,1.1,59,101900,0,0,327,0,0,0,0,0,0,0,350,5.2,10,10,19.3,1160,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1986,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,8.3,1.1,61,102000,0,0,324,0,0,0,0,0,0,0,360,3.1,10,10,19.3,3050,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1986,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,8.3,1.1,61,102100,0,0,309,0,0,0,0,0,0,0,320,4.1,8,8,19.3,3050,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1986,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,7.8,0.0,58,102100,85,1186,283,28,67,21,2800,2700,2600,360,330,5.7,1,1,24.1,77777,9,999999999,110,0.1580,0,88,999.000,999.0,99.0 +1986,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,8.9,0.0,54,102100,317,1382,282,158,408,63,16000,32700,8500,1130,350,6.2,0,0,24.1,77777,9,999999999,110,0.1580,0,88,999.000,999.0,99.0 +1986,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,9.4,0.0,52,102200,521,1382,284,321,603,90,33100,56500,11700,1750,320,5.7,0,0,24.1,77777,9,999999999,110,0.1580,0,88,999.000,999.0,99.0 +1986,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,10.6,0.0,48,102200,677,1382,289,452,689,111,47300,67800,13900,2350,350,4.1,0,0,24.1,77777,9,999999999,110,0.1580,0,88,999.000,999.0,99.0 +1986,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,12.2,-1.7,38,102200,775,1382,294,548,749,123,57500,75100,15300,2810,270,5.2,0,0,24.1,77777,9,999999999,100,0.1580,0,88,999.000,999.0,99.0 +1986,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.2,-1.7,38,102100,807,1382,294,574,758,126,60400,76300,15700,2970,270,5.2,0,0,24.1,77777,9,999999999,100,0.1580,0,88,999.000,999.0,99.0 +1986,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,13.3,-2.2,34,102100,770,1382,298,544,748,122,57100,74900,15200,2780,280,6.2,0,0,24.1,77777,9,999999999,100,0.1580,0,88,999.000,999.0,99.0 +1986,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,13.9,-2.8,32,102100,669,1382,300,454,703,110,47400,69100,13800,2320,320,6.2,0,0,24.1,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1986,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,13.3,-2.8,33,102100,509,1382,303,304,565,92,31200,52500,11800,1760,330,6.7,1,1,24.1,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1986,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,12.8,-2.8,34,102200,302,1382,295,151,398,61,15100,31300,8200,1080,330,7.7,0,0,24.1,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1986,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,-3.3,37,102200,72,1094,288,29,62,23,2900,2300,2800,410,330,6.7,0,0,24.1,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1986,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.0,-2.8,41,102400,0,0,284,0,0,0,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,89,0.1210,0,88,999.000,999.0,99.0 +1986,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,9.4,-2.8,43,102400,0,0,282,0,0,0,0,0,0,0,340,5.2,0,0,24.1,77777,9,999999999,89,0.1210,0,88,999.000,999.0,99.0 +1986,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,8.3,-3.9,42,102500,0,0,276,0,0,0,0,0,0,0,330,6.7,0,0,24.1,77777,9,999999999,89,0.1210,0,88,999.000,999.0,99.0 +1986,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.8,-3.9,44,102600,0,0,274,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,89,0.1210,0,88,999.000,999.0,99.0 +1986,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,6.7,-3.3,49,102600,0,0,270,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,89,0.1210,0,88,999.000,999.0,99.0 +1986,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,6.1,-3.3,51,102600,0,0,268,0,0,0,0,0,0,0,330,5.7,0,0,24.1,77777,9,999999999,89,0.1210,0,88,999.000,999.0,99.0 +1986,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,5.0,-2.8,58,102600,0,0,264,0,0,0,0,0,0,0,350,5.2,0,0,24.1,77777,9,999999999,89,0.1210,0,88,999.000,999.0,99.0 +1986,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,4.4,-2.8,60,102600,0,0,262,0,0,0,0,0,0,0,340,4.1,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1986,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.9,-3.3,60,102600,0,0,260,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1986,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,3.9,-3.3,60,102600,0,0,260,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1986,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,3.3,-3.3,62,102600,0,0,258,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1986,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,3.3,-2.8,65,102600,0,0,258,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1986,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,2.8,-2.8,67,102600,0,0,256,0,0,0,0,0,0,0,340,3.6,2,0,24.1,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1986,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,3.9,-2.2,65,102600,81,1141,261,36,117,25,3500,5100,3100,450,280,3.6,3,0,24.1,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,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,5.6,-2.2,58,102700,311,1383,267,168,476,58,17000,38100,8400,1050,280,3.1,3,0,24.1,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,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,-1.7,52,102600,515,1383,276,330,656,82,34200,61500,11200,1610,250,3.1,3,0,24.1,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,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,9.4,-1.1,48,102600,671,1383,289,445,669,116,46200,65600,14300,2430,230,5.2,6,1,24.1,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,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,10.6,-1.1,45,102500,769,1383,294,528,729,119,55600,73100,14900,2710,250,6.2,7,1,24.1,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,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,12.2,-1.7,38,102400,800,1383,304,548,630,179,56200,62200,20100,3960,240,5.7,9,2,24.1,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1986,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,13.9,-3.9,29,102300,764,1383,299,564,704,170,57800,69300,19400,3640,230,4.6,10,0,24.1,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1986,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,15.0,-5.0,25,102200,662,1383,308,439,596,149,46300,59400,17800,3060,260,6.7,10,1,24.1,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1986,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,15.6,-7.2,20,102200,502,1383,308,311,543,110,32600,50900,14100,2090,250,5.7,8,1,24.1,77777,9,999999999,69,0.1060,0,88,999.000,999.0,99.0 +1986,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,14.4,-5.0,26,102100,296,1383,309,156,331,83,15800,25500,10300,1550,230,6.2,8,2,24.1,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1986,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,-3.9,29,102100,68,1049,316,22,7,22,2500,400,2400,530,240,5.2,9,5,24.1,7620,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1986,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.6,47,102100,0,0,312,0,0,0,0,0,0,0,210,5.7,8,5,24.1,7620,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,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,11.1,0.6,49,102100,0,0,312,0,0,0,0,0,0,0,230,6.2,10,6,16.1,7620,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,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.6,-1.7,43,102100,0,0,311,0,0,0,0,0,0,0,240,5.2,10,7,16.1,7620,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1986,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.6,-2.2,41,102100,0,0,310,0,0,0,0,0,0,0,240,6.2,10,7,16.1,7620,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1986,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,10.0,-2.2,43,102100,0,0,308,0,0,0,0,0,0,0,250,6.2,10,7,16.1,7620,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1986,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,10.0,-1.1,46,102100,0,0,309,0,0,0,0,0,0,0,230,5.2,10,7,16.1,7620,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1986,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,9.4,-1.1,48,102000,0,0,303,0,0,0,0,0,0,0,240,5.2,10,6,16.1,3050,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1986,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,10.0,-0.6,48,102000,0,0,330,0,0,0,0,0,0,0,260,5.7,10,10,16.1,3050,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,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,9.4,0.0,52,102000,0,0,328,0,0,0,0,0,0,0,240,5.2,10,10,16.1,3050,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,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,9.4,0.0,52,102000,0,0,328,0,0,0,0,0,0,0,240,5.2,10,10,16.1,3050,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,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,10.0,0.0,50,102000,0,0,331,0,0,0,0,0,0,0,260,4.6,10,10,16.1,3050,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,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,8.3,0.6,58,102100,0,0,324,0,0,0,0,0,0,0,250,3.6,10,10,16.1,2740,9,999999999,110,0.1200,0,88,999.000,999.0,99.0 +1986,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,8.3,1.1,61,102000,0,0,324,0,0,0,0,0,0,0,240,3.6,10,10,16.1,2740,9,999999999,120,0.1200,0,88,999.000,999.0,99.0 +1986,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,8.9,1.7,61,102000,77,1119,328,15,0,15,1700,0,1700,550,300,2.6,10,10,16.1,2740,9,999999999,120,0.2160,0,88,999.000,999.0,99.0 +1986,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,10.0,1.1,54,102100,306,1384,332,46,2,45,5300,100,5300,1780,300,4.1,10,10,16.1,2740,9,999999999,120,0.2160,0,88,999.000,999.0,99.0 +1986,10,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,102200,510,1384,332,87,8,84,10200,500,10000,3560,290,4.1,10,10,16.1,1980,9,999999999,120,0.2160,0,88,999.000,999.0,99.0 +1986,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,9.4,3.3,66,102100,665,1384,332,87,3,85,10500,200,10400,3970,300,4.1,10,10,16.1,1980,9,999999999,129,0.2160,0,88,999.000,999.0,99.0 +1986,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,10.0,3.3,64,102100,762,1384,335,117,3,115,14000,200,13900,5430,300,4.1,10,10,16.1,1830,9,999999999,129,0.2160,0,88,999.000,999.0,99.0 +1986,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,10.6,2.8,59,102100,794,1384,337,124,7,121,15100,500,14800,5760,350,3.1,10,10,16.1,1490,9,999999999,129,0.2160,0,88,999.000,999.0,99.0 +1986,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,11.1,1.7,53,102000,758,1384,338,134,4,132,16000,300,15800,6080,90,2.6,10,10,16.1,1490,9,999999999,120,0.2160,0,88,999.000,999.0,99.0 +1986,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,10.6,3.9,64,102000,656,1384,338,203,3,201,22900,300,22700,7710,120,3.1,10,10,16.1,1250,9,999999999,139,0.2160,0,88,999.000,999.0,99.0 +1986,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,10.6,3.9,64,102000,496,1384,338,135,1,134,15100,100,15100,5000,20,3.6,10,10,16.1,2740,9,999999999,139,0.2160,0,88,999.000,999.0,99.0 +1986,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,10.0,4.4,69,102000,289,1384,336,42,0,42,4900,0,4900,1660,20,3.6,10,10,16.1,1220,9,999999999,139,0.2160,0,88,999.000,999.0,99.0 +1986,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,9.4,5.0,74,102000,63,1026,334,13,0,13,1500,0,1500,480,50,3.6,10,10,6.4,790,9,999999999,150,0.2160,0,88,999.000,999.0,99.0 +1986,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,8.3,6.1,86,102000,0,0,330,0,0,0,0,0,0,0,90,4.6,10,10,4.8,730,9,999999999,160,0.1200,0,88,999.000,999.0,99.0 +1986,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,8.3,6.7,89,102000,0,0,331,0,0,0,0,0,0,0,60,5.2,10,10,4.8,730,9,999999999,160,0.1200,0,88,999.000,999.0,99.0 +1986,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,8.9,7.8,93,101900,0,0,335,0,0,0,0,0,0,0,60,4.1,10,10,4.8,730,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1986,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,9.4,7.8,90,101900,0,0,337,0,0,0,0,0,0,0,60,5.7,10,10,4.8,490,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1986,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,8.9,7.8,93,101800,0,0,335,0,0,0,0,0,0,0,70,8.2,10,10,4.8,490,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1986,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,8.3,8.3,100,101700,0,0,332,0,0,0,0,0,0,0,70,7.7,10,10,4.8,120,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1986,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,8.9,8.3,96,101600,0,0,335,0,0,0,0,0,0,0,80,7.2,10,10,4.0,90,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1986,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,8.9,8.9,100,101600,0,0,336,0,0,0,0,0,0,0,60,7.2,10,10,2.4,90,9,999999999,189,0.1190,0,88,999.000,999.0,99.0 +1986,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,8.9,8.9,100,101500,0,0,336,0,0,0,0,0,0,0,60,7.7,10,10,2.4,120,9,999999999,189,0.1190,0,88,999.000,999.0,99.0 +1986,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,8.9,8.9,100,101500,0,0,336,0,0,0,0,0,0,0,20,5.7,10,10,4.0,120,9,999999999,189,0.1190,0,88,999.000,999.0,99.0 +1986,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,9.4,8.9,96,101400,0,0,338,0,0,0,0,0,0,0,40,6.7,10,10,6.4,150,9,999999999,179,0.1190,0,88,999.000,999.0,99.0 +1986,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,10.0,8.9,93,101400,0,0,341,0,0,0,0,0,0,0,60,7.7,10,10,6.4,210,9,999999999,189,0.1190,0,88,999.000,999.0,99.0 +1986,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,8.9,93,101400,0,0,341,0,0,0,0,0,0,0,40,7.7,10,10,9.7,150,9,999999999,189,0.1190,0,88,999.000,999.0,99.0 +1986,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,9.4,100,101400,73,1096,339,16,0,16,1800,0,1800,570,30,6.2,10,10,2.4,120,9,999999999,189,0.2170,0,88,999.000,999.0,99.0 +1986,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,10.0,100,101300,300,1385,343,45,0,45,5200,0,5200,1770,30,7.2,10,10,2.4,60,9,999999999,200,0.2170,0,88,999.000,999.0,99.0 +1986,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,10.0,10.0,100,101200,504,1385,343,86,0,85,10000,0,10000,3580,10,6.2,10,10,1.6,60,9,999999999,200,0.2170,0,88,999.000,999.0,99.0 +1986,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,10.6,10.0,96,101300,659,1385,345,193,1,193,21900,100,21900,7530,10,4.6,10,10,4.8,60,9,999999999,200,0.2170,0,88,999.000,999.0,99.0 +1986,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,10.6,10.0,96,101200,756,1385,345,228,1,227,25900,100,25900,9130,20,5.7,10,10,6.4,120,9,999999999,200,0.2170,0,88,999.000,999.0,99.0 +1986,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,11.1,10.0,93,101200,788,1385,348,252,1,251,28600,100,28500,10000,360,4.1,10,10,6.4,120,9,999999999,200,0.2170,0,88,999.000,999.0,99.0 +1986,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,11.1,10.0,93,101100,751,1385,348,237,1,236,26800,100,26800,9320,10,4.6,10,10,6.4,120,9,999999999,200,0.2170,0,88,999.000,999.0,99.0 +1986,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,11.1,10.0,93,100900,650,1385,348,206,1,205,23100,100,23100,7750,10,4.1,10,10,6.4,120,9,999999999,200,0.2170,0,88,999.000,999.0,99.0 +1986,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,10.6,10.0,96,101000,490,1385,345,148,0,148,16500,0,16500,5290,330,4.1,10,10,6.4,120,9,999999999,200,0.2170,0,88,999.000,999.0,99.0 +1986,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,10.6,10.0,96,101000,283,1385,345,83,0,83,9200,0,9200,2710,350,4.1,10,10,8.0,150,9,999999999,200,0.2170,0,88,999.000,999.0,99.0 +1986,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,10.6,10.0,96,101000,59,981,345,21,0,21,2400,0,2400,690,350,4.6,10,10,8.0,150,9,999999999,200,0.2170,0,88,999.000,999.0,99.0 +1986,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.6,9.4,93,101000,0,0,345,0,0,0,0,0,0,0,350,4.1,10,10,8.0,180,9,999999999,189,0.1190,0,88,999.000,999.0,99.0 +1986,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,10.0,9.4,96,101000,0,0,342,0,0,0,0,0,0,0,360,3.1,10,10,8.0,180,9,999999999,189,0.1190,0,88,999.000,999.0,99.0 +1986,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,10.0,8.9,93,101000,0,0,341,0,0,0,0,0,0,0,360,4.1,10,10,8.0,180,9,999999999,179,0.1190,0,88,999.000,999.0,99.0 +1986,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,10.0,8.9,93,101000,0,0,341,0,0,0,0,0,0,0,350,4.1,10,10,6.4,180,9,999999999,179,0.1190,0,88,999.000,999.0,99.0 +1986,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,10.0,8.9,93,101000,0,0,341,0,0,0,0,0,0,0,330,3.6,10,10,6.4,210,9,999999999,179,0.1190,0,88,999.000,999.0,99.0 +1986,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,10.0,8.9,93,101000,0,0,341,0,0,0,0,0,0,0,290,2.6,10,10,6.4,210,9,999999999,179,0.1190,0,88,999.000,999.0,99.0 +1986,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,10.0,9.4,96,101000,0,0,342,0,0,0,0,0,0,0,190,3.6,10,10,6.4,210,9,999999999,189,0.1190,0,88,999.000,999.0,99.0 +1986,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,10.0,9.4,96,101000,0,0,342,0,0,0,0,0,0,0,230,4.1,10,10,6.4,120,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1986,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,9.4,93,101000,0,0,345,0,0,0,0,0,0,0,210,3.1,10,10,9.7,240,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1986,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,10.0,9.4,96,101000,0,0,342,0,0,0,0,0,0,0,240,4.1,10,10,8.0,150,9,999999999,189,0.1180,0,88,999.000,999.0,99.0 +1986,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,10.6,10.0,96,101000,0,0,345,0,0,0,0,0,0,0,240,5.7,10,10,6.4,90,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1986,10,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,101000,0,0,345,0,0,0,0,0,0,0,240,4.6,10,10,6.4,150,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1986,10,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,101000,0,0,345,0,0,0,0,0,0,0,250,5.2,10,10,9.7,210,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1986,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,11.1,10.0,93,101000,69,1074,348,24,0,24,2700,0,2700,780,250,5.2,10,10,8.0,240,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,11.7,10.0,90,101100,295,1385,351,76,1,76,8500,0,8500,2620,240,5.7,10,10,8.0,1680,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,10,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,101100,498,1385,353,141,0,141,15800,0,15800,5180,240,4.1,10,10,9.7,1520,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,10.6,81,101200,654,1385,363,201,0,201,22700,0,22700,7680,280,5.2,10,10,9.7,1520,9,999999999,209,0.1160,0,88,999.000,999.0,99.0 +1986,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,16.1,10.6,70,101200,750,1385,356,311,189,208,34200,19600,23500,5350,270,5.7,8,8,16.1,3050,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,16.1,10.6,70,101200,781,1385,374,220,2,220,25400,200,25300,9120,280,5.7,10,10,19.3,1520,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,16.1,10.6,70,101200,745,1385,374,176,23,164,19500,2300,18200,5370,270,7.2,10,10,19.3,1520,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,18.3,10.0,59,101200,643,1385,366,211,8,207,23700,700,23400,7740,260,6.7,8,8,19.3,1520,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,10.0,63,101300,484,1385,379,120,2,120,13700,100,13600,4570,280,7.2,10,10,19.3,1010,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,10.0,63,101300,277,1385,348,114,160,81,11800,12000,9400,1580,320,5.7,5,5,24.1,77777,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,16.7,10.0,65,101400,55,958,345,20,28,18,2200,1200,2100,370,290,5.7,5,5,24.1,77777,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,10.0,70,101500,0,0,327,0,0,0,0,0,0,0,290,6.2,1,1,16.1,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1986,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,15.0,10.0,72,101600,0,0,329,0,0,0,0,0,0,0,300,5.7,2,2,16.1,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1986,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,14.4,10.0,75,101700,0,0,329,0,0,0,0,0,0,0,300,6.2,3,3,16.1,77777,9,999999999,200,0.1180,0,88,999.000,999.0,99.0 +1986,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,13.9,8.3,69,101800,0,0,312,0,0,0,0,0,0,0,300,5.2,0,0,16.1,77777,9,999999999,179,0.1180,0,88,999.000,999.0,99.0 +1986,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,12.8,7.8,72,101900,0,0,306,0,0,0,0,0,0,0,300,5.2,0,0,16.1,77777,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1986,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,11.7,7.8,77,101900,0,0,302,0,0,0,0,0,0,0,310,4.1,0,0,16.1,77777,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1986,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,11.1,7.8,80,102000,0,0,299,0,0,0,0,0,0,0,300,4.1,0,0,16.1,77777,9,999999999,170,0.1180,0,88,999.000,999.0,99.0 +1986,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,10.6,7.8,83,102000,0,0,297,0,0,0,0,0,0,0,290,4.1,0,0,16.1,77777,9,999999999,170,0.1170,0,88,999.000,999.0,99.0 +1986,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,10.0,7.2,83,102000,0,0,294,0,0,0,0,0,0,0,290,3.6,0,0,16.1,77777,9,999999999,170,0.1170,0,88,999.000,999.0,99.0 +1986,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.9,6.7,86,102000,0,0,289,0,0,0,0,0,0,0,240,4.1,0,0,12.9,77777,9,999999999,160,0.1170,0,88,999.000,999.0,99.0 +1986,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,9.4,6.7,83,102100,0,0,291,0,0,0,0,0,0,0,260,5.2,0,0,12.9,77777,9,999999999,160,0.1170,0,88,999.000,999.0,99.0 +1986,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,7.8,6.1,89,102100,0,0,284,0,0,0,0,0,0,0,240,4.6,0,0,12.9,77777,9,999999999,160,0.1170,0,88,999.000,999.0,99.0 +1986,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.9,6.1,83,102100,0,0,288,0,0,0,0,0,0,0,230,5.7,0,0,12.9,77777,9,999999999,160,0.1170,0,88,999.000,999.0,99.0 +1986,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,8.9,6.1,83,102100,65,1051,288,26,60,21,2700,2100,2500,370,240,5.7,0,0,12.9,77777,9,999999999,160,0.1430,0,88,999.000,999.0,99.0 +1986,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,11.1,6.7,74,102100,289,1386,298,141,396,57,14300,30700,7900,1020,260,4.6,0,0,16.1,77777,9,999999999,160,0.1430,0,88,999.000,999.0,99.0 +1986,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,13.3,6.7,64,102100,492,1386,307,296,594,82,30600,55000,11000,1580,240,5.2,0,0,16.1,77777,9,999999999,160,0.1430,0,88,999.000,999.0,99.0 +1986,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,15.0,7.8,62,102000,648,1386,316,427,684,104,44600,66900,13200,2170,230,4.6,1,0,16.1,77777,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1986,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,17.8,7.8,52,101900,744,1386,328,513,738,112,54000,73800,14200,2510,220,7.2,0,0,19.3,77777,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1986,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,19.4,7.8,47,101800,775,1386,336,543,755,115,57200,75900,14600,2650,220,8.2,0,0,19.3,77777,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1986,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,20.6,7.8,44,101700,739,1386,341,507,734,111,53400,73300,14100,2480,220,7.7,0,0,19.3,77777,9,999999999,179,0.1430,0,88,999.000,999.0,99.0 +1986,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,21.1,6.7,39,101600,637,1386,342,421,690,100,44000,67400,12900,2080,240,8.8,0,0,19.3,77777,9,999999999,160,0.1430,0,88,999.000,999.0,99.0 +1986,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,21.1,6.1,38,101600,477,1386,342,287,589,80,29500,54100,10800,1540,230,8.2,0,0,19.3,77777,9,999999999,160,0.1430,0,88,999.000,999.0,99.0 +1986,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,21.1,5.6,36,101500,271,1386,352,113,270,58,11700,20100,7700,1040,230,7.2,2,2,24.1,77777,9,999999999,150,0.1430,0,88,999.000,999.0,99.0 +1986,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,17.2,7.8,54,101500,51,936,337,18,23,16,1900,1000,1900,330,190,6.7,2,2,24.1,77777,9,999999999,170,0.1430,0,88,999.000,999.0,99.0 +1986,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,16.1,8.9,63,101500,0,0,322,0,0,0,0,0,0,0,200,7.7,0,0,16.1,77777,9,999999999,189,0.1170,0,88,999.000,999.0,99.0 +1986,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,15.6,8.3,62,101500,0,0,319,0,0,0,0,0,0,0,220,8.2,0,0,16.1,77777,9,999999999,179,0.1170,0,88,999.000,999.0,99.0 +1986,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,15.0,8.3,65,101400,0,0,317,0,0,0,0,0,0,0,230,8.2,0,0,16.1,77777,9,999999999,179,0.1170,0,88,999.000,999.0,99.0 +1986,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,14.4,10.0,75,101400,0,0,316,0,0,0,0,0,0,0,230,9.3,0,0,16.1,77777,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1986,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,13.9,10.6,81,101400,0,0,314,0,0,0,0,0,0,0,230,7.7,0,0,16.1,77777,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1986,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,13.9,10.6,81,101400,0,0,314,0,0,0,0,0,0,0,230,6.7,0,0,16.1,77777,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1986,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,13.9,10.0,78,101300,0,0,314,0,0,0,0,0,0,0,220,7.7,0,0,16.1,77777,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1986,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,13.3,10.0,80,101300,0,0,311,0,0,0,0,0,0,0,240,6.2,0,0,12.9,77777,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,13.9,10.0,78,101200,0,0,314,0,0,0,0,0,0,0,240,7.2,0,0,11.3,77777,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,13.9,10.0,78,101200,0,0,335,0,0,0,0,0,0,0,240,7.7,6,6,11.3,2440,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1986,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,13.9,9.4,75,101200,0,0,351,0,0,0,0,0,0,0,240,7.7,10,9,11.3,2130,9,999999999,189,0.1160,0,88,999.000,999.0,99.0 +1986,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,13.3,9.4,78,101300,0,0,321,0,0,0,0,0,0,0,240,6.7,2,2,11.3,77777,9,999999999,189,0.1160,0,88,999.000,999.0,99.0 +1986,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.8,8.9,77,101300,0,0,318,0,0,0,0,0,0,0,250,6.7,4,2,11.3,77777,9,999999999,179,0.1160,0,88,999.000,999.0,99.0 +1986,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,13.3,10.0,80,101400,61,1005,321,26,73,19,2600,2500,2400,330,250,7.7,2,2,11.3,77777,9,999999999,200,0.0840,0,88,999.000,999.0,99.0 +1986,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,14.4,8.9,70,101500,284,1387,315,135,440,43,13900,34400,6800,800,270,7.2,0,0,16.1,77777,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1986,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,16.1,7.8,58,101500,487,1387,321,308,696,61,31800,64500,9100,1240,280,7.7,0,0,19.3,77777,9,999999999,170,0.0840,0,88,999.000,999.0,99.0 +1986,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,17.2,7.2,52,101600,642,1387,339,406,701,78,42300,68100,10600,1650,300,8.2,3,3,19.3,77777,9,999999999,170,0.0840,0,88,999.000,999.0,99.0 +1986,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,17.2,5.6,46,101700,738,1387,346,470,513,195,49200,51800,21600,4290,310,8.2,6,6,19.3,1070,9,999999999,150,0.0840,0,88,999.000,999.0,99.0 +1986,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,18.3,5.0,42,101700,769,1387,345,471,531,173,50100,54000,20000,3830,290,6.7,4,4,24.1,77777,9,999999999,150,0.0840,0,88,999.000,999.0,99.0 +1986,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,17.8,3.3,38,101700,732,1387,337,490,683,125,51100,67800,15200,2730,340,8.8,3,3,24.1,77777,9,999999999,129,0.0840,0,88,999.000,999.0,99.0 +1986,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,17.2,1.7,35,101800,631,1387,333,416,679,102,43200,66100,13000,2100,340,9.8,3,3,24.1,77777,9,999999999,120,0.0840,0,88,999.000,999.0,99.0 +1986,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,16.7,-0.6,31,102000,471,1387,320,289,642,67,30100,59200,9900,1320,320,9.3,1,1,24.1,77777,9,999999999,110,0.0840,0,88,999.000,999.0,99.0 +1986,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.6,0.0,35,102100,265,1387,316,137,462,46,13900,34900,7200,840,320,7.7,1,1,24.1,77777,9,999999999,110,0.0840,0,88,999.000,999.0,99.0 +1986,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,12.2,0.6,45,102200,48,890,296,28,105,17,2400,3900,2200,300,10,6.7,0,0,24.1,77777,9,999999999,110,0.0840,0,88,999.000,999.0,99.0 +1986,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,9.4,-1.1,48,102500,0,0,283,0,0,0,0,0,0,0,10,7.7,0,0,24.1,77777,9,999999999,100,0.1160,0,88,999.000,999.0,99.0 +1986,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,8.3,-1.7,50,102600,0,0,278,0,0,0,0,0,0,0,360,8.8,0,0,24.1,77777,9,999999999,100,0.1160,0,88,999.000,999.0,99.0 +1986,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,6.7,-3.3,49,102800,0,0,270,0,0,0,0,0,0,0,350,7.7,0,0,24.1,77777,9,999999999,89,0.1160,0,88,999.000,999.0,99.0 +1986,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,5.6,-5.0,47,102900,0,0,265,0,0,0,0,0,0,0,340,6.2,0,0,24.1,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1986,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,5.0,-5.6,47,103000,0,0,262,0,0,0,0,0,0,0,350,5.7,0,0,24.1,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1986,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,4.4,-6.1,47,103100,0,0,259,0,0,0,0,0,0,0,340,6.7,0,0,24.1,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1986,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,3.9,-5.6,51,103200,0,0,258,0,0,0,0,0,0,0,360,6.2,0,0,24.1,77777,9,999999999,80,0.1160,0,88,999.000,999.0,99.0 +1986,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,2.8,-5.6,55,103300,0,0,254,0,0,0,0,0,0,0,340,6.2,0,0,24.1,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1986,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,2.8,-5.6,55,103400,0,0,254,0,0,0,0,0,0,0,350,5.2,0,0,24.1,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1986,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.2,-5.6,57,103500,0,0,251,0,0,0,0,0,0,0,350,5.7,0,0,24.1,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1986,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,1.7,-5.6,59,103500,0,0,250,0,0,0,0,0,0,0,350,5.2,0,0,24.1,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1986,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,1.7,-6.1,57,103700,0,0,249,0,0,0,0,0,0,0,330,5.2,0,0,24.1,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1986,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,1.1,-6.1,59,103800,0,0,247,0,0,0,0,0,0,0,340,5.7,0,0,24.1,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1986,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,1.7,-6.1,57,103900,58,983,249,30,121,18,2700,4700,2400,310,350,5.2,0,0,24.1,77777,9,999999999,80,0.0840,0,88,999.000,999.0,99.0 +1986,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,3.3,-5.6,53,104000,278,1388,255,150,523,43,15400,40500,7300,800,10,5.2,0,0,24.1,77777,9,999999999,80,0.0840,0,88,999.000,999.0,99.0 +1986,10,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,104100,481,1388,262,312,716,60,32100,66200,9100,1220,350,5.7,0,0,24.1,77777,9,999999999,80,0.0840,0,88,999.000,999.0,99.0 +1986,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,6.1,-3.9,49,104100,636,1388,268,443,797,74,46400,77500,10700,1590,60,4.6,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1986,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,6.7,-3.9,47,104100,732,1388,282,474,656,125,49600,65100,15100,2730,60,5.7,3,3,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1986,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,7.2,-2.8,49,104100,763,1388,278,513,755,93,53600,74800,12300,2080,60,6.2,1,1,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1986,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.7,-2.8,51,104000,726,1388,271,510,810,81,53700,80200,11600,1840,60,5.2,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1986,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,6.7,-2.8,51,104100,625,1388,271,435,792,73,45300,76800,10600,1560,90,4.6,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1986,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.7,-2.8,51,104000,465,1388,271,297,696,59,30400,63900,8900,1190,120,4.6,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1986,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.1,-2.8,53,104000,259,1388,269,138,500,41,14000,37600,6900,760,100,3.6,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1986,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,5.0,-3.3,55,104100,44,867,264,25,97,16,2300,3500,2100,280,110,4.1,0,0,24.1,77777,9,999999999,89,0.0840,0,88,999.000,999.0,99.0 +1986,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.0,-1.7,62,104000,0,0,265,0,0,0,0,0,0,0,130,4.6,0,0,24.1,77777,9,999999999,100,0.1150,0,88,999.000,999.0,99.0 +1986,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.0,-2.2,60,104100,0,0,265,0,0,0,0,0,0,0,150,6.2,0,0,24.1,77777,9,999999999,100,0.1150,0,88,999.000,999.0,99.0 +1986,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,5.0,-0.6,68,104100,0,0,267,0,0,0,0,0,0,0,160,5.2,0,0,24.1,77777,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1986,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,4.4,-0.6,70,104100,0,0,264,0,0,0,0,0,0,0,180,6.2,0,0,24.1,77777,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1986,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,5.0,0.0,73,104100,0,0,267,0,0,0,0,0,0,0,170,5.8,0,0,24.1,77777,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1986,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,5.7,0.7,76,104100,0,0,270,0,0,0,0,0,0,0,200,5.5,0,0,24.1,77777,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1986,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,6.3,1.3,76,104100,0,0,273,0,0,0,0,0,0,0,200,5.1,0,0,16.1,77777,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1978,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,7.0,2.0,64,101700,0,0,277,0,0,0,0,0,0,0,290,4.7,0,0,24.1,77777,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1978,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,7.6,2.6,64,101700,0,0,280,0,0,0,0,0,0,0,330,4.3,0,0,24.1,77777,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1978,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,8.3,3.3,66,101800,0,0,283,0,0,0,0,0,0,0,360,4.0,0,0,24.1,77777,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1978,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.9,3.9,71,101800,0,0,286,0,0,0,0,0,0,0,360,3.6,0,0,24.1,77777,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1978,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,3.3,71,101900,0,0,283,0,0,0,0,0,0,0,10,2.1,0,0,24.1,77777,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1978,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,7.2,3.3,77,102000,0,0,295,0,0,0,0,0,0,0,350,2.1,6,5,24.1,3660,9,999999999,129,0.1130,0,88,999.000,999.0,99.0 +1978,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,3.9,74,102000,54,960,312,9,3,9,1000,200,1000,240,350,5.7,8,8,24.1,3050,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1978,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,8.3,3.9,74,102100,273,1388,284,124,316,61,12900,23600,8300,1100,360,4.6,1,0,16.1,77777,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1978,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,10.0,4.4,69,102200,475,1388,291,275,535,89,28200,48800,11400,1670,30,6.7,0,0,19.3,77777,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1978,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,10.6,4.4,66,102200,630,1388,318,229,75,195,25100,7400,21800,5620,40,7.7,7,7,19.3,730,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1978,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,10.6,2.8,59,102300,726,1388,309,399,335,222,42500,35000,24200,5160,50,6.2,5,5,24.1,77777,9,999999999,129,0.1750,0,88,999.000,999.0,99.0 +1978,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,10.6,1.7,54,102300,757,1388,297,503,589,178,53200,59800,20500,3920,30,6.7,1,1,24.1,77777,9,999999999,120,0.1750,0,88,999.000,999.0,99.0 +1978,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,10.6,1.7,54,102200,721,1388,297,472,641,136,48900,63200,16000,2890,70,6.7,1,1,24.1,77777,9,999999999,120,0.1750,0,88,999.000,999.0,99.0 +1978,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,10.0,1.7,57,102200,619,1388,289,386,610,110,39900,59000,13500,2220,80,6.7,0,0,24.1,77777,9,999999999,120,0.1750,0,88,999.000,999.0,99.0 +1978,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,9.4,1.1,56,102300,460,1388,286,263,522,87,26800,47200,11200,1620,90,5.7,0,0,24.1,77777,9,999999999,120,0.1750,0,88,999.000,999.0,99.0 +1978,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,8.9,1.1,59,102300,254,1388,283,114,301,57,11700,21700,7800,1030,110,4.1,0,0,24.1,77777,9,999999999,120,0.1750,0,88,999.000,999.0,99.0 +1978,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,1.1,65,102300,41,845,277,19,22,17,2000,900,2000,350,110,3.6,0,0,24.1,77777,9,999999999,120,0.1750,0,88,999.000,999.0,99.0 +1978,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,6.7,1.1,68,102300,0,0,275,0,0,0,0,0,0,0,110,3.1,0,0,24.1,77777,9,999999999,120,0.1130,0,88,999.000,999.0,99.0 +1978,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,6.7,1.1,68,102300,0,0,275,0,0,0,0,0,0,0,120,3.1,0,0,24.1,77777,9,999999999,120,0.1130,0,88,999.000,999.0,99.0 +1978,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.1,1.1,71,102300,0,0,272,0,0,0,0,0,0,0,160,3.1,0,0,24.1,77777,9,999999999,120,0.1130,0,88,999.000,999.0,99.0 +1978,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,5.6,1.7,76,102400,0,0,271,0,0,0,0,0,0,0,200,2.1,0,0,24.1,77777,9,999999999,120,0.1130,0,88,999.000,999.0,99.0 +1978,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,5.6,1.7,76,102400,0,0,271,0,0,0,0,0,0,0,200,3.1,0,0,24.1,77777,9,999999999,120,0.1130,0,88,999.000,999.0,99.0 +1978,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,5.6,1.1,73,102300,0,0,270,0,0,0,0,0,0,0,210,2.6,0,0,24.1,77777,9,999999999,120,0.1130,0,88,999.000,999.0,99.0 +1978,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,5.0,1.1,76,102300,0,0,268,0,0,0,0,0,0,0,240,3.1,0,0,24.1,77777,9,999999999,120,0.1130,0,88,999.000,999.0,99.0 +1978,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,5.0,1.1,76,102200,0,0,268,0,0,0,0,0,0,0,230,3.6,0,0,24.1,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1978,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,5.0,1.7,79,102100,0,0,269,0,0,0,0,0,0,0,240,4.6,0,0,24.1,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1978,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,5.0,1.7,79,102100,0,0,269,0,0,0,0,0,0,0,240,5.2,0,0,24.1,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1978,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,5.0,2.2,82,102000,0,0,269,0,0,0,0,0,0,0,240,5.2,0,0,24.1,77777,9,999999999,120,0.1120,0,88,999.000,999.0,99.0 +1978,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,5.6,2.8,83,102000,0,0,272,0,0,0,0,0,0,0,240,4.6,0,0,24.1,77777,9,999999999,129,0.1120,0,88,999.000,999.0,99.0 +1978,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,5.6,3.9,89,101900,0,0,273,0,0,0,0,0,0,0,230,5.7,0,0,24.1,77777,9,999999999,139,0.1120,0,88,999.000,999.0,99.0 +1978,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,5.6,3.9,89,101900,51,938,273,29,149,15,2500,6700,2100,270,240,4.6,0,0,16.1,77777,9,999999999,139,0.0590,0,88,999.000,999.0,99.0 +1978,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,7.2,2.2,71,101900,268,1389,278,147,569,35,14900,44800,6300,700,240,6.2,0,0,19.3,77777,9,999999999,129,0.0590,0,88,999.000,999.0,99.0 +1978,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,10.0,1.1,54,101800,470,1389,288,306,750,49,32000,69100,8500,1100,270,7.7,0,0,19.3,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1978,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,11.7,0.6,47,101800,624,1389,294,438,833,60,45800,80200,9600,1380,240,7.2,0,0,24.1,77777,9,999999999,110,0.0590,0,88,999.000,999.0,99.0 +1978,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,14.4,-2.8,31,101600,720,1389,302,528,881,67,55100,86200,10200,1570,270,6.7,0,0,24.1,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1978,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,16.1,-3.3,26,101500,751,1389,309,556,891,69,57900,87500,10400,1630,260,7.2,0,0,24.1,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1978,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,16.7,-3.9,24,101400,715,1389,311,524,879,66,54500,85900,10100,1550,240,7.7,0,0,24.1,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1978,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,17.8,-5.6,20,101400,613,1389,313,436,842,59,45400,80900,9500,1360,280,7.7,0,0,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1978,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,17.8,-5.0,21,101400,454,1389,314,299,754,48,31100,69000,8500,1070,270,6.2,0,0,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1978,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,17.8,-5.0,21,101400,248,1389,314,137,560,34,13800,42900,6100,670,250,5.2,0,0,24.1,77777,9,999999999,80,0.0590,0,88,999.000,999.0,99.0 +1978,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,16.1,-3.9,25,101400,38,799,308,27,125,14,2100,5200,1800,250,240,6.2,0,0,24.1,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1978,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,14.4,-3.3,29,101500,0,0,301,0,0,0,0,0,0,0,250,5.7,0,0,24.1,77777,9,999999999,89,0.1120,0,88,999.000,999.0,99.0 +1978,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,14.4,-4.4,27,101500,0,0,300,0,0,0,0,0,0,0,260,5.2,0,0,24.1,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1978,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,14.4,-4.4,27,101600,0,0,300,0,0,0,0,0,0,0,280,6.2,0,0,24.1,77777,9,999999999,80,0.1120,0,88,999.000,999.0,99.0 +1978,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,13.3,-3.9,30,101700,0,0,296,0,0,0,0,0,0,0,290,4.6,0,0,24.1,77777,9,999999999,89,0.1120,0,88,999.000,999.0,99.0 +1978,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,12.8,-3.3,33,101700,0,0,295,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,89,0.1120,0,88,999.000,999.0,99.0 +1978,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,12.2,-2.2,37,101800,0,0,294,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,100,0.1120,0,88,999.000,999.0,99.0 +1978,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,11.7,-0.6,43,101800,0,0,293,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,110,0.1120,0,88,999.000,999.0,99.0 +1978,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,10.6,0.0,48,101800,0,0,289,0,0,0,0,0,0,0,290,4.6,0,0,24.1,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1978,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,10.0,0.6,52,101900,0,0,287,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1978,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,9.4,1.1,56,101900,0,0,286,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1978,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,8.9,0.6,56,102000,0,0,283,0,0,0,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1978,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,6.7,0.6,65,102100,0,0,274,0,0,0,0,0,0,0,280,1.5,0,0,24.1,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1978,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.1,1.1,71,102200,0,0,272,0,0,0,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1978,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.2,1.1,65,102200,48,892,277,19,10,18,2000,500,2000,430,330,2.6,0,0,24.1,77777,9,999999999,120,0.2400,0,88,999.000,999.0,99.0 +1978,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,8.9,1.7,61,102400,262,1390,284,108,223,65,11400,16200,8300,1220,340,2.6,0,0,16.1,77777,9,999999999,120,0.2400,0,88,999.000,999.0,99.0 +1978,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,11.7,2.2,53,102400,464,1390,296,251,437,103,26300,40000,12900,1940,360,2.1,0,0,16.1,77777,9,999999999,129,0.2400,0,88,999.000,999.0,99.0 +1978,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,13.9,2.8,47,102500,618,1390,306,380,553,131,40400,54400,16100,2610,90,2.1,0,0,16.1,77777,9,999999999,129,0.2400,0,88,999.000,999.0,99.0 +1978,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,14.4,2.8,46,102500,714,1390,308,466,612,148,47900,59900,17000,3080,130,2.6,0,0,19.3,77777,9,999999999,129,0.2400,0,88,999.000,999.0,99.0 +1978,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,13.9,2.8,47,102500,745,1390,306,494,628,153,50800,61800,17600,3260,130,3.1,0,0,24.1,77777,9,999999999,129,0.2400,0,88,999.000,999.0,99.0 +1978,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,13.9,2.8,47,102400,709,1390,306,462,602,151,47300,58800,17300,3110,80,4.6,1,0,24.1,77777,9,999999999,129,0.2400,0,88,999.000,999.0,99.0 +1978,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,13.3,3.9,53,102400,607,1390,305,372,546,130,39400,53500,15900,2580,80,5.2,0,0,24.1,77777,9,999999999,139,0.2400,0,88,999.000,999.0,99.0 +1978,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,13.3,4.4,55,102400,448,1390,305,240,423,101,25100,38300,12600,1890,90,5.2,0,0,24.1,77777,9,999999999,139,0.2400,0,88,999.000,999.0,99.0 +1978,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,12.2,5.6,64,102400,243,1390,302,98,195,63,10300,13600,7900,1190,110,5.2,1,0,24.1,77777,9,999999999,150,0.2400,0,88,999.000,999.0,99.0 +1978,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,10.0,6.7,80,102400,36,776,294,16,6,15,1700,300,1700,360,90,4.6,1,0,24.1,77777,9,999999999,160,0.2400,0,88,999.000,999.0,99.0 +1978,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,9.4,7.2,86,102400,0,0,292,0,0,0,0,0,0,0,100,3.6,0,0,24.1,77777,9,999999999,170,0.1110,0,88,999.000,999.0,99.0 +1978,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,9.4,7.2,86,102500,0,0,292,0,0,0,0,0,0,0,140,2.1,0,0,20.9,77777,9,999999999,170,0.1110,0,88,999.000,999.0,99.0 +1978,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,8.9,6.7,86,102500,0,0,289,0,0,0,0,0,0,0,120,2.1,0,0,20.9,77777,9,999999999,160,0.1110,0,88,999.000,999.0,99.0 +1978,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,7.8,6.1,89,102500,0,0,284,0,0,0,0,0,0,0,170,2.1,0,0,20.9,77777,9,999999999,160,0.1110,0,88,999.000,999.0,99.0 +1978,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,8.3,6.7,89,102500,0,0,287,0,0,0,0,0,0,0,150,3.1,0,0,19.3,77777,9,999999999,160,0.1110,0,88,999.000,999.0,99.0 +1978,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,7.2,6.1,93,102500,0,0,282,0,0,0,0,0,0,0,190,1.5,0,0,17.7,77777,9,999999999,160,0.1110,0,88,999.000,999.0,99.0 +1978,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,7.2,5.0,86,102400,0,0,280,0,0,0,0,0,0,0,200,2.1,0,0,16.1,77777,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1978,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,6.7,3.9,83,102400,0,0,277,0,0,0,0,0,0,0,160,2.6,0,0,16.1,77777,9,999999999,139,0.1100,0,88,999.000,999.0,99.0 +1978,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,6.7,3.9,83,102400,0,0,277,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,139,0.1100,0,88,999.000,999.0,99.0 +1978,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,6.1,4.4,89,102300,0,0,276,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,139,0.1100,0,88,999.000,999.0,99.0 +1978,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,6.1,5.0,93,102200,0,0,276,0,0,0,0,0,0,0,10,1.0,0,0,16.1,77777,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1978,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,5.6,4.4,93,102200,0,0,274,0,0,0,0,0,0,0,360,2.1,0,0,12.9,77777,9,999999999,139,0.1100,0,88,999.000,999.0,99.0 +1978,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,5.6,4.4,93,102200,0,0,274,0,0,0,0,0,0,0,340,2.1,0,0,8.0,77777,9,999999999,139,0.1100,0,88,999.000,999.0,99.0 +1978,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.6,5.0,96,102200,44,869,293,23,31,20,2400,1200,2300,410,330,2.1,9,6,3.2,120,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1978,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,6.1,5.0,93,102200,257,1391,319,93,6,92,10100,300,10000,2690,360,2.6,10,10,2.0,150,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1978,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,6.1,6.1,100,102200,458,1391,320,105,0,104,11900,0,11900,4010,10,2.1,10,10,0.6,90,9,999999999,160,0.0450,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,102100,613,1391,326,156,9,152,17800,700,17500,6110,360,2.6,10,10,0.4,90,9,999999999,170,0.0450,0,88,999.000,999.0,99.0 +1978,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,8.9,7.8,93,102000,708,1391,335,213,7,209,24100,600,23800,8280,30,2.6,10,10,0.8,90,9,999999999,170,0.0450,0,88,999.000,999.0,99.0 +1978,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,10.0,9.4,96,101900,739,1391,342,303,6,300,33600,600,33300,10490,320,1.0,10,10,0.8,60,9,999999999,189,0.0450,0,88,999.000,999.0,99.0 +1978,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,10.0,8.9,93,101900,703,1391,341,215,5,213,24400,400,24200,8340,90,2.1,10,10,0.8,60,9,999999999,189,0.0450,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,101800,601,1391,338,195,4,193,21800,300,21700,7080,80,2.1,10,10,0.4,60,9,999999999,179,0.0450,0,88,999.000,999.0,99.0 +1978,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,9.4,9.4,100,101700,443,1391,339,135,1,134,14900,100,14900,4670,60,2.1,10,10,0.4,60,9,999999999,189,0.0450,0,88,999.000,999.0,99.0 +1978,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,9.4,9.4,100,101700,237,1391,339,79,1,78,8500,0,8500,2360,90,1.5,10,10,0.4,60,9,999999999,189,0.0450,0,88,999.000,999.0,99.0 +1978,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,9.4,8.3,93,101600,33,753,338,17,0,17,1900,0,1900,550,120,2.1,10,10,0.4,60,9,999999999,179,0.0450,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,101600,0,0,338,0,0,0,0,0,0,0,40,2.1,10,10,0.4,60,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,101600,0,0,338,0,0,0,0,0,0,0,20,1.5,10,10,0.4,60,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1978,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,9.4,8.3,93,101600,0,0,338,0,0,0,0,0,0,0,0,0.0,10,10,0.4,60,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1978,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,8.9,8.9,100,101600,0,0,336,0,0,0,0,0,0,0,100,1.0,10,10,0.6,60,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1978,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,8.9,8.9,100,101500,0,0,336,0,0,0,0,0,0,0,30,1.5,10,10,0.2,60,9,999999999,189,0.1100,0,88,999.000,999.0,99.0 +1978,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,8.9,8.3,96,101500,0,0,335,0,0,0,0,0,0,0,320,1.5,10,10,0.2,60,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1978,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,8.9,8.3,96,101500,0,0,335,0,0,0,0,0,0,0,330,2.6,10,10,0.2,60,9,999999999,179,0.1100,0,88,999.000,999.0,99.0 +1978,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,7.8,7.2,96,101500,0,0,329,0,0,0,0,0,0,0,40,2.6,10,10,0.2,60,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,101500,0,0,326,0,0,0,0,0,0,0,360,2.1,10,10,0.1,30,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,7.8,7.8,100,101500,0,0,330,0,0,0,0,0,0,0,330,3.6,10,10,0.1,30,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,7.8,7.8,100,101500,0,0,330,0,0,0,0,0,0,0,10,3.6,10,10,0.1,30,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,101600,0,0,326,0,0,0,0,0,0,0,10,2.1,10,10,0.4,90,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,101600,0,0,326,0,0,0,0,0,0,0,10,1.0,10,10,0.4,60,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,101700,41,846,326,15,0,15,1700,0,1700,520,340,3.1,10,10,0.1,30,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,101800,251,1391,326,64,0,64,7100,0,7100,2160,100,1.0,10,10,0.1,30,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,101800,453,1391,326,136,1,136,15200,100,15200,4770,40,1.5,10,10,0.1,30,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,101800,607,1391,326,193,0,193,21600,0,21600,7120,10,3.1,10,10,0.6,90,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,101800,702,1391,326,248,1,248,27800,100,27800,9130,60,3.1,10,10,2.4,120,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,8.3,6.7,89,101800,733,1391,331,246,1,245,27700,100,27600,9350,30,4.1,10,10,6.4,180,9,999999999,160,0.0880,0,88,999.000,999.0,99.0 +1978,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,9.4,7.2,86,101700,697,1391,336,228,1,227,25600,100,25600,8620,50,5.2,10,10,11.3,270,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,11.1,7.8,80,101700,596,1391,309,383,571,135,40300,55700,16400,2680,70,3.6,7,2,12.9,77777,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,11.1,7.8,80,101800,437,1391,305,251,515,86,25500,45800,11100,1580,50,4.6,8,1,14.5,77777,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,10.6,7.2,80,101800,232,1391,309,80,121,59,8400,8200,7000,1110,60,3.6,10,3,14.5,77777,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,9.4,7.2,86,101800,30,730,312,17,7,16,1800,400,1800,380,60,3.6,10,6,11.3,7620,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,9.4,7.2,86,101800,0,0,315,0,0,0,0,0,0,0,40,3.1,10,7,11.3,270,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,8.9,7.2,89,101800,0,0,334,0,0,0,0,0,0,0,80,3.6,10,10,11.3,240,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,9.4,7.2,86,101800,0,0,336,0,0,0,0,0,0,0,20,1.5,10,10,11.3,240,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,9.4,7.2,86,101800,0,0,336,0,0,0,0,0,0,0,40,2.6,10,10,11.3,210,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,8.9,7.2,89,101800,0,0,334,0,0,0,0,0,0,0,30,2.1,10,10,11.3,210,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,8.9,7.2,89,101800,0,0,334,0,0,0,0,0,0,0,10,1.0,10,10,11.3,210,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,8.9,7.2,89,101800,0,0,334,0,0,0,0,0,0,0,330,2.1,10,10,11.3,210,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,8.9,7.2,89,101800,0,0,334,0,0,0,0,0,0,0,350,2.6,10,10,11.3,180,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,8.9,7.2,89,101800,0,0,334,0,0,0,0,0,0,0,360,3.1,10,10,11.3,210,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,8.9,7.2,89,101800,0,0,334,0,0,0,0,0,0,0,20,2.6,10,10,11.3,210,9,999999999,170,0.1090,0,88,999.000,999.0,99.0 +1978,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,8.9,6.7,86,101800,0,0,334,0,0,0,0,0,0,0,330,2.1,10,10,11.3,180,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1978,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,8.3,6.7,89,101800,0,0,331,0,0,0,0,0,0,0,250,0.5,10,10,11.3,180,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1978,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,8.3,6.7,89,101800,0,0,331,0,0,0,0,0,0,0,290,3.6,10,10,9.7,210,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1978,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,7.8,6.1,89,101800,38,824,312,10,2,10,1200,0,1200,370,230,1.0,10,8,9.7,210,9,999999999,160,0.1770,0,88,999.000,999.0,99.0 +1978,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,7.8,6.7,93,101800,246,1392,304,77,118,56,8200,8300,6700,1030,200,2.1,6,6,4.0,180,9,999999999,160,0.1770,0,88,999.000,999.0,99.0 +1978,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,8.3,6.7,89,101800,447,1392,287,243,483,85,24800,43300,10800,1580,170,1.5,0,0,4.8,77777,9,999999999,160,0.1770,0,88,999.000,999.0,99.0 +1978,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,9.4,7.2,86,101800,601,1392,292,377,617,108,39000,59300,13300,2150,180,3.6,0,0,6.4,77777,9,999999999,170,0.1770,0,88,999.000,999.0,99.0 +1978,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,11.7,7.2,74,101700,697,1392,301,460,672,121,48000,66200,14700,2560,170,4.1,0,0,8.0,77777,9,999999999,170,0.1770,0,88,999.000,999.0,99.0 +1978,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.3,7.8,69,101500,727,1392,309,488,687,125,50900,68100,15200,2710,140,3.1,0,0,11.3,77777,9,999999999,170,0.1770,0,88,999.000,999.0,99.0 +1978,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,13.3,8.9,75,101500,691,1392,310,454,664,120,47200,65300,14600,2530,90,4.1,0,0,11.3,77777,9,999999999,189,0.1770,0,88,999.000,999.0,99.0 +1978,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,12.8,10.0,83,101400,590,1392,309,367,606,106,37800,58000,13100,2100,90,3.6,0,0,12.9,77777,9,999999999,200,0.1770,0,88,999.000,999.0,99.0 +1978,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.0,10.0,72,101400,432,1392,318,239,492,84,24400,43600,10800,1550,70,1.0,0,0,12.9,77777,9,999999999,200,0.1770,0,88,999.000,999.0,99.0 +1978,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,17.2,9.4,60,101300,227,1392,338,86,158,59,9000,10600,7200,1110,220,3.6,6,2,14.5,77777,9,999999999,189,0.1770,0,88,999.000,999.0,99.0 +1978,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.1,9.4,65,101300,28,708,323,15,10,14,1600,500,1600,340,200,4.1,3,0,14.5,77777,9,999999999,189,0.1770,0,88,999.000,999.0,99.0 +1978,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,14.4,9.4,72,101400,0,0,315,0,0,0,0,0,0,0,190,3.1,3,0,12.9,77777,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1978,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,15.6,10.0,70,101300,0,0,321,0,0,0,0,0,0,0,210,4.1,4,0,9.7,77777,9,999999999,200,0.1090,0,88,999.000,999.0,99.0 +1978,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,14.4,10.0,75,101300,0,0,316,0,0,0,0,0,0,0,240,5.2,0,0,9.7,77777,9,999999999,200,0.1090,0,88,999.000,999.0,99.0 +1978,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,13.9,9.4,75,101300,0,0,313,0,0,0,0,0,0,0,220,3.6,0,0,9.7,77777,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1978,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,13.3,9.4,78,101300,0,0,310,0,0,0,0,0,0,0,240,4.1,0,0,9.7,77777,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1978,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,13.3,9.4,78,101300,0,0,310,0,0,0,0,0,0,0,230,4.6,0,0,9.7,77777,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1978,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,13.3,9.4,78,101200,0,0,310,0,0,0,0,0,0,0,230,4.1,0,0,11.3,77777,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1978,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,12.8,8.9,77,101200,0,0,308,0,0,0,0,0,0,0,240,4.6,0,0,11.3,77777,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1978,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,12.8,8.9,77,101200,0,0,308,0,0,0,0,0,0,0,240,5.2,0,0,11.3,77777,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1978,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,12.8,8.9,77,101200,0,0,308,0,0,0,0,0,0,0,240,4.6,2,0,11.3,77777,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1978,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,12.8,8.3,75,101200,0,0,307,0,0,0,0,0,0,0,250,5.7,2,0,11.3,77777,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1978,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,12.2,8.3,77,101200,0,0,304,0,0,0,0,0,0,0,240,4.6,2,0,11.3,77777,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1978,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,11.1,7.8,80,101300,0,0,305,0,0,0,0,0,0,0,230,4.1,6,1,9.7,77777,9,999999999,170,0.1080,0,88,999.000,999.0,99.0 +1978,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,11.1,7.8,80,101300,35,778,305,20,65,14,1800,2200,1700,240,270,2.1,6,1,8.0,77777,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1978,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,12.2,7.8,75,101400,240,1393,317,109,241,66,11000,16800,8100,1220,300,3.6,10,3,6.4,77777,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1978,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,13.3,7.2,67,101400,441,1393,318,258,458,111,26700,41200,13600,2100,320,3.6,10,2,8.0,77777,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1978,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,14.4,7.2,62,101500,595,1393,331,385,574,137,40500,55900,16500,2720,360,3.1,10,5,8.0,77777,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1978,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,15.0,8.3,65,101400,691,1393,335,340,200,239,36600,20400,26500,5940,20,4.1,10,5,9.7,77777,9,999999999,179,0.0690,0,88,999.000,999.0,99.0 +1978,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,13.9,8.9,72,101500,722,1393,360,215,5,213,24500,400,24300,8470,60,5.2,10,10,11.3,1070,9,999999999,189,0.0690,0,88,999.000,999.0,99.0 +1978,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,13.3,7.8,69,101400,685,1393,356,236,11,230,26400,1000,25900,8580,70,5.2,10,10,16.1,910,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1978,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,13.3,7.2,67,101400,585,1393,355,144,10,139,16400,700,16100,5590,60,4.6,10,10,16.1,790,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1978,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,12.2,7.2,72,101400,426,1393,350,128,6,127,14300,400,14200,4410,50,5.7,10,10,16.1,820,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1978,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,11.7,7.2,74,101400,222,1393,348,42,0,42,4800,0,4800,1520,60,4.6,10,10,16.1,790,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1978,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,7.2,77,101500,26,662,345,14,0,14,0,0,0,0,80,4.1,10,10,16.1,790,9,999999999,170,0.0690,0,88,999.000,999.0,99.0 +1978,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,72,101600,0,0,343,0,0,0,0,0,0,0,60,4.1,10,10,16.1,820,9,999999999,160,0.1080,0,88,999.000,999.0,99.0 +1978,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,74,101600,0,0,344,0,0,0,0,0,0,0,60,4.6,10,10,12.9,880,9,999999999,160,0.1080,0,88,999.000,999.0,99.0 +1978,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,6.7,80,101600,0,0,339,0,0,0,0,0,0,0,60,4.1,10,10,12.9,790,9,999999999,160,0.1080,0,88,999.000,999.0,99.0 +1978,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.7,83,101700,0,0,336,0,0,0,0,0,0,0,30,3.1,10,10,12.9,820,9,999999999,160,0.1080,0,88,999.000,999.0,99.0 +1978,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.9,7.2,89,101600,0,0,334,0,0,0,0,0,0,0,50,4.6,10,10,16.1,820,9,999999999,170,0.1080,0,88,999.000,999.0,99.0 +1978,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.9,7.2,89,101600,0,0,334,0,0,0,0,0,0,0,50,6.2,10,10,16.1,820,9,999999999,170,0.1080,0,88,999.000,999.0,99.0 +1978,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,8.9,7.2,89,101600,0,0,334,0,0,0,0,0,0,0,40,4.1,10,10,16.1,310,9,999999999,170,0.1080,0,88,999.000,999.0,99.0 +1978,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,8.9,7.2,89,101600,0,0,334,0,0,0,0,0,0,0,50,5.7,10,10,16.1,370,9,999999999,170,0.1070,0,88,999.000,999.0,99.0 +1978,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,8.3,6.7,89,101600,0,0,331,0,0,0,0,0,0,0,40,5.7,10,10,16.1,310,9,999999999,160,0.1070,0,88,999.000,999.0,99.0 +1978,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,8.3,6.7,89,101700,0,0,331,0,0,0,0,0,0,0,40,6.2,10,10,19.3,400,9,999999999,160,0.1070,0,88,999.000,999.0,99.0 +1978,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,8.3,6.1,86,101700,0,0,330,0,0,0,0,0,0,0,10,4.6,10,10,19.3,310,9,999999999,160,0.1070,0,88,999.000,999.0,99.0 +1978,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,7.2,6.1,93,101700,0,0,325,0,0,0,0,0,0,0,360,4.6,10,10,6.4,150,9,999999999,160,0.1070,0,88,999.000,999.0,99.0 +1978,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,6.7,5.6,93,101800,0,0,322,0,0,0,0,0,0,0,10,4.1,10,10,6.4,180,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1978,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,6.7,5.6,93,101800,33,755,322,10,1,10,1200,0,1200,360,10,4.6,10,10,6.4,150,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1978,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,6.7,6.1,96,101800,235,1393,323,41,2,41,4700,0,4700,1520,10,4.6,10,10,6.4,210,9,999999999,160,0.0450,0,88,999.000,999.0,99.0 +1978,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,7.2,6.1,93,101900,436,1393,325,87,1,87,10000,100,10000,3430,360,5.7,10,10,6.4,340,9,999999999,160,0.0450,0,88,999.000,999.0,99.0 +1978,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,7.2,5.6,89,101900,589,1393,324,213,1,213,23600,100,23600,7360,10,4.6,10,10,8.0,490,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1978,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,7.2,5.6,89,101900,685,1393,324,228,1,228,25700,100,25600,8530,20,4.6,10,10,11.3,490,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1978,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,7.2,6.1,93,101900,716,1393,325,253,0,253,28300,0,28300,9350,10,4.1,10,10,11.3,490,9,999999999,160,0.0450,0,88,999.000,999.0,99.0 +1978,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,7.8,6.1,89,101800,680,1393,328,248,2,247,27600,200,27500,8880,30,4.1,10,10,12.9,430,9,999999999,160,0.0450,0,88,999.000,999.0,99.0 +1978,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,7.8,6.7,93,101800,579,1393,328,191,1,190,21200,100,21200,6830,50,5.7,10,10,16.1,430,9,999999999,160,0.0450,0,88,999.000,999.0,99.0 +1978,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,8.3,5.6,83,101700,421,1393,329,136,0,136,15000,0,15000,4550,40,6.2,10,10,16.1,520,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1978,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,8.3,5.6,83,101800,217,1393,329,63,0,63,6900,0,6900,2000,40,4.6,10,10,16.1,610,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1978,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,8.3,5.0,80,101800,24,639,329,13,0,13,0,0,0,0,20,2.6,10,10,16.1,610,9,999999999,150,0.0450,0,88,999.000,999.0,99.0 +1978,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,8.3,5.6,83,101700,0,0,329,0,0,0,0,0,0,0,20,3.6,10,10,16.1,340,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1978,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,7.8,5.0,83,101800,0,0,317,0,0,0,0,0,0,0,10,3.1,9,9,19.3,370,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1978,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.8,5.0,83,101700,0,0,326,0,0,0,0,0,0,0,360,4.1,10,10,19.3,490,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1978,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,7.8,5.0,83,101700,0,0,326,0,0,0,0,0,0,0,360,4.1,10,10,19.3,520,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1978,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,7.2,5.0,86,101700,0,0,324,0,0,0,0,0,0,0,360,2.6,10,10,19.3,490,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1978,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,7.8,5.0,83,101600,0,0,326,0,0,0,0,0,0,0,340,3.6,10,10,19.3,490,9,999999999,150,0.1070,0,88,999.000,999.0,99.0 +1978,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,4.4,83,101500,0,0,314,0,0,0,0,0,0,0,10,2.1,10,9,19.3,520,9,999999999,139,0.1070,0,88,999.000,999.0,99.0 +1978,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,4.4,83,101500,0,0,314,0,0,0,0,0,0,0,320,2.1,10,9,19.3,550,9,999999999,139,0.1060,0,88,999.000,999.0,99.0 +1978,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,4.4,83,101500,0,0,314,0,0,0,0,0,0,0,320,2.1,10,9,19.3,490,9,999999999,139,0.1060,0,88,999.000,999.0,99.0 +1978,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,6.7,3.3,80,101500,0,0,282,0,0,0,0,0,0,0,290,2.6,1,1,19.3,77777,9,999999999,129,0.1060,0,88,999.000,999.0,99.0 +1978,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,5.6,3.3,86,101500,0,0,295,0,0,0,0,0,0,0,240,4.1,7,7,19.3,430,9,999999999,129,0.1060,0,88,999.000,999.0,99.0 +1978,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,3.3,83,101500,0,0,284,0,0,0,0,0,0,0,260,3.1,3,2,19.3,77777,9,999999999,129,0.1060,0,88,999.000,999.0,99.0 +1978,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,3.3,86,101500,0,0,278,0,0,0,0,0,0,0,230,3.6,6,1,24.1,77777,9,999999999,129,0.1060,0,88,999.000,999.0,99.0 +1978,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,5.6,3.3,86,101500,30,732,278,13,18,11,1300,700,1300,230,230,3.6,6,1,16.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1978,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,6.1,4.4,89,101500,229,1394,276,104,318,51,10800,21700,7200,920,240,5.2,3,0,11.3,77777,9,999999999,139,0.1280,0,88,999.000,999.0,99.0 +1978,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,7.8,4.4,80,101500,430,1394,282,251,491,98,26300,43900,12700,1830,240,6.2,8,0,11.3,77777,9,999999999,139,0.1280,0,88,999.000,999.0,99.0 +1978,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,9.4,3.9,69,101400,584,1394,288,380,643,108,39200,61300,13400,2120,260,5.7,5,0,12.9,77777,9,999999999,139,0.1280,0,88,999.000,999.0,99.0 +1978,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,12.2,3.3,55,101400,679,1394,299,469,675,136,48200,65700,16100,2780,270,5.7,7,0,12.9,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1978,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,13.9,2.8,47,101300,710,1394,306,500,685,147,51400,67000,17100,3040,260,5.2,7,0,16.1,77777,9,999999999,129,0.1280,0,88,999.000,999.0,99.0 +1978,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,15.6,2.2,41,101200,674,1394,313,462,716,112,48200,70300,14100,2350,250,5.2,3,0,19.3,77777,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1978,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,16.7,0.6,34,101200,574,1394,316,374,671,94,38800,64200,12300,1880,270,6.2,2,0,24.1,77777,9,999999999,110,0.1280,0,88,999.000,999.0,99.0 +1978,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,17.2,0.0,31,101200,416,1394,317,243,575,68,25000,50900,9700,1290,270,7.2,0,0,24.1,77777,9,999999999,110,0.1280,0,88,999.000,999.0,99.0 +1978,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,16.7,1.7,37,101200,212,1394,317,96,327,44,9500,22100,6200,770,270,5.2,0,0,24.1,77777,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1978,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,15.0,1.1,39,101300,22,616,309,13,22,11,0,0,0,0,260,6.7,0,0,24.1,77777,9,999999999,120,0.1280,0,88,999.000,999.0,99.0 +1978,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,13.3,1.7,45,101400,0,0,302,0,0,0,0,0,0,0,240,2.6,0,0,24.1,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1978,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,13.3,1.7,45,101400,0,0,302,0,0,0,0,0,0,0,250,4.6,0,0,24.1,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1978,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,13.3,1.1,44,101500,0,0,302,0,0,0,0,0,0,0,260,5.2,0,0,24.1,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1978,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,13.3,1.1,44,101500,0,0,302,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1978,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,12.2,1.1,47,101600,0,0,297,0,0,0,0,0,0,0,300,3.6,0,0,24.1,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1978,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,12.2,1.7,49,101700,0,0,298,0,0,0,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1978,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,10.0,1.1,54,101800,0,0,288,0,0,0,0,0,0,0,280,1.5,0,0,24.1,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1978,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,10.6,1.7,54,101800,0,0,291,0,0,0,0,0,0,0,320,3.1,2,0,24.1,77777,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1978,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,9.4,1.7,59,101800,0,0,286,0,0,0,0,0,0,0,340,2.1,1,0,24.1,77777,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1978,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,9.4,2.2,61,101800,0,0,287,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1978,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,8.3,1.7,63,102000,0,0,282,0,0,0,0,0,0,0,330,3.6,0,0,24.1,77777,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1978,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,8.3,1.7,63,102100,0,0,282,0,0,0,0,0,0,0,350,3.6,0,0,24.1,77777,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1978,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,8.3,1.7,63,102100,0,0,287,0,0,0,0,0,0,0,350,2.6,1,1,24.1,77777,9,999999999,120,0.1050,0,88,999.000,999.0,99.0 +1978,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,8.3,1.7,63,102200,28,709,298,13,15,12,1400,500,1400,250,350,1.5,6,5,24.1,3050,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1978,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,10.0,3.3,64,102400,224,1395,314,82,40,76,9000,3100,8500,1730,30,2.6,9,7,24.1,3050,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1978,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,11.7,6.1,69,102400,425,1395,313,191,317,94,20100,28200,11500,1750,30,3.6,4,3,16.1,77777,9,999999999,160,0.0520,0,88,999.000,999.0,99.0 +1978,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,12.8,7.2,69,102500,578,1395,316,293,486,89,30600,46700,11200,1800,70,4.1,4,2,16.1,77777,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1978,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,13.3,7.8,69,102500,674,1395,319,447,710,101,47000,70000,13100,2150,70,5.2,3,2,16.1,77777,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1978,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,13.3,7.8,69,102500,705,1395,309,500,841,71,52000,82000,10400,1560,70,4.1,2,0,16.1,77777,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1978,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,13.3,8.3,72,102500,669,1395,309,470,831,67,48900,80600,10100,1480,80,5.2,2,0,16.1,77777,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1978,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,13.3,8.3,72,102600,569,1395,309,386,796,56,40100,75600,9200,1270,80,5.2,1,0,16.1,77777,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1978,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,12.8,7.8,72,102600,411,1395,306,256,703,44,26600,63100,7900,940,80,6.2,1,0,16.1,77777,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1978,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,11.7,8.3,80,102700,208,1395,302,107,506,29,10700,36400,5200,570,80,5.2,0,0,16.1,77777,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1978,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,10.6,8.3,86,102700,20,593,298,17,82,9,0,0,0,0,80,4.6,0,0,12.9,77777,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,102800,0,0,295,0,0,0,0,0,0,0,90,5.2,0,0,11.3,77777,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.0,8.9,93,102900,0,0,296,0,0,0,0,0,0,0,80,4.1,0,0,11.3,77777,9,999999999,189,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.0,8.9,93,102900,0,0,309,0,0,0,0,0,0,0,80,3.6,5,3,11.3,77777,9,999999999,189,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,102900,0,0,310,0,0,0,0,0,0,0,80,3.6,9,4,11.3,77777,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,9.4,8.3,93,102900,0,0,308,0,0,0,0,0,0,0,90,3.6,9,4,11.3,77777,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,9.4,8.3,93,102900,0,0,321,0,0,0,0,0,0,0,100,3.6,10,8,11.3,210,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,102900,0,0,324,0,0,0,0,0,0,0,110,4.1,8,8,12.9,310,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,102800,0,0,341,0,0,0,0,0,0,0,120,4.1,10,10,12.9,310,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,8.3,89,102800,0,0,341,0,0,0,0,0,0,0,110,3.6,10,10,12.9,430,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,102700,0,0,341,0,0,0,0,0,0,0,120,2.1,10,10,12.9,240,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.0,8.3,89,102700,0,0,324,0,0,0,0,0,0,0,40,2.1,8,8,14.5,490,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,9.4,8.3,93,102700,0,0,321,0,0,0,0,0,0,0,10,1.5,8,8,12.9,430,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,8.9,8.3,96,102700,0,0,335,0,0,0,0,0,0,0,50,1.5,10,10,11.3,460,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,102700,25,663,338,12,0,12,0,0,0,0,50,1.5,10,10,12.9,460,9,999999999,189,0.1220,0,88,999.000,999.0,99.0 +1978,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,10.0,9.4,96,102700,219,1395,342,44,6,43,5000,100,5000,1540,10,1.5,10,10,8.0,370,9,999999999,189,0.1220,0,88,999.000,999.0,99.0 +1978,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,10.0,9.4,96,102600,419,1395,342,77,2,76,8900,100,8800,3030,90,1.5,10,10,8.0,270,9,999999999,189,0.1220,0,88,999.000,999.0,99.0 +1978,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,11.1,10.0,93,102600,573,1395,348,156,3,154,17600,200,17500,5930,50,2.1,10,10,8.0,270,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1978,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,11.1,10.0,93,102500,668,1395,348,158,0,158,18200,0,18200,6570,80,1.5,10,10,8.0,270,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1978,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,12.2,10.0,86,102400,699,1395,344,285,144,212,31000,14800,23600,5290,130,2.6,10,9,8.0,1250,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1978,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,12.2,10.0,86,102200,664,1395,324,389,446,175,40600,44300,19400,3650,130,2.6,8,5,9.7,7620,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1978,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,12.2,10.0,86,102100,564,1395,324,269,307,143,28700,30500,16400,2950,130,2.6,8,5,9.7,7620,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1978,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,12.2,10.0,86,102100,406,1395,319,211,352,107,21700,30800,12700,2020,120,2.1,7,3,9.7,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1978,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,11.7,10.0,90,102000,203,1395,320,76,121,58,7900,7500,6800,1110,120,2.1,9,4,9.7,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1978,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,10.0,8.9,93,102000,18,570,306,10,10,9,0,0,0,0,110,1.5,7,2,9.7,77777,9,999999999,189,0.1220,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,101900,0,0,299,0,0,0,0,0,0,0,170,2.6,5,1,11.3,77777,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,101900,0,0,299,0,0,0,0,0,0,0,200,0.5,7,1,11.3,77777,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,9.4,8.9,96,101900,0,0,303,0,0,0,0,0,0,0,220,3.1,8,2,11.3,77777,9,999999999,179,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.0,8.9,93,101900,0,0,306,0,0,0,0,0,0,0,290,3.6,10,2,12.9,77777,9,999999999,189,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.6,7.8,83,101900,0,0,307,0,0,0,0,0,0,0,290,4.1,7,2,12.9,77777,9,999999999,170,0.1050,0,88,999.000,999.0,99.0 +1978,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,11.1,7.2,77,101900,0,0,309,0,0,0,0,0,0,0,300,4.1,10,2,16.1,77777,9,999999999,170,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.6,6.7,77,101800,0,0,302,0,0,0,0,0,0,0,300,4.6,6,1,12.9,77777,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.6,6.1,74,101900,0,0,301,0,0,0,0,0,0,0,300,4.1,4,1,14.5,77777,9,999999999,160,0.1040,0,88,999.000,999.0,99.0 +1978,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,10.6,5.6,71,101900,0,0,308,0,0,0,0,0,0,0,310,5.7,9,3,16.1,77777,9,999999999,150,0.1040,0,88,999.000,999.0,99.0 +1978,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,10.6,4.4,66,101900,0,0,306,0,0,0,0,0,0,0,310,5.7,8,3,19.3,77777,9,999999999,139,0.1040,0,88,999.000,999.0,99.0 +1978,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,10.6,4.4,66,102000,0,0,314,0,0,0,0,0,0,0,330,6.7,10,6,20.9,7620,9,999999999,139,0.1040,0,88,999.000,999.0,99.0 +1978,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,10.0,3.9,66,102100,0,0,306,0,0,0,0,0,0,0,340,6.2,9,4,24.1,77777,9,999999999,139,0.1040,0,88,999.000,999.0,99.0 +1978,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,9.4,2.8,63,102200,0,0,307,0,0,0,0,0,0,0,340,6.7,10,6,24.1,7620,9,999999999,129,0.1040,0,88,999.000,999.0,99.0 +1978,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,8.3,1.1,61,102300,23,640,324,3,0,3,0,0,0,0,350,6.7,10,10,20.9,790,9,999999999,120,0.0950,0,88,999.000,999.0,99.0 +1978,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,1.1,61,102500,213,1396,324,43,2,42,4800,0,4800,1500,10,5.2,10,10,24.1,790,9,999999999,120,0.0950,0,88,999.000,999.0,99.0 +1978,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,7.8,0.0,58,102600,414,1396,321,104,12,100,11700,700,11500,3710,40,5.2,10,10,24.1,1160,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1978,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,7.2,-0.6,58,102700,567,1396,317,152,9,148,17200,700,16900,5740,20,7.2,10,10,24.1,1160,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1978,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,-1.1,56,102700,663,1396,317,206,4,204,23200,300,23100,7790,30,7.2,10,10,24.1,1310,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1978,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,6.1,-0.6,63,102700,694,1396,312,202,8,198,23000,700,22600,7860,60,6.7,10,10,24.1,1010,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1978,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,6.1,-1.1,60,102700,658,1396,289,318,253,198,33900,25900,21600,4410,50,7.7,6,6,24.1,1070,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1978,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,6.1,-1.1,60,102700,559,1396,297,212,115,165,23000,11300,18400,3870,80,8.2,8,8,24.1,1010,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1978,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,5.6,-2.8,55,102800,402,1396,278,167,203,108,17700,18000,12500,2140,70,7.2,3,3,24.1,77777,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1978,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,5.6,-2.2,58,102800,199,1396,283,64,140,43,6700,8600,5500,780,80,6.7,5,5,24.1,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1978,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,5.0,-2.8,58,102800,17,547,278,8,11,7,0,0,0,0,70,5.7,5,4,24.1,77777,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1978,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,-3.3,57,102900,0,0,267,0,0,0,0,0,0,0,60,5.2,6,1,24.1,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1978,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,-2.8,60,102900,0,0,267,0,0,0,0,0,0,0,80,5.2,6,1,24.1,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1978,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,4.4,-2.8,60,102900,0,0,267,0,0,0,0,0,0,0,60,5.2,6,1,24.1,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1978,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,4.4,-3.9,55,103000,0,0,266,0,0,0,0,0,0,0,50,5.2,4,1,24.1,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1978,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,4.4,-3.9,55,103000,0,0,261,0,0,0,0,0,0,0,60,3.6,2,0,24.1,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1978,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,2.8,-3.3,65,103000,0,0,261,0,0,0,0,0,0,0,10,3.1,1,1,24.1,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1978,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,2.2,-3.9,64,103100,0,0,266,0,0,0,0,0,0,0,350,4.1,4,4,24.1,77777,9,999999999,89,0.1040,0,88,999.000,999.0,99.0 +1978,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,1.1,-4.4,67,103100,0,0,257,0,0,0,0,0,0,0,350,4.6,2,2,24.1,77777,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1978,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,1.1,-4.4,67,103100,0,0,248,0,0,0,0,0,0,0,350,4.1,0,0,24.1,77777,9,999999999,89,0.1030,0,88,999.000,999.0,99.0 +1978,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,0.0,-5.0,69,103100,0,0,252,0,0,0,0,0,0,0,350,4.1,3,2,24.1,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1978,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,0.0,-4.4,72,103100,0,0,257,0,0,0,0,0,0,0,340,3.6,5,4,24.1,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1978,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,0.0,-4.4,72,103200,0,0,255,0,0,0,0,0,0,0,340,4.1,4,3,24.1,77777,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1978,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,0.0,-4.4,72,103200,0,0,261,0,0,0,0,0,0,0,340,4.1,6,6,24.1,1070,9,999999999,80,0.1030,0,88,999.000,999.0,99.0 +1978,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,0.0,-4.4,72,103300,21,617,257,4,2,3,0,0,0,0,340,3.6,5,4,20.9,77777,9,999999999,89,0.1850,0,88,999.000,999.0,99.0 +1978,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,0.6,-3.9,72,103300,208,1397,262,60,98,45,6400,6200,5400,810,340,4.1,5,5,20.9,77777,9,999999999,89,0.1850,0,88,999.000,999.0,99.0 +1978,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,1.1,-3.9,70,103300,408,1397,266,148,100,119,16100,9000,13500,2650,360,3.6,6,6,20.9,1070,9,999999999,89,0.1850,0,88,999.000,999.0,99.0 +1978,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,3.9,-2.2,65,103300,562,1397,301,110,5,108,12800,300,12700,4520,30,4.1,10,10,20.9,1070,9,999999999,100,0.1850,0,88,999.000,999.0,99.0 +1978,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,5.6,-2.2,58,103300,657,1397,308,209,7,205,23500,600,23200,7770,90,4.6,10,10,24.1,1010,9,999999999,100,0.1850,0,88,999.000,999.0,99.0 +1978,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,5.6,-2.2,58,103300,688,1397,308,160,16,152,18600,1200,18000,6480,100,4.1,10,10,24.1,1010,9,999999999,100,0.1850,0,88,999.000,999.0,99.0 +1978,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,5.6,-2.8,55,103200,653,1397,308,192,7,188,21700,600,21400,7320,130,4.1,10,10,24.1,940,9,999999999,89,0.1850,0,88,999.000,999.0,99.0 +1978,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,5.6,-2.8,55,103200,554,1397,308,123,4,121,14100,300,14000,4900,120,4.1,10,10,24.1,1010,9,999999999,89,0.1850,0,88,999.000,999.0,99.0 +1978,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,5.6,-2.2,58,103200,397,1397,300,97,29,88,10600,2600,9800,2400,120,4.6,9,9,24.1,1070,9,999999999,100,0.1850,0,88,999.000,999.0,99.0 +1978,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,5.6,-2.2,58,103100,195,1397,281,63,108,47,6600,6600,5700,870,130,4.1,5,4,24.1,77777,9,999999999,100,0.1850,0,88,999.000,999.0,99.0 +1978,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,4.4,-2.2,62,103100,15,524,268,9,3,8,0,0,0,0,140,5.7,6,1,24.1,77777,9,999999999,100,0.1850,0,88,999.000,999.0,99.0 +1978,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,4.4,-2.2,62,103100,0,0,271,0,0,0,0,0,0,0,150,5.7,10,2,24.1,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1978,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,4.4,-1.7,65,103100,0,0,272,0,0,0,0,0,0,0,150,6.2,10,2,24.1,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1978,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,4.4,-1.1,68,103000,0,0,272,0,0,0,0,0,0,0,150,6.7,10,2,24.1,77777,9,999999999,100,0.1030,0,88,999.000,999.0,99.0 +1978,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,4.4,-0.6,70,103000,0,0,286,0,0,0,0,0,0,0,180,3.6,10,7,24.1,1400,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1978,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,5.0,-0.6,68,103000,0,0,308,0,0,0,0,0,0,0,170,4.6,10,10,24.1,1490,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1978,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,5.6,0.6,71,102900,0,0,312,0,0,0,0,0,0,0,170,5.7,10,10,24.1,1490,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1978,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,5.6,0.6,71,102900,0,0,312,0,0,0,0,0,0,0,180,4.1,10,10,24.1,1400,9,999999999,110,0.1030,0,88,999.000,999.0,99.0 +1978,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,5.6,1.1,73,102800,0,0,312,0,0,0,0,0,0,0,170,6.2,10,10,24.1,1400,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1978,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,5.6,1.1,73,102800,0,0,312,0,0,0,0,0,0,0,170,4.1,10,10,20.9,1400,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1978,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,6.1,2.2,76,102700,0,0,316,0,0,0,0,0,0,0,170,5.2,10,10,20.9,1520,9,999999999,120,0.1030,0,88,999.000,999.0,99.0 +1978,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,6.7,2.8,76,102600,0,0,319,0,0,0,0,0,0,0,170,4.1,10,10,20.9,1520,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1978,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,6.7,3.3,80,102500,0,0,320,0,0,0,0,0,0,0,180,4.6,10,10,19.3,610,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1978,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,7.2,3.9,80,102500,0,0,322,0,0,0,0,0,0,0,180,5.2,10,10,19.3,580,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1978,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,7.8,6.1,89,102400,19,594,299,7,9,6,0,0,0,0,180,6.2,7,4,20.9,7620,9,999999999,160,0.1050,0,88,999.000,999.0,99.0 +1978,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,8.9,7.2,89,102400,203,1397,318,44,54,36,4900,3700,4400,760,190,5.7,10,8,19.3,730,9,999999999,170,0.1050,0,88,999.000,999.0,99.0 +1978,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,11.7,8.9,83,102300,403,1397,340,114,11,110,12700,700,12500,3900,190,7.2,10,9,19.3,1520,9,999999999,189,0.1050,0,88,999.000,999.0,99.0 +1978,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,13.9,10.0,78,102200,556,1397,330,292,313,166,30900,30900,18500,3530,200,10.3,10,4,19.3,77777,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1978,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,15.6,11.1,75,102100,652,1397,362,208,57,182,22900,5600,20300,5410,190,9.8,10,9,19.3,1520,9,999999999,209,0.1050,0,88,999.000,999.0,99.0 +1978,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,16.7,11.1,70,102000,683,1397,341,414,515,160,43700,51400,18500,3340,220,10.8,9,3,19.3,77777,9,999999999,209,0.1050,0,88,999.000,999.0,99.0 +1978,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.8,10.0,61,101900,648,1397,345,359,433,156,37700,42800,17800,3190,230,10.3,9,3,11.3,77777,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1978,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,10.0,59,101800,549,1397,344,300,464,115,31700,44400,14200,2210,220,10.3,8,2,11.3,77777,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1978,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,17.8,10.0,61,101700,393,1397,348,142,213,81,15300,18800,10000,1520,220,9.3,9,4,11.3,77777,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1978,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,16.7,10.0,65,101700,191,1397,340,80,156,58,8300,9300,7000,1120,220,8.2,10,3,11.3,77777,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1978,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,16.1,10.0,67,101700,14,501,346,4,2,4,0,0,0,0,220,7.2,10,6,11.3,7620,9,999999999,200,0.1050,0,88,999.000,999.0,99.0 +1978,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.6,10.0,70,101700,0,0,343,0,0,0,0,0,0,0,200,6.7,10,6,14.5,7620,9,999999999,200,0.1030,0,88,999.000,999.0,99.0 +1978,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,13.9,10.0,78,101600,0,0,344,0,0,0,0,0,0,0,200,5.7,10,8,14.5,2440,9,999999999,200,0.1030,0,88,999.000,999.0,99.0 +1978,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,15.0,10.6,75,101600,0,0,368,0,0,0,0,0,0,0,220,6.2,10,10,14.5,3050,9,999999999,209,0.1030,0,88,999.000,999.0,99.0 +1978,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,15.6,10.6,72,101600,0,0,371,0,0,0,0,0,0,0,230,7.2,10,10,14.5,1980,9,999999999,200,0.1030,0,88,999.000,999.0,99.0 +1978,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,15.6,11.1,75,101600,0,0,372,0,0,0,0,0,0,0,230,7.7,10,10,14.5,1830,9,999999999,209,0.1030,0,88,999.000,999.0,99.0 +1978,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,15.6,11.1,75,101600,0,0,372,0,0,0,0,0,0,0,330,7.2,10,10,14.5,1520,9,999999999,209,0.1030,0,88,999.000,999.0,99.0 +1978,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,15.6,10.6,72,101600,0,0,371,0,0,0,0,0,0,0,230,6.2,10,10,14.5,3050,9,999999999,200,0.1030,0,88,999.000,999.0,99.0 +1978,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,15.6,10.6,72,101500,0,0,371,0,0,0,0,0,0,0,230,5.2,10,10,14.5,3050,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1978,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,15.6,10.6,72,101600,0,0,371,0,0,0,0,0,0,0,230,4.6,10,10,12.9,910,9,999999999,209,0.1020,0,88,999.000,999.0,99.0 +1978,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,13.9,6.1,60,101700,0,0,315,0,0,0,0,0,0,0,310,5.7,7,1,20.9,77777,9,999999999,160,0.1020,0,88,999.000,999.0,99.0 +1978,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,12.8,3.9,55,101800,0,0,302,0,0,0,0,0,0,0,290,6.7,0,0,24.1,77777,9,999999999,139,0.1020,0,88,999.000,999.0,99.0 +1978,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,11.7,2.8,55,101900,0,0,297,0,0,0,0,0,0,0,300,6.7,4,0,24.1,77777,9,999999999,129,0.1020,0,88,999.000,999.0,99.0 +1978,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,10.6,0.0,48,101900,0,0,295,0,0,0,0,0,0,0,300,7.2,6,1,24.1,77777,9,999999999,110,0.1020,0,88,999.000,999.0,99.0 +1978,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,8.9,-1.1,50,102100,17,548,291,4,1,4,0,0,0,0,300,6.7,3,2,24.1,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1978,11,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,102200,198,1398,281,73,152,51,7700,9300,6300,950,300,6.2,0,0,24.1,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1978,11,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,102300,397,1398,286,201,391,88,21000,34000,11300,1630,310,4.1,0,0,24.1,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1978,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,10.6,-1.7,43,102300,551,1398,288,321,517,115,34000,49500,14400,2210,290,6.2,0,0,24.1,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1978,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,10.6,-1.7,43,102300,647,1398,288,406,587,132,41700,56600,15400,2630,290,6.7,0,0,24.1,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1978,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,11.7,-2.2,38,102200,678,1398,291,436,609,137,44800,59200,16000,2780,310,3.6,0,0,24.1,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1978,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,12.2,-2.2,37,102200,643,1398,294,408,593,132,41800,57100,15400,2620,280,5.7,0,0,24.1,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1978,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,12.8,-2.2,36,102200,544,1398,309,298,397,141,30900,37800,16100,2770,300,6.2,3,3,24.1,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1978,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,12.8,-2.2,36,102300,388,1398,306,169,190,116,17800,16600,13100,2340,290,4.6,8,2,24.1,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1978,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,11.1,-2.2,40,102400,187,1398,302,75,53,68,8200,3900,7700,1490,280,5.2,10,3,24.1,77777,9,999999999,100,0.2270,0,88,999.000,999.0,99.0 +1978,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,10.6,-2.8,39,102400,13,478,299,5,0,5,0,0,0,0,290,5.2,10,3,24.1,77777,9,999999999,89,0.2270,0,88,999.000,999.0,99.0 +1978,11,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.8,41,102500,0,0,296,0,0,0,0,0,0,0,340,4.6,10,3,24.1,77777,9,999999999,89,0.1020,0,88,999.000,999.0,99.0 +1978,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,8.9,-3.9,41,102500,0,0,298,0,0,0,0,0,0,0,340,4.6,10,6,24.1,7620,9,999999999,89,0.1020,0,88,999.000,999.0,99.0 +1978,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,8.3,-3.9,42,102600,0,0,299,0,0,0,0,0,0,0,330,3.1,10,7,24.1,7620,9,999999999,89,0.1020,0,88,999.000,999.0,99.0 +1978,11,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-3.9,42,102700,0,0,310,0,0,0,0,0,0,0,330,4.1,10,9,24.1,2440,9,999999999,89,0.1020,0,88,999.000,999.0,99.0 +1978,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,7.8,-5.0,40,102700,0,0,315,0,0,0,0,0,0,0,360,2.6,10,10,24.1,2740,9,999999999,80,0.1020,0,88,999.000,999.0,99.0 +1978,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,7.2,-4.4,44,102600,0,0,313,0,0,0,0,0,0,0,40,1.5,10,10,24.1,2440,9,999999999,89,0.1020,0,88,999.000,999.0,99.0 +1978,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,7.2,-3.9,46,102700,0,0,314,0,0,0,0,0,0,0,30,2.1,10,10,20.9,1520,9,999999999,89,0.1020,0,88,999.000,999.0,99.0 +1978,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,6.7,-2.2,53,102700,0,0,313,0,0,0,0,0,0,0,310,1.5,10,10,16.1,760,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1978,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,5.6,-1.7,60,102700,0,0,309,0,0,0,0,0,0,0,200,1.5,10,10,16.1,610,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1978,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,5.6,-0.6,65,102700,0,0,310,0,0,0,0,0,0,0,250,1.5,10,10,16.1,1250,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1978,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,5.0,0.6,73,102700,0,0,309,0,0,0,0,0,0,0,200,3.6,10,10,19.3,1160,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1978,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,5.0,1.1,76,102700,0,0,301,0,0,0,0,0,0,0,240,3.1,9,9,20.9,1250,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1978,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,5.6,1.1,73,102800,0,0,292,0,0,0,0,0,0,0,290,2.6,8,7,20.9,1250,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1978,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,5.6,0.6,71,102800,15,524,297,6,1,6,0,0,0,0,300,3.6,9,8,20.9,1310,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1978,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,5.6,0.0,68,102900,193,1399,288,64,100,50,7000,6600,6000,1050,330,3.6,8,6,24.1,3050,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1978,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,6.1,0.6,68,102900,392,1399,284,233,506,90,24400,43700,12000,1670,330,3.1,4,3,24.1,77777,9,999999999,110,0.1080,0,88,999.000,999.0,99.0 +1978,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,6.7,-1.1,58,103000,545,1399,284,304,413,141,31500,39300,16100,2770,20,2.6,7,3,24.1,77777,9,999999999,100,0.1080,0,88,999.000,999.0,99.0 +1978,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,7.8,-3.9,44,103000,641,1399,283,414,589,141,43900,58200,17100,2850,20,3.1,7,2,24.1,77777,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1978,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,8.3,-4.4,41,102900,673,1399,285,428,600,136,44000,58300,15800,2760,50,3.1,7,2,24.1,77777,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1978,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,8.9,-4.4,39,103000,638,1399,287,401,571,137,42500,56400,16700,2760,230,1.5,6,2,24.1,77777,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1978,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,9.4,-5.0,36,103000,540,1399,289,317,504,120,33400,48000,14800,2320,340,2.1,5,2,24.1,77777,9,999999999,80,0.1080,0,88,999.000,999.0,99.0 +1978,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,8.9,-2.8,44,103000,384,1399,285,213,502,73,21700,42900,9900,1330,110,3.6,4,1,24.1,77777,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1978,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,7.8,-2.8,48,103100,183,1399,281,77,232,45,7800,14000,6000,810,110,3.6,6,1,24.1,77777,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1978,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,6.7,-2.8,51,103100,12,455,271,9,13,8,0,0,0,0,110,3.6,5,0,24.1,77777,9,999999999,89,0.1080,0,88,999.000,999.0,99.0 +1978,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,6.1,-2.2,56,103300,0,0,283,0,0,0,0,0,0,0,360,4.6,5,4,24.1,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1978,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,6.1,-4.4,47,103300,0,0,276,0,0,0,0,0,0,0,340,3.6,3,2,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,5.0,-4.4,51,103400,0,0,268,0,0,0,0,0,0,0,350,3.6,1,1,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,4.4,-4.4,53,103400,0,0,261,0,0,0,0,0,0,0,350,3.6,0,0,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,3.3,-5.0,55,103500,0,0,256,0,0,0,0,0,0,0,10,3.1,0,0,24.1,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1978,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,2.8,-4.4,59,103500,0,0,255,0,0,0,0,0,0,0,10,3.1,0,0,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,2.2,-3.9,64,103600,0,0,253,0,0,0,0,0,0,0,10,3.1,0,0,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,2.8,-3.3,65,103600,0,0,256,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,2.8,-3.3,65,103600,0,0,264,0,0,0,0,0,0,0,340,2.6,2,2,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,2.8,-3.3,65,103700,0,0,273,0,0,0,0,0,0,0,330,3.1,6,6,24.1,1160,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,2.2,-3.3,67,103700,0,0,267,0,0,0,0,0,0,0,330,2.6,4,4,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,1.7,-3.3,70,103600,0,0,263,0,0,0,0,0,0,0,330,2.1,3,3,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,1.7,-2.8,73,103600,0,0,265,0,0,0,0,0,0,0,300,2.1,4,4,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1978,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,1.7,-2.2,76,103600,13,501,278,8,1,8,0,0,0,0,340,1.0,8,8,17.7,1070,9,999999999,100,0.1110,0,88,999.000,999.0,99.0 +1978,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,5.0,-0.6,68,103700,187,1399,299,36,16,34,4000,1100,3800,870,160,2.6,9,9,12.9,910,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1978,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,6.7,0.6,65,103700,387,1399,308,134,28,126,14600,2500,13900,3140,120,6.2,9,9,12.9,910,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1978,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,7.2,0.6,63,103600,540,1399,319,173,27,163,19400,2100,18600,5930,130,7.7,10,10,19.3,910,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1978,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,7.2,0.6,63,103600,636,1399,319,222,14,215,24700,1200,24200,7800,130,6.7,10,10,19.3,910,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1978,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,7.8,1.1,63,103500,668,1399,322,180,0,179,20400,0,20400,7170,140,6.2,10,10,19.3,910,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1978,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,7.8,1.7,66,103400,634,1399,323,189,5,187,21400,400,21200,7150,140,6.7,10,10,19.3,910,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1978,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,8.3,2.2,66,103300,535,1399,326,151,3,150,17000,200,16900,5600,140,7.7,10,10,19.3,790,9,999999999,129,0.1110,0,88,999.000,999.0,99.0 +1978,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,8.3,2.2,66,103200,380,1399,326,97,1,97,10900,100,10900,3470,140,7.2,10,10,19.3,790,9,999999999,129,0.1110,0,88,999.000,999.0,99.0 +1978,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,8.3,2.8,68,103200,179,1399,326,21,1,21,2500,0,2500,810,130,6.7,10,10,19.3,820,9,999999999,129,0.1110,0,88,999.000,999.0,99.0 +1978,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,8.3,3.3,71,103100,11,455,327,3,0,3,0,0,0,0,130,6.2,10,10,16.1,820,9,999999999,129,0.1110,0,88,999.000,999.0,99.0 +1978,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,7.8,5.0,83,103000,0,0,326,0,0,0,0,0,0,0,120,6.7,10,10,12.9,790,9,999999999,150,0.1010,0,88,999.000,999.0,99.0 +1978,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,7.8,6.7,93,102800,0,0,328,0,0,0,0,0,0,0,120,6.7,10,10,11.3,700,9,999999999,160,0.1010,0,88,999.000,999.0,99.0 +1978,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,7.8,7.8,100,102700,0,0,330,0,0,0,0,0,0,0,130,7.7,10,10,11.3,310,9,999999999,179,0.1010,0,88,999.000,999.0,99.0 +1978,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,8.3,7.8,96,102400,0,0,332,0,0,0,0,0,0,0,130,7.2,10,10,11.3,310,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1978,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,10.0,8.9,93,102200,0,0,341,0,0,0,0,0,0,0,170,6.7,10,10,12.9,430,9,999999999,189,0.1010,0,88,999.000,999.0,99.0 +1978,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,10.6,10.0,96,102000,0,0,345,0,0,0,0,0,0,0,150,5.7,10,10,9.7,400,9,999999999,200,0.1010,0,88,999.000,999.0,99.0 +1978,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,12.2,12.2,100,101800,0,0,356,0,0,0,0,0,0,0,160,9.8,10,10,9.7,400,9,999999999,229,0.1010,0,88,999.000,999.0,99.0 +1978,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,13.3,13.3,100,101700,0,0,363,0,0,0,0,0,0,0,180,8.2,10,10,14.5,240,9,999999999,240,0.1000,0,88,999.000,999.0,99.0 +1978,11,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,101500,0,0,373,0,0,0,0,0,0,0,180,7.2,10,10,14.5,370,9,999999999,270,0.1000,0,88,999.000,999.0,99.0 +1978,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,16.7,16.7,100,101400,0,0,384,0,0,0,0,0,0,0,200,10.3,10,10,11.3,370,9,999999999,300,0.1000,0,88,999.000,999.0,99.0 +1978,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,16.7,16.7,100,101200,0,0,384,0,0,0,0,0,0,0,200,11.3,10,10,11.3,370,9,999999999,290,0.1000,0,88,999.000,999.0,99.0 +1978,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,16.7,16.1,97,101100,0,0,384,0,0,0,0,0,0,0,200,11.3,10,10,11.3,370,9,999999999,290,0.1000,0,88,999.000,999.0,99.0 +1978,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,16.7,16.1,97,101000,0,0,384,0,0,0,0,0,0,0,200,9.8,10,10,11.3,370,9,999999999,290,0.1000,0,88,999.000,999.0,99.0 +1978,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,16.7,16.7,100,101000,12,478,384,4,0,4,0,0,0,0,220,9.3,10,10,4.0,370,9,999999999,290,0.0580,0,88,999.000,999.0,99.0 +1978,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,17.2,16.7,97,101000,182,1400,387,51,0,51,5600,0,5600,1610,210,10.3,10,10,19.3,520,9,999999999,290,0.0580,0,88,999.000,999.0,99.0 +1978,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,17.8,16.7,93,100900,382,1400,358,175,337,82,18400,28900,10500,1510,220,9.3,5,5,19.3,77777,9,999999999,290,0.0580,0,88,999.000,999.0,99.0 +1978,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,19.4,16.1,81,100900,535,1400,369,278,365,137,28900,34600,15600,2680,240,11.3,6,6,24.1,760,9,999999999,279,0.0580,0,88,999.000,999.0,99.0 +1978,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,20.0,14.4,71,101000,631,1400,367,322,382,148,33900,37600,16900,2990,240,8.2,5,5,24.1,77777,9,999999999,259,0.0580,0,88,999.000,999.0,99.0 +1978,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,11.7,57,101000,663,1400,361,395,549,132,40700,53200,15300,2660,270,8.2,3,3,24.1,77777,9,999999999,220,0.0580,0,88,999.000,999.0,99.0 +1978,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.0,10.0,53,101000,629,1400,356,398,673,93,41900,65700,12200,1930,260,9.3,3,3,24.1,77777,9,999999999,200,0.0580,0,88,999.000,999.0,99.0 +1978,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,18.9,8.9,52,101100,531,1400,341,337,712,62,34900,67200,9300,1300,270,8.8,1,1,24.1,77777,9,999999999,179,0.0580,0,88,999.000,999.0,99.0 +1978,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,16.7,6.1,50,101200,376,1400,328,196,505,58,20200,43400,8500,1100,290,10.8,1,1,24.1,77777,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1978,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,14.4,2.8,46,101400,176,1400,308,85,439,28,8400,29500,4700,520,300,7.7,0,0,24.1,77777,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1978,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,11.7,2.2,53,101500,10,432,296,10,43,6,0,0,0,0,300,6.7,0,0,24.1,77777,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1978,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,11.1,2.2,55,101600,0,0,294,0,0,0,0,0,0,0,290,6.7,0,0,24.1,77777,9,999999999,129,0.1000,0,88,999.000,999.0,99.0 +1978,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,10.6,2.2,57,101700,0,0,292,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,129,0.1000,0,88,999.000,999.0,99.0 +1978,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,10.0,1.7,57,101800,0,0,289,0,0,0,0,0,0,0,280,6.7,0,0,24.1,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1978,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,9.4,1.7,59,101800,0,0,286,0,0,0,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1978,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,8.9,1.7,61,101900,0,0,284,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1978,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,8.3,1.1,61,101900,0,0,281,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1978,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,8.3,1.1,61,102000,0,0,281,0,0,0,0,0,0,0,270,5.7,0,0,24.1,77777,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1978,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,7.8,1.1,63,102000,0,0,279,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1978,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,7.2,0.6,63,102000,0,0,276,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1978,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,0.6,65,102100,0,0,274,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1978,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,6.7,-0.6,60,102100,0,0,273,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1978,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,6.7,-1.1,58,102200,0,0,273,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1978,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,6.1,-1.1,60,102200,0,0,270,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1978,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,6.1,-0.6,63,102400,10,432,271,10,43,5,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1978,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,6.1,-0.6,63,102400,177,1400,271,84,437,28,8400,29500,4700,520,290,3.6,0,0,24.1,77777,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1978,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,7.2,-0.6,58,102400,377,1400,275,230,689,42,23900,60300,7600,890,290,3.6,0,0,24.1,77777,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1978,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,8.3,0.0,56,102400,530,1400,280,356,792,53,37200,74400,9000,1200,270,5.2,0,0,24.1,77777,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1978,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,1.1,56,102400,626,1400,286,438,839,60,45800,80700,9600,1370,260,6.2,0,0,24.1,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1978,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,1.1,52,102500,658,1400,290,467,852,62,48700,82500,9800,1430,260,6.7,0,0,24.1,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1978,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.1,0.6,49,102200,625,1400,292,439,841,60,45800,80900,9600,1370,280,7.7,0,0,24.1,77777,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1978,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,11.1,1.1,50,102200,527,1400,292,355,791,53,37000,74200,9000,1190,300,8.2,0,0,24.1,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1978,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,11.1,1.1,50,102200,372,1400,292,228,685,42,23600,59700,7600,880,270,6.7,0,0,24.1,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1978,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,11.1,1.1,50,102200,172,1400,292,84,437,28,8200,29100,4600,510,290,6.2,0,0,24.1,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1978,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,10.0,1.1,54,102300,9,408,288,10,41,6,0,0,0,0,260,5.7,0,0,24.1,77777,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1978,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,8.9,1.1,59,102300,0,0,283,0,0,0,0,0,0,0,220,4.6,0,0,24.1,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1978,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,8.3,1.1,61,102400,0,0,281,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,120,0.0990,0,88,999.000,999.0,99.0 +1978,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,7.8,0.6,61,102400,0,0,279,0,0,0,0,0,0,0,270,4.6,0,0,24.1,77777,9,999999999,110,0.0990,0,88,999.000,999.0,99.0 +1978,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,7.8,-1.1,54,102500,0,0,277,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1978,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,7.8,-2.2,50,102600,0,0,276,0,0,0,0,0,0,0,290,6.2,0,0,24.1,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1978,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,7.2,-2.8,49,102600,0,0,273,0,0,0,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1978,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,6.1,-2.8,53,102700,0,0,269,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1978,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,6.1,-2.8,53,102700,0,0,269,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1978,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,-3.3,53,102800,0,0,266,0,0,0,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1978,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,5.0,-3.3,55,102800,0,0,264,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1978,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,4.4,-3.3,57,102900,0,0,262,0,0,0,0,0,0,0,290,4.6,0,0,24.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1978,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,3.9,-3.3,60,103000,0,0,260,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1978,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,-3.9,57,103100,0,0,259,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1978,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,2.8,-3.9,62,103100,9,409,255,8,31,5,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,89,0.0670,0,88,999.000,999.0,99.0 +1978,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.8,-4.4,59,103300,173,1401,255,80,406,29,8200,25400,5000,530,350,4.1,0,0,24.1,77777,9,999999999,89,0.0670,0,88,999.000,999.0,99.0 +1978,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,3.3,-5.6,53,103300,371,1401,255,224,669,45,23200,58100,7700,920,350,6.2,0,0,24.1,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1978,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,4.4,-6.1,47,103400,525,1401,259,352,782,57,37100,73800,9300,1220,330,5.7,0,0,24.1,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1978,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,5.0,-6.1,45,103300,621,1401,261,436,831,64,45500,79800,9900,1390,320,5.2,0,0,24.1,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1978,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,5.6,-6.7,41,103200,654,1401,263,466,847,67,48600,81900,10200,1450,20,4.6,0,0,24.1,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1978,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,6.1,-6.1,42,103200,620,1401,265,436,832,64,45500,79900,9900,1390,290,3.6,0,0,24.1,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1978,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,6.1,-6.7,40,103100,523,1401,270,331,733,54,34900,69300,8900,1180,340,2.6,1,1,24.1,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1978,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,6.1,-7.2,38,103100,369,1401,273,181,397,74,19000,33600,10100,1350,330,4.1,2,2,24.1,77777,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1978,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.6,-7.8,38,103200,169,1401,273,79,262,46,8000,15000,6100,840,360,4.1,5,3,24.1,77777,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1978,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,-7.8,41,103200,8,385,271,7,15,5,0,0,0,0,360,4.6,5,4,24.1,77777,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1978,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,3.9,-8.3,41,103300,0,0,276,0,0,0,0,0,0,0,350,5.2,7,7,24.1,1520,9,999999999,69,0.0990,0,88,999.000,999.0,99.0 +1978,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.3,-8.9,41,103300,0,0,273,0,0,0,0,0,0,0,10,4.1,7,7,24.1,1520,9,999999999,69,0.0990,0,88,999.000,999.0,99.0 +1978,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,-9.4,42,103400,0,0,272,0,0,0,0,0,0,0,10,2.1,8,8,24.1,3050,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1978,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,2.2,-10.6,39,103400,0,0,285,0,0,0,0,0,0,0,20,2.6,10,10,24.1,1520,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1978,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,2.2,-10.6,39,103400,0,0,285,0,0,0,0,0,0,0,30,2.6,10,10,24.1,1520,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1978,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.2,-11.1,37,103400,0,0,284,0,0,0,0,0,0,0,10,2.6,10,10,24.1,1490,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1978,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.7,-11.7,37,103400,0,0,281,0,0,0,0,0,0,0,10,5.2,10,10,24.1,1400,9,999999999,60,0.0990,0,88,999.000,999.0,99.0 +1978,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,1.1,-10.0,44,103400,0,0,281,0,0,0,0,0,0,0,10,4.6,10,10,24.1,1400,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1978,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,-9.4,46,103400,0,0,281,0,0,0,0,0,0,0,10,4.1,10,10,24.1,1520,9,999999999,60,0.0980,0,88,999.000,999.0,99.0 +1978,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,0.0,-6.1,64,103400,0,0,280,0,0,0,0,0,0,0,20,4.6,10,10,12.9,1070,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1978,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.1,-3.9,82,103400,0,0,278,0,0,0,0,0,0,0,350,5.7,10,10,6.4,910,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.9,85,103400,0,0,276,0,0,0,0,0,0,0,340,4.6,10,10,4.0,550,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.9,85,103400,0,0,276,0,0,0,0,0,0,0,340,4.6,10,10,6.4,550,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.9,85,103400,8,385,276,2,2,2,0,0,0,0,350,5.2,10,10,6.4,1280,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.9,85,103400,168,1402,276,35,3,34,3900,0,3900,1180,350,6.2,10,10,1.6,310,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.9,85,103500,366,1402,276,78,6,76,8800,300,8800,2870,360,5.2,10,10,1.6,240,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.3,89,103500,520,1402,276,132,9,128,14900,600,14700,4940,360,6.2,10,10,1.6,240,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.3,89,103400,617,1402,276,169,4,167,19200,300,19000,6520,10,5.2,10,10,1.6,370,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1978,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,-1.1,-2.8,89,103300,649,1402,279,180,0,180,20400,0,20400,7070,20,5.2,10,10,1.6,310,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1978,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,-0.6,-2.2,89,103200,616,1402,282,195,5,193,21900,400,21700,7150,360,4.6,10,10,1.6,460,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1978,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,-0.6,-2.2,89,103200,519,1402,282,160,4,159,17900,300,17800,5690,10,4.1,10,10,1.6,430,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1978,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,-1.1,-2.8,89,103100,365,1402,279,100,2,100,11200,100,11200,3470,360,6.2,10,10,1.6,340,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1978,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,-1.1,-2.8,89,103100,166,1402,279,47,0,47,5200,0,5200,1470,10,5.7,10,10,4.8,340,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1978,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,-1.1,-2.8,89,103100,7,362,279,6,0,6,0,0,0,0,350,6.2,10,10,4.8,370,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1978,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,-1.1,-2.8,89,103200,0,0,279,0,0,0,0,0,0,0,360,5.7,10,10,2.4,430,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.7,-2.8,92,103200,0,0,277,0,0,0,0,0,0,0,350,5.2,10,10,2.4,340,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.3,89,103200,0,0,276,0,0,0,0,0,0,0,360,6.2,10,10,2.4,270,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.3,89,103100,0,0,276,0,0,0,0,0,0,0,360,7.7,10,10,6.4,270,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.3,89,103100,0,0,276,0,0,0,0,0,0,0,360,5.2,10,10,3.2,310,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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.7,-3.3,89,103100,0,0,276,0,0,0,0,0,0,0,350,7.2,10,10,3.2,340,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-3.3,89,103100,0,0,276,0,0,0,0,0,0,0,360,6.2,10,10,3.2,340,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-3.3,85,103100,0,0,279,0,0,0,0,0,0,0,360,6.7,10,10,8.0,370,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.9,85,103100,0,0,276,0,0,0,0,0,0,0,360,6.2,10,10,9.7,400,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.7,-4.4,82,103000,0,0,275,0,0,0,0,0,0,0,360,7.7,10,10,11.3,610,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.7,-4.4,82,103000,0,0,275,0,0,0,0,0,0,0,360,7.2,10,10,11.3,610,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.1,-4.4,78,103000,0,0,278,0,0,0,0,0,0,0,350,7.2,10,10,11.3,610,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.1,-3.9,82,103100,0,0,278,0,0,0,0,0,0,0,360,7.7,10,10,12.9,700,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.1,-4.4,78,103100,7,362,278,5,0,5,0,0,0,0,360,6.7,10,10,12.9,730,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.1,-4.4,78,103100,163,1402,278,48,0,48,5300,0,5300,1470,350,6.7,10,10,16.1,670,9,999999999,80,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.7,-4.4,82,103200,362,1402,275,122,0,122,13400,0,13400,3870,350,6.7,10,10,2.4,460,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.7,-4.4,82,103200,515,1402,275,183,1,183,20200,100,20200,6120,350,7.7,10,10,1.6,310,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.7,-3.9,85,103100,612,1402,276,221,0,221,24500,0,24500,7680,10,6.7,10,10,4.8,610,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.1,-3.9,82,103100,645,1402,278,259,0,259,28500,0,28500,8660,360,7.2,10,10,8.0,610,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.1,-3.9,82,103000,612,1402,278,215,1,215,23900,100,23900,7570,360,6.7,10,10,14.5,670,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.1,-3.9,82,103000,515,1402,278,194,1,194,21300,100,21300,6300,360,6.2,10,10,16.1,490,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.1,-3.9,82,103000,362,1402,278,114,1,114,12600,100,12600,3730,360,6.7,10,10,16.1,580,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-1.1,-3.9,82,103100,163,1402,278,46,1,46,5100,0,5100,1440,10,6.2,10,10,16.1,670,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-0.6,-3.9,78,103100,7,362,280,6,0,6,0,0,0,0,360,6.2,10,10,19.3,730,9,999999999,89,0.0980,0,88,999.000,999.0,99.0 +1978,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,-0.6,-4.4,75,103100,0,0,280,0,0,0,0,0,0,0,350,6.2,10,10,19.3,580,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1978,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,-0.6,-5.6,69,103100,0,0,278,0,0,0,0,0,0,0,350,6.2,10,10,19.3,610,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1978,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,-0.6,-5.6,69,103100,0,0,278,0,0,0,0,0,0,0,360,6.2,10,10,19.3,730,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1978,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,-0.6,-5.6,69,103100,0,0,278,0,0,0,0,0,0,0,340,5.2,10,10,19.3,1490,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1978,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,-0.6,-6.1,66,103100,0,0,278,0,0,0,0,0,0,0,360,5.2,10,10,19.3,820,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1978,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,-0.6,-6.1,66,103100,0,0,278,0,0,0,0,0,0,0,360,4.1,10,10,19.3,820,9,999999999,80,0.0970,0,88,999.000,999.0,99.0 +1978,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,-0.6,-7.2,61,103100,0,0,277,0,0,0,0,0,0,0,360,5.2,10,10,19.3,880,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.1,-7.8,61,103100,0,0,274,0,0,0,0,0,0,0,360,5.7,10,10,19.3,1160,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.1,-7.2,64,103100,0,0,275,0,0,0,0,0,0,0,360,5.2,10,10,19.3,1160,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1978,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.1,-7.8,61,103100,0,0,274,0,0,0,0,0,0,0,360,6.2,10,10,19.3,1160,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.1,-8.3,58,103100,0,0,274,0,0,0,0,0,0,0,360,5.2,10,10,19.3,1160,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.1,-8.3,58,103100,0,0,274,0,0,0,0,0,0,0,360,6.2,10,10,19.3,1160,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1978,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,-1.1,-8.3,58,103000,0,0,274,0,0,0,0,0,0,0,10,4.6,10,10,19.3,1160,9,999999999,69,0.0970,0,88,999.000,999.0,99.0 +1978,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,-8.3,58,103100,6,339,266,0,1,0,0,0,0,0,360,5.2,10,9,24.1,1160,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1978,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,-1.1,-7.8,61,103100,158,1403,274,23,4,23,2700,0,2700,860,350,5.2,10,10,24.1,1250,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1978,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,-1.1,-7.2,64,103000,357,1403,275,99,20,94,11100,1000,10800,3290,360,4.6,10,10,24.1,1250,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1978,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,0.0,-5.6,67,103000,510,1403,281,155,2,154,17300,100,17200,5520,360,4.1,10,10,24.1,1250,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1978,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,0.0,-5.0,69,102900,607,1403,282,225,9,221,24900,800,24600,7640,360,4.6,10,10,24.1,790,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1978,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,0.6,-4.4,70,102800,641,1403,285,232,7,228,25700,600,25400,8090,360,2.6,10,10,24.1,790,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1978,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,1.7,-3.3,70,102700,608,1403,290,218,7,215,24200,600,23900,7530,90,4.6,10,10,24.1,1010,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1978,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,1.7,-3.3,70,102600,512,1403,290,172,2,172,19100,200,19100,5890,70,4.1,10,10,24.1,820,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1978,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,1.7,-2.8,73,102500,359,1403,291,140,2,140,15200,100,15200,4090,100,5.7,10,10,24.1,1100,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1978,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,1.7,-2.8,73,102400,160,1403,291,56,1,56,6100,0,6100,1590,150,5.2,10,10,24.1,1010,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1978,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,1.7,-3.3,70,102300,6,339,290,4,0,4,0,0,0,0,110,5.2,10,10,24.1,730,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1978,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,1.7,-3.3,70,102200,0,0,290,0,0,0,0,0,0,0,120,4.6,10,10,24.1,730,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1978,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,1.7,-2.8,73,102100,0,0,291,0,0,0,0,0,0,0,130,5.2,10,10,19.3,730,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1978,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,1.7,-2.2,76,102000,0,0,292,0,0,0,0,0,0,0,150,5.2,10,10,19.3,700,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1978,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,2.2,-1.1,79,101800,0,0,295,0,0,0,0,0,0,0,120,7.7,10,10,19.3,1160,9,999999999,100,0.0970,0,88,999.000,999.0,99.0 +1978,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.8,0.0,82,101600,0,0,299,0,0,0,0,0,0,0,120,8.8,10,10,19.3,1070,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1978,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.8,1.1,89,101600,0,0,300,0,0,0,0,0,0,0,140,7.7,10,10,16.1,520,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1978,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,2.8,1.7,92,101400,0,0,300,0,0,0,0,0,0,0,140,7.2,10,10,16.1,430,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1978,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,2.8,2.2,96,101200,0,0,301,0,0,0,0,0,0,0,160,3.6,10,10,16.1,210,9,999999999,120,0.0960,0,88,999.000,999.0,99.0 +1978,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.8,2.2,96,101000,0,0,301,0,0,0,0,0,0,0,20,2.1,10,10,16.1,520,9,999999999,120,0.0960,0,88,999.000,999.0,99.0 +1978,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,4.4,3.9,96,100800,0,0,310,0,0,0,0,0,0,0,130,6.2,10,10,12.9,670,9,999999999,139,0.0960,0,88,999.000,999.0,99.0 +1978,11,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,100700,0,0,314,0,0,0,0,0,0,0,130,5.7,10,10,9.7,310,9,999999999,150,0.0960,0,88,999.000,999.0,99.0 +1978,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,5.6,100,100500,0,0,317,0,0,0,0,0,0,0,130,5.7,10,10,6.4,370,9,999999999,150,0.0960,0,88,999.000,999.0,99.0 +1978,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,5.6,100,100500,0,0,317,0,0,0,0,0,0,0,130,3.1,10,10,6.4,310,9,999999999,150,0.0960,0,88,999.000,999.0,99.0 +1978,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.1,100,100400,5,292,320,1,0,1,0,0,0,0,120,1.0,10,10,8.0,180,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1978,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.1,6.1,100,100300,153,1403,320,21,1,21,2500,0,2500,790,40,2.6,10,10,8.0,310,9,999999999,150,0.0880,0,88,999.000,999.0,99.0 +1978,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,6.7,6.7,100,100400,352,1403,323,60,1,60,7000,0,7000,2350,360,3.1,10,10,4.0,150,9,999999999,160,0.0880,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,100300,506,1403,326,95,1,94,11000,100,10900,3870,60,4.1,10,10,6.4,150,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,7.2,7.2,100,100200,603,1403,326,121,1,121,14100,100,14100,5090,50,4.1,10,10,6.4,150,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,7.8,7.8,100,100100,636,1403,330,121,1,120,14100,100,14100,5180,50,4.6,10,10,1.6,150,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1978,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,8.3,8.3,100,100100,604,1403,332,113,0,113,13200,0,13200,4830,30,3.1,10,10,3.2,150,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1978,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,5.0,3.9,93,100100,508,1403,312,93,0,92,10700,0,10700,3810,320,6.2,10,10,4.0,150,9,999999999,139,0.0880,0,88,999.000,999.0,99.0 +1978,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,3.3,96,100200,355,1403,307,61,1,61,7100,0,7100,2390,320,6.2,10,10,4.8,150,9,999999999,129,0.0880,0,88,999.000,999.0,99.0 +1978,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,5.0,3.9,93,100200,158,1403,312,23,1,23,2700,0,2700,850,320,5.2,10,10,2.4,150,9,999999999,139,0.0880,0,88,999.000,999.0,99.0 +1978,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,5.0,3.9,93,100200,6,339,312,2,0,2,0,0,0,0,310,4.1,10,10,6.4,150,9,999999999,139,0.0880,0,88,999.000,999.0,99.0 +1978,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,5.0,3.3,89,100200,0,0,312,0,0,0,0,0,0,0,310,5.2,10,10,19.3,1070,9,999999999,129,0.0960,0,88,999.000,999.0,99.0 +1978,11,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,100200,0,0,312,0,0,0,0,0,0,0,310,3.6,10,10,24.1,1830,9,999999999,129,0.0960,0,88,999.000,999.0,99.0 +1978,11,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,100300,0,0,311,0,0,0,0,0,0,0,290,5.2,10,10,24.1,1680,9,999999999,129,0.0960,0,88,999.000,999.0,99.0 +1978,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,2.8,86,100300,0,0,311,0,0,0,0,0,0,0,280,4.1,10,10,24.1,1980,9,999999999,129,0.0960,0,88,999.000,999.0,99.0 +1978,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.0,2.8,86,100300,0,0,311,0,0,0,0,0,0,0,300,5.2,10,10,24.1,2130,9,999999999,129,0.0960,0,88,999.000,999.0,99.0 +1978,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,5.0,1.7,79,100300,0,0,310,0,0,0,0,0,0,0,300,6.7,10,10,24.1,2130,9,999999999,120,0.0960,0,88,999.000,999.0,99.0 +1978,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,5.0,1.1,76,100300,0,0,284,0,0,0,0,0,0,0,320,5.2,5,5,24.1,77777,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1978,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,4.4,1.1,79,100300,0,0,277,0,0,0,0,0,0,0,310,3.6,3,3,24.1,77777,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1978,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,4.4,1.1,79,100300,0,0,307,0,0,0,0,0,0,0,310,5.2,10,10,24.1,1520,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1978,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,4.4,1.1,79,100300,0,0,287,0,0,0,0,0,0,0,340,4.1,7,7,24.1,730,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1978,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,3.3,0.0,79,100300,0,0,276,0,0,0,0,0,0,0,330,3.6,5,5,24.1,77777,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1978,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,3.3,-0.6,76,100300,0,0,300,0,0,0,0,0,0,0,330,5.2,10,10,24.1,910,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1978,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,2.8,-2.2,70,100400,0,0,270,0,0,0,0,0,0,0,320,6.2,4,4,24.1,77777,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1978,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.7,-4.4,64,100500,4,269,259,3,11,2,0,0,0,0,320,6.7,2,2,24.1,77777,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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.7,-5.0,62,100500,149,1404,261,61,264,33,6200,15000,4600,570,310,6.7,3,3,24.1,77777,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,1.7,-4.4,64,100500,347,1404,275,144,193,96,15200,16100,11200,1880,320,6.2,8,8,24.1,1250,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,1.7,-4.4,64,100500,501,1404,266,249,297,142,26400,28400,16200,2930,300,7.7,5,5,24.1,77777,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,2.2,-5.0,59,100500,598,1404,269,332,432,146,34800,42000,16800,2920,320,7.2,6,6,24.1,1220,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,2.2,-5.0,59,100400,632,1404,267,371,477,154,38900,46900,17700,3130,310,7.2,5,5,24.1,77777,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,2.2,-6.1,55,100400,600,1404,266,289,282,167,30800,28300,18600,3560,300,8.2,5,5,24.1,77777,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,2.2,-6.1,55,100400,505,1404,259,314,641,81,32600,59600,11100,1580,310,7.7,2,2,24.1,77777,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,2.2,-7.2,50,100400,353,1404,258,204,573,57,20900,48000,8800,1060,300,8.2,2,2,24.1,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1978,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,2.2,-8.3,46,100500,155,1404,257,69,321,32,6900,18800,4800,560,320,8.8,2,2,24.1,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1978,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,1.7,-8.3,48,100500,5,316,247,7,25,4,0,0,0,0,330,6.2,0,0,24.1,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1978,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,1.1,-8.3,50,100600,0,0,245,0,0,0,0,0,0,0,330,6.7,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1978,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,0.6,-8.3,52,100600,0,0,251,0,0,0,0,0,0,0,320,5.2,2,2,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1978,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,-0.6,-8.9,54,100700,0,0,238,0,0,0,0,0,0,0,320,7.2,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1978,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,-1.1,-10.0,51,100700,0,0,236,0,0,0,0,0,0,0,310,7.2,0,0,24.1,77777,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1978,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,-1.7,-11.1,49,100800,0,0,233,0,0,0,0,0,0,0,310,6.2,0,0,24.1,77777,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1978,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,-2.8,-11.1,53,100800,0,0,229,0,0,0,0,0,0,0,290,5.7,0,0,24.1,77777,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1978,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,-3.3,-11.7,53,100800,0,0,227,0,0,0,0,0,0,0,300,8.8,0,0,24.1,77777,9,999999999,60,0.0960,0,88,999.000,999.0,99.0 +1978,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,-3.9,-12.2,53,100800,0,0,224,0,0,0,0,0,0,0,310,8.8,0,0,24.1,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1978,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,-4.4,-12.8,53,100900,0,0,222,0,0,0,0,0,0,0,300,6.7,0,0,24.1,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1978,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,-4.4,-12.8,53,100900,0,0,222,0,0,0,0,0,0,0,290,8.8,0,0,24.1,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1978,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,-5.6,-15.0,48,101000,0,0,216,0,0,0,0,0,0,0,300,9.8,0,0,24.1,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1978,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,-6.1,-15.6,48,101100,0,0,214,0,0,0,0,0,0,0,300,9.8,0,0,24.1,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1978,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,-6.7,-15.6,50,101200,0,0,212,0,0,0,0,0,0,0,310,6.7,0,0,24.1,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1978,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,-6.7,-15.6,50,101200,3,246,212,2,7,1,0,0,0,0,300,7.2,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1978,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,-6.1,-15.6,48,101300,144,1404,214,59,289,29,6000,16400,4300,510,280,8.2,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1978,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.6,-15.6,46,101400,343,1404,216,195,589,50,20300,49100,8300,950,310,8.2,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1978,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,-4.4,-16.1,40,101400,497,1404,219,324,730,64,33500,67600,9400,1280,310,8.2,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1978,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,-3.9,-16.7,37,101500,594,1404,220,410,791,73,42700,75800,10500,1510,300,8.2,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1978,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.3,-16.7,35,101500,628,1404,222,442,811,76,46100,78500,10800,1600,290,8.8,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1978,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.8,-17.2,32,101500,597,1404,223,416,799,73,43200,76700,10500,1510,310,8.2,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1978,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,-2.2,-17.2,31,101500,502,1404,225,332,740,64,34200,68700,9500,1280,310,7.7,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1978,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,-17.8,28,101600,350,1404,226,206,612,51,20800,51700,7800,950,310,7.7,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1978,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,-1.7,-18.3,27,101700,153,1404,230,67,318,31,6700,18500,4700,540,310,5.7,1,1,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1978,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,-2.2,-18.3,28,101700,5,293,224,4,12,3,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,40,0.0900,0,88,999.000,999.0,99.0 +1978,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,-2.8,-17.8,31,101800,0,0,223,0,0,0,0,0,0,0,300,8.8,0,0,24.1,77777,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-3.9,-17.8,33,101900,0,0,219,0,0,0,0,0,0,0,310,7.7,0,0,24.1,77777,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-5.0,-18.3,35,102000,0,0,215,0,0,0,0,0,0,0,300,7.2,0,0,24.1,77777,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-5.6,-18.3,36,102000,0,0,213,0,0,0,0,0,0,0,320,8.8,0,0,24.1,77777,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-7.2,-17.8,43,102100,0,0,209,0,0,0,0,0,0,0,320,6.7,0,0,24.1,77777,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-7.8,-17.8,45,102200,0,0,207,0,0,0,0,0,0,0,330,6.7,0,0,24.1,77777,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-17.2,47,102400,0,0,207,0,0,0,0,0,0,0,320,6.2,4,0,24.1,77777,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-7.8,-17.2,47,102400,0,0,220,0,0,0,0,0,0,0,320,6.2,9,5,24.1,7620,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-7.8,-17.2,47,102500,0,0,228,0,0,0,0,0,0,0,320,4.6,10,8,24.1,7620,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-7.8,-17.2,47,102500,0,0,239,0,0,0,0,0,0,0,350,4.6,10,10,24.1,5490,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-7.8,-17.2,47,102600,0,0,239,0,0,0,0,0,0,0,340,4.1,10,10,24.1,4570,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-7.8,-16.7,49,102700,0,0,240,0,0,0,0,0,0,0,350,3.6,10,10,24.1,4570,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-7.2,-16.7,47,102800,0,0,242,0,0,0,0,0,0,0,340,3.6,10,10,24.1,4570,9,999999999,40,0.0950,0,88,999.000,999.0,99.0 +1978,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,-7.2,-16.1,49,102900,2,222,242,2,0,2,0,0,0,0,330,3.1,10,10,24.1,4570,9,999999999,50,0.0420,0,88,999.000,999.0,99.0 +1978,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,-7.2,-16.1,49,102800,140,1405,242,34,1,34,3800,0,3800,1110,10,2.6,10,10,24.1,1680,9,999999999,50,0.0420,0,88,999.000,999.0,99.0 +1978,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,-6.7,-15.6,50,102900,338,1405,245,83,17,78,9300,800,9100,2820,330,3.1,10,10,24.1,1680,9,999999999,50,0.0420,0,88,999.000,999.0,99.0 +1978,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,-6.1,-14.4,52,103000,492,1405,248,165,1,164,18200,100,18200,5580,340,4.1,10,10,20.9,1310,9,999999999,50,0.0420,0,88,999.000,999.0,99.0 +1978,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,-6.1,-12.8,60,102900,590,1405,250,165,5,163,18700,400,18500,6240,340,3.6,10,10,20.9,1160,9,999999999,50,0.0420,0,88,999.000,999.0,99.0 +1978,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,-6.1,-11.1,68,102800,624,1405,251,172,3,170,19400,200,19300,6640,350,3.1,10,10,16.1,490,9,999999999,60,0.0420,0,88,999.000,999.0,99.0 +1978,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.0,-8.9,74,102700,593,1405,258,170,3,168,19100,200,19000,6390,360,3.6,10,10,19.3,520,9,999999999,69,0.0420,0,88,999.000,999.0,99.0 +1978,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,-4.4,-6.1,88,102600,499,1405,263,178,4,176,19500,300,19400,5850,20,3.1,10,10,8.0,520,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1978,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,-3.9,-5.0,92,102500,347,1405,266,119,1,119,13000,100,13000,3710,20,2.6,10,10,4.8,520,9,999999999,80,0.0420,0,88,999.000,999.0,99.0 +1978,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,-1.7,-2.8,92,102500,151,1405,277,43,0,43,4700,0,4700,1330,100,7.2,10,10,3.2,490,9,999999999,89,0.0420,0,88,999.000,999.0,99.0 +1978,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,-1.7,-1.7,100,102300,4,293,278,4,0,4,0,0,0,0,100,8.2,10,10,1.6,310,9,999999999,100,0.0420,0,88,999.000,999.0,99.0 +1978,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,-1.7,-1.7,100,102200,0,0,278,0,0,0,0,0,0,0,100,9.3,10,10,1.3,180,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1978,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.1,-1.3,98,102100,0,0,281,0,0,0,0,0,0,0,110,10.3,10,10,0.8,180,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1978,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,0.6,-0.9,89,101900,0,0,288,0,0,0,0,0,0,0,110,12.4,10,10,4.0,310,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1978,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,0.6,-0.5,92,101700,0,0,289,0,0,0,0,0,0,0,110,10.3,10,10,6.4,1520,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1978,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,0.6,-0.2,94,101600,0,0,289,0,0,0,0,0,0,0,100,10.8,10,10,4.8,210,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1978,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,1.7,0.2,90,101400,0,0,294,0,0,0,0,0,0,0,90,10.8,10,10,6.4,270,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1978,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,2.2,0.6,89,101400,0,0,297,0,0,0,0,0,0,0,70,7.7,10,10,6.4,180,9,999999999,120,0.0950,0,88,999.000,999.0,99.0 +1978,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,2.2,1.1,92,101200,0,0,297,0,0,0,0,0,0,0,40,7.2,10,10,6.4,180,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1978,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,2.2,1.7,96,101100,0,0,298,0,0,0,0,0,0,0,30,7.2,10,10,11.3,180,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1978,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,-1.1,-2.8,89,101100,0,0,279,0,0,0,0,0,0,0,330,6.2,10,10,11.3,150,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1978,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.3,-5.0,88,101100,0,0,268,0,0,0,0,0,0,0,330,6.2,10,10,6.4,120,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1978,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,-3.3,-5.6,85,101100,0,0,268,0,0,0,0,0,0,0,340,5.2,10,10,8.0,120,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1978,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,-3.3,-5.0,88,101100,0,0,268,0,0,0,0,0,0,0,340,5.2,10,10,9.7,120,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1978,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,-3.3,-4.4,92,101100,2,199,269,2,0,2,0,0,0,0,340,4.6,10,10,1.6,90,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,-3.9,-5.6,88,101100,135,1405,265,26,0,26,2900,0,2900,910,330,4.1,10,10,1.3,90,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,-5.6,88,101100,334,1405,265,120,1,120,13100,100,13100,3620,30,3.6,10,10,1.6,120,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,-3.9,-5.0,92,101000,488,1405,266,104,1,104,12000,100,11900,4110,330,4.1,10,10,0.8,90,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,-3.9,-4.4,96,100900,586,1405,266,209,0,209,23100,0,23100,7210,290,3.6,10,10,3.2,150,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,-3.9,-4.4,96,100900,621,1405,266,225,0,225,24900,0,24900,7830,300,4.1,10,10,4.8,180,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1978,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,-3.9,-3.9,100,100800,590,1405,267,233,0,233,25600,0,25600,7640,260,2.6,10,10,6.4,180,9,999999999,89,0.0630,0,88,999.000,999.0,99.0 +1978,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,-1.1,-2.2,92,100700,496,1405,280,197,1,197,21500,100,21500,6130,230,3.1,10,10,6.4,180,9,999999999,89,0.0630,0,88,999.000,999.0,99.0 +1978,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,1.1,0.0,92,100700,345,1405,291,116,1,115,12600,100,12600,3630,240,4.1,10,10,6.4,180,9,999999999,110,0.0630,0,88,999.000,999.0,99.0 +1978,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,2.8,1.1,89,100700,149,1405,285,51,9,50,5500,100,5500,1440,250,7.2,8,8,11.3,1520,9,999999999,120,0.0630,0,88,999.000,999.0,99.0 +1978,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,2.8,1.1,89,100800,4,269,268,3,13,1,0,0,0,0,240,8.2,2,2,16.1,77777,9,999999999,120,0.0630,0,88,999.000,999.0,99.0 +1978,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,3.3,1.1,86,101000,0,0,267,0,0,0,0,0,0,0,270,7.7,1,1,19.3,77777,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1978,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.3,0.6,82,101100,0,0,266,0,0,0,0,0,0,0,270,8.8,1,1,24.1,77777,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1978,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,3.3,-1.1,73,101400,0,0,260,0,0,0,0,0,0,0,280,10.3,0,0,24.1,77777,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1978,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,2.8,-2.8,67,101600,0,0,256,0,0,0,0,0,0,0,290,8.8,0,0,24.1,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1978,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,2.8,-3.3,65,101700,0,0,256,0,0,0,0,0,0,0,280,8.8,0,0,24.1,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1978,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,2.8,-3.9,62,101800,0,0,255,0,0,0,0,0,0,0,290,8.8,0,0,24.1,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1978,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,2.8,-3.9,62,101900,0,0,255,0,0,0,0,0,0,0,290,6.7,0,0,24.1,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1978,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,1.7,-3.9,67,101900,0,0,251,0,0,0,0,0,0,0,270,6.7,0,0,24.1,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1978,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,1.7,-4.4,64,102100,0,0,251,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1978,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,1.7,-5.6,59,102200,0,0,250,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1978,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,0.6,-5.0,67,102300,0,0,246,0,0,0,0,0,0,0,240,4.6,0,0,24.1,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1978,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,0.6,-4.4,70,102500,0,0,247,0,0,0,0,0,0,0,240,4.6,0,0,24.1,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1978,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,1.1,-4.4,67,102600,0,0,248,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1978,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,1.1,-4.4,67,102600,1,176,253,4,16,1,0,0,0,0,280,4.1,1,1,24.1,77777,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1978,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,1.1,-3.3,73,102700,131,1406,249,59,421,20,6000,25500,3600,390,240,3.6,0,0,24.1,77777,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1978,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,2.2,-2.8,70,102800,329,1406,254,195,677,35,20500,57500,7000,810,240,4.1,1,0,24.1,77777,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1978,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,3.3,-2.2,67,102800,484,1406,259,320,744,62,33000,68600,9300,1240,240,3.1,5,0,19.3,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1978,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,4.4,-2.2,62,102700,582,1406,263,406,813,67,42600,77900,10200,1420,230,2.1,4,0,19.3,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1978,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,5.0,-2.2,60,102600,617,1406,265,436,871,50,45800,83700,8900,1270,130,3.1,0,0,19.3,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1978,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,5.0,-1.7,62,102500,587,1406,265,411,828,61,42800,78900,9700,1320,140,3.6,3,0,19.3,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1978,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,5.0,-1.7,62,102500,493,1406,265,330,690,85,34000,63500,11700,1630,150,3.1,9,0,19.3,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1978,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,4.4,-2.8,60,102400,343,1406,271,189,449,77,19600,36800,10600,1410,180,4.1,10,2,24.1,77777,9,999999999,89,0.0400,0,88,999.000,999.0,99.0 +1978,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,3.9,-2.2,65,102400,147,1406,287,49,45,44,5300,2500,5000,920,190,4.6,8,8,24.1,1160,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1978,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,3.3,-1.7,70,102200,4,269,285,4,6,3,0,0,0,0,150,4.1,8,8,24.1,1250,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1978,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,3.9,-1.7,67,102100,0,0,302,0,0,0,0,0,0,0,150,5.2,10,10,24.1,1160,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1978,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,3.3,-1.7,70,102000,0,0,299,0,0,0,0,0,0,0,150,6.2,10,10,24.1,790,9,999999999,100,0.0940,0,88,999.000,999.0,99.0 +1978,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,3.3,-0.6,76,101800,0,0,300,0,0,0,0,0,0,0,140,7.7,10,10,24.1,730,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1978,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,3.9,0.0,76,101800,0,0,303,0,0,0,0,0,0,0,170,5.2,10,10,24.1,670,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1978,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,3.9,0.6,79,101700,0,0,304,0,0,0,0,0,0,0,160,4.1,10,10,19.3,670,9,999999999,110,0.0940,0,88,999.000,999.0,99.0 +1978,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,3.9,1.7,86,101500,0,0,305,0,0,0,0,0,0,0,150,4.1,10,10,19.3,610,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1978,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,3.9,2.2,89,101400,0,0,306,0,0,0,0,0,0,0,150,3.1,10,10,8.0,400,9,999999999,120,0.0940,0,88,999.000,999.0,99.0 +1978,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.9,2.8,93,101200,0,0,306,0,0,0,0,0,0,0,150,1.0,10,10,6.4,180,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1978,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.9,3.3,96,101000,0,0,307,0,0,0,0,0,0,0,340,2.6,10,10,3.2,120,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1978,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,3.9,3.3,96,100800,0,0,307,0,0,0,0,0,0,0,10,2.1,10,10,3.2,210,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1978,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,3.3,96,100600,0,0,307,0,0,0,0,0,0,0,330,3.1,10,10,3.2,210,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1978,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,3.3,2.8,96,100600,0,0,304,0,0,0,0,0,0,0,330,4.6,10,10,3.2,270,9,999999999,129,0.0930,0,88,999.000,999.0,99.0 +1978,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,3.3,2.2,93,100500,0,0,303,0,0,0,0,0,0,0,270,2.6,10,10,11.3,760,9,999999999,120,0.0930,0,88,999.000,999.0,99.0 +1978,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,3.9,2.8,93,100600,1,152,292,0,0,0,0,0,0,0,270,2.6,8,8,9.7,3660,9,999999999,129,0.1300,0,88,999.000,999.0,99.0 +1978,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,2.8,89,100700,127,1406,289,28,18,26,3000,1100,2900,640,270,4.6,7,7,11.3,3660,9,999999999,129,0.1300,0,88,999.000,999.0,99.0 +1978,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,4.4,2.8,89,100700,325,1406,281,122,172,82,12900,13900,9700,1570,260,5.2,5,4,12.9,77777,9,999999999,129,0.1300,0,88,999.000,999.0,99.0 +1978,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,6.1,3.9,86,100800,480,1406,280,275,557,84,28500,50900,11000,1590,250,6.2,1,1,12.9,77777,9,999999999,139,0.1300,0,88,999.000,999.0,99.0 +1978,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,7.8,3.3,74,100800,578,1406,281,367,675,87,38400,64700,11700,1760,260,7.7,0,0,16.1,77777,9,999999999,129,0.1300,0,88,999.000,999.0,99.0 +1978,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,8.9,2.8,66,100700,614,1406,285,403,690,99,42000,66700,12800,2010,280,7.7,2,0,16.1,77777,9,999999999,129,0.1300,0,88,999.000,999.0,99.0 +1978,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,9.4,1.7,59,100700,584,1406,292,357,576,115,36600,54600,13800,2220,290,9.3,7,1,19.3,77777,9,999999999,120,0.1300,0,88,999.000,999.0,99.0 +1978,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,8.9,0.6,56,100700,491,1406,292,278,448,119,28900,41500,14300,2280,290,7.7,9,2,19.3,77777,9,999999999,110,0.1300,0,88,999.000,999.0,99.0 +1978,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,8.9,1.1,59,100800,340,1406,296,139,202,89,14600,16700,10600,1720,270,7.7,9,3,19.3,77777,9,999999999,120,0.1300,0,88,999.000,999.0,99.0 +1978,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,8.3,0.6,58,100800,145,1406,297,48,63,41,5200,3500,4800,860,280,8.2,8,5,24.1,9140,9,999999999,110,0.1300,0,88,999.000,999.0,99.0 +1978,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.8,1.1,63,100900,4,270,302,1,0,1,0,0,0,0,280,5.7,7,7,24.1,9140,9,999999999,120,0.1300,0,88,999.000,999.0,99.0 +1978,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,7.2,1.1,65,101000,0,0,289,0,0,0,0,0,0,0,280,4.6,4,3,24.1,77777,9,999999999,120,0.0930,0,88,999.000,999.0,99.0 +1978,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,1.1,68,101100,0,0,294,0,0,0,0,0,0,0,290,4.1,7,6,24.1,4570,9,999999999,120,0.0930,0,88,999.000,999.0,99.0 +1978,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,5.6,1.1,73,101200,0,0,297,0,0,0,0,0,0,0,300,5.2,8,8,24.1,4570,9,999999999,120,0.0930,0,88,999.000,999.0,99.0 +1978,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.0,0.0,70,101200,0,0,308,0,0,0,0,0,0,0,290,5.2,10,10,24.1,9140,9,999999999,110,0.0930,0,88,999.000,999.0,99.0 +1978,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,5.5,0.1,68,101300,0,0,311,0,0,0,0,0,0,0,280,5.6,10,10,24.1,4570,9,999999999,100,0.0930,0,88,999.000,999.0,99.0 +1978,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,5.9,0.2,57,101300,0,0,289,0,0,0,0,0,0,0,300,6.1,7,6,24.1,9140,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1978,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,6.4,0.3,55,101400,0,0,278,0,0,0,0,0,0,0,290,6.5,3,1,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +2003,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,6.9,0.3,58,100600,0,0,289,0,0,0,0,0,0,0,190,6.9,9,4,16.0,3658,9,999999999,110,0.0980,0,88,0.160,0.0,1.0 +2003,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,7.4,0.4,64,100500,0,0,291,0,0,0,0,0,0,0,180,7.3,10,4,16.0,3658,9,999999999,110,0.0980,0,88,0.160,0.0,1.0 +2003,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,7.8,0.5,55,100400,0,0,321,0,0,0,0,0,0,0,210,7.8,10,10,16.0,3048,9,999999999,120,0.0980,0,88,0.160,0.0,1.0 +2003,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,8.3,0.6,58,100300,0,0,308,0,0,0,0,0,0,0,220,8.2,8,8,16.0,2896,9,999999999,120,0.0980,0,88,0.160,0.0,1.0 +2003,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,7.8,0.6,60,100300,0,0,288,0,0,0,0,0,0,0,220,8.8,2,2,16.0,77777,9,999999999,120,0.0980,0,88,0.160,0.0,1.0 +2003,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,7.2,0.6,63,100300,0,0,299,0,0,0,0,0,0,0,230,6.7,8,7,16.0,77777,9,999999999,120,0.0980,0,88,0.160,0.0,1.0 +2003,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,7.2,0.0,60,100200,1,129,295,0,0,0,0,0,0,0,230,6.7,6,6,16.0,6096,9,999999999,120,0.0980,0,88,0.160,0.0,1.0 +2003,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.8,-0.6,55,100200,123,1407,294,0,0,0,0,0,0,0,230,6.2,8,5,16.0,3658,9,999999999,110,0.0980,0,88,0.160,0.0,1.0 +2003,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,8.9,-1.1,49,100200,321,1407,309,30,0,30,3600,0,3600,1270,250,8.2,9,8,16.0,2438,9,999999999,110,0.0980,0,88,0.160,0.0,1.0 +2003,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,8.3,-2.8,44,100300,476,1407,305,53,0,53,6400,0,6400,2330,260,6.7,9,8,16.0,1494,9,999999999,100,0.0980,0,88,0.160,0.0,1.0 +2003,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,8.3,-2.2,46,100200,575,1407,297,119,0,119,13800,0,13800,4910,270,6.7,6,6,16.0,4267,9,999999999,100,0.0980,0,88,0.160,0.0,1.0 +2003,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,9.4,-3.9,37,100200,611,1407,295,423,565,176,43600,55000,19600,3610,270,10.3,4,4,16.0,77777,9,999999999,100,0.0980,0,88,0.160,0.0,1.0 +2003,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,8.3,-3.9,40,100300,581,1407,293,378,655,106,39200,62300,13300,2080,300,11.3,5,5,16.0,77777,9,999999999,89,0.0980,0,88,0.160,0.0,1.0 +2003,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,8.3,-5.6,35,100400,488,1407,283,299,575,99,30700,52300,12400,1830,290,8.2,2,2,16.0,77777,9,999999999,89,0.0980,0,88,0.160,0.0,1.0 +2003,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,4.4,-2.2,61,100600,339,1407,276,197,517,72,20000,42000,9900,1270,300,9.8,4,4,16.0,77777,9,999999999,80,0.0980,0,88,0.160,0.0,1.0 +2003,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,6.1,-8.9,30,100700,144,1407,276,61,305,30,6200,17200,4400,520,280,11.3,4,4,16.0,4267,9,999999999,69,0.0980,0,88,0.160,0.0,1.0 +2003,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,5.0,-9.4,31,100800,3,246,269,0,0,0,0,0,0,0,280,8.8,3,3,16.0,77777,9,999999999,60,0.0980,0,88,0.160,0.0,1.0 +2003,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,5.0,-8.3,35,101000,0,0,270,0,0,0,0,0,0,0,260,6.2,3,3,16.0,77777,9,999999999,60,0.0980,0,88,0.160,0.0,1.0 +2003,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,3.9,-9.4,34,101000,0,0,254,0,0,0,0,0,0,0,280,8.2,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,3.3,-9.4,35,101200,0,0,252,0,0,0,0,0,0,0,270,8.8,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,2.8,-8.9,38,101200,0,0,250,0,0,0,0,0,0,0,270,7.7,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,2.2,-10.6,34,101300,0,0,247,0,0,0,0,0,0,0,280,7.7,0,0,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,1.7,-8.9,41,101300,0,0,246,0,0,0,0,0,0,0,250,8.2,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,1.1,-7.8,48,101300,0,0,245,0,0,0,0,0,0,0,250,6.2,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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.1,-6.1,55,101200,0,0,247,0,0,0,0,0,0,0,260,7.2,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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.0,-5.6,62,101300,0,0,243,0,0,0,0,0,0,0,230,6.7,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,0.0,-5.6,62,101200,0,0,243,0,0,0,0,0,0,0,230,6.2,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,0.0,-6.7,57,101200,0,0,242,0,0,0,0,0,0,0,230,6.7,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,-6.7,57,101200,0,0,242,0,0,0,0,0,0,0,240,9.3,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,0.6,-6.7,54,101200,0,0,245,0,0,0,0,0,0,0,250,7.7,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.7,-3.9,83,101400,0,106,276,0,0,0,0,0,0,0,310,6.2,10,10,0.8,1463,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.7,-6.1,69,101500,119,1407,247,0,0,0,0,0,0,0,300,5.2,3,3,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,0.0,-6.7,57,101500,317,1407,255,190,534,69,19300,42300,9700,1200,290,4.6,4,4,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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.0,-11.7,37,101500,472,1407,261,313,476,152,31700,43400,17100,3010,290,11.3,8,8,16.0,1829,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-2.8,-7.8,65,101600,571,1407,267,214,67,186,23400,6500,20700,5090,330,7.7,10,10,14.4,1250,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.7,-7.8,59,101500,608,1407,259,272,150,207,29400,14900,22900,4940,320,5.2,8,8,16.0,2438,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-2.8,-7.8,65,101500,578,1407,267,122,0,122,14100,0,14100,5020,300,8.2,10,10,1.6,579,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.1,-12.8,36,101500,486,1407,247,122,6,120,13800,400,13700,4550,270,8.2,6,5,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-2.2,-13.3,38,101700,337,1407,264,172,295,101,18000,24200,12200,2020,310,9.8,10,10,16.0,1676,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-4.4,-12.8,48,101900,142,1407,233,61,246,36,6300,12800,5000,650,320,8.8,4,4,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.0,-16.1,37,102000,3,246,238,0,0,0,0,0,0,0,300,8.8,8,8,16.0,1524,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.6,-16.7,37,102100,0,0,226,0,0,0,0,0,0,0,320,8.2,4,4,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-17.8,37,102200,0,0,210,0,0,0,0,0,0,0,310,9.3,0,0,16.0,77777,9,999999999,20,0.0980,0,88,0.160,0.0,1.0 +2003,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,-7.2,-18.9,35,102300,0,0,208,0,0,0,0,0,0,0,320,11.8,0,0,16.0,77777,9,999999999,20,0.0980,0,88,0.160,0.0,1.0 +2003,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,-7.2,-18.9,35,102300,0,0,208,0,0,0,0,0,0,0,310,11.8,0,0,16.0,77777,9,999999999,20,0.0980,0,88,0.160,0.0,1.0 +2003,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,-7.8,-18.9,36,102300,0,0,206,0,0,0,0,0,0,0,310,9.3,0,0,16.0,77777,9,999999999,20,0.0980,0,88,0.160,0.0,1.0 +2003,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,-7.8,-18.9,36,102400,0,0,206,0,0,0,0,0,0,0,310,7.7,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-8.3,-18.3,40,102400,0,0,205,0,0,0,0,0,0,0,310,7.7,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-8.9,-18.3,42,102400,0,0,203,0,0,0,0,0,0,0,310,8.8,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-8.9,-18.3,42,102400,0,0,203,0,0,0,0,0,0,0,290,9.3,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-8.9,-17.8,44,102500,0,0,203,0,0,0,0,0,0,0,300,9.8,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-8.9,-17.8,44,102500,0,0,203,0,0,0,0,0,0,0,310,8.8,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-8.9,-17.8,44,102600,0,0,203,0,0,0,0,0,0,0,300,7.7,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-8.9,-17.8,44,102700,0,0,203,0,0,0,0,0,0,0,300,7.2,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-8.9,-17.2,47,102700,0,59,204,0,0,0,0,0,0,0,320,7.2,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-8.3,-17.2,45,102800,115,1408,206,0,0,0,0,0,0,0,300,5.7,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-17.2,41,102800,313,1408,209,184,496,73,18500,38900,9800,1250,300,8.2,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.6,-17.2,35,102800,468,1408,214,307,619,100,31300,55500,12700,1820,320,8.2,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-4.4,-16.7,33,102800,568,1408,219,371,613,122,37900,57500,14600,2300,310,7.7,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-2.8,-16.1,31,102700,605,1408,224,381,529,152,39800,51500,17600,3050,300,7.7,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.7,-16.1,28,102700,576,1408,228,372,643,108,38500,61000,13400,2100,290,7.2,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.1,-16.1,27,102700,484,1408,230,299,593,94,30700,54000,12100,1750,300,7.2,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.1,-16.1,27,102700,335,1408,230,187,494,68,19000,40100,9400,1210,300,6.2,0,0,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.7,-16.1,28,102700,141,1408,228,57,299,27,5800,16800,4100,480,320,6.2,0,0,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-2.8,-15.6,32,102800,3,246,225,0,0,0,0,0,0,0,290,8.8,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-2.8,-15.6,32,102800,0,0,225,0,0,0,0,0,0,0,300,9.3,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-15.0,36,102900,0,0,224,0,0,0,0,0,0,0,290,5.2,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-15.0,37,102900,0,0,222,0,0,0,0,0,0,0,280,6.7,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-4.4,-14.4,41,102900,0,0,221,0,0,0,0,0,0,0,270,7.2,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-4.4,-13.9,43,102900,0,0,221,0,0,0,0,0,0,0,280,7.2,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.0,-13.3,48,102900,0,0,220,0,0,0,0,0,0,0,270,5.7,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.0,-13.3,48,102800,0,0,220,0,0,0,0,0,0,0,280,6.2,0,0,16.0,77777,9,999999999,30,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.6,-13.3,51,102800,0,0,218,0,0,0,0,0,0,0,290,5.7,0,0,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.6,-12.8,53,102900,0,0,218,0,0,0,0,0,0,0,280,5.2,0,0,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.6,-12.8,53,102800,0,0,218,0,0,0,0,0,0,0,290,4.1,0,0,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.6,-11.7,59,102800,0,0,219,0,0,0,0,0,0,0,280,4.6,0,0,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.0,-11.7,56,102800,0,0,234,0,0,0,0,0,0,0,270,6.7,5,5,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,-4.4,-11.1,56,102900,0,0,258,0,0,0,0,0,0,0,260,5.7,10,10,16.0,1341,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,-4.4,-10.6,58,102800,0,35,235,0,0,0,0,0,0,0,280,2.1,4,4,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,-9.4,59,102800,111,1408,251,0,0,0,0,0,0,0,280,3.1,8,8,16.0,2286,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,-2.2,-8.3,59,102800,309,1408,233,184,516,70,18600,40300,9700,1210,240,3.1,0,0,16.0,77777,9,999999999,60,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.3,54,102700,465,1408,237,307,631,98,31400,56500,12600,1780,250,3.6,1,0,16.0,77777,9,999999999,60,0.0980,0,88,0.160,0.0,1.0 +2003,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,-0.6,-7.8,54,102600,565,1408,250,384,583,149,39900,55900,17400,2960,310,1.5,3,3,16.0,77777,9,999999999,60,0.0980,0,88,0.160,0.0,1.0 +2003,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,0.6,-7.2,52,102500,602,1408,268,260,132,203,28100,13100,22400,4830,0,0.0,8,8,16.0,1097,9,999999999,69,0.0980,0,88,0.160,0.0,1.0 +2003,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,1.1,-6.7,52,102500,573,1408,271,157,12,152,17800,900,17400,5850,40,3.1,8,8,16.0,1097,9,999999999,69,0.0980,0,88,0.160,0.0,1.0 +2003,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,1.7,-5.6,55,102500,482,1408,274,78,0,78,9100,0,9100,3260,30,4.6,8,8,16.0,1097,9,999999999,69,0.0980,0,88,0.160,0.0,1.0 +2003,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,0.6,-5.0,63,102500,334,1408,259,126,113,99,13600,9500,11400,2160,350,4.6,4,4,16.0,77777,9,999999999,69,0.0980,0,88,0.160,0.0,1.0 +2003,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,-0.6,-5.6,66,102600,140,1408,265,50,152,35,5200,7800,4400,630,340,4.6,8,8,16.0,1067,9,999999999,69,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.1,-6.7,62,102700,3,246,262,0,0,0,0,0,0,0,340,4.1,8,8,16.0,1524,9,999999999,69,0.0980,0,88,0.160,0.0,1.0 +2003,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,-1.1,-7.8,57,102700,0,0,261,0,0,0,0,0,0,0,320,4.6,8,8,16.0,1676,9,999999999,60,0.0980,0,88,0.160,0.0,1.0 +2003,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.7,-8.3,57,102700,0,0,243,0,0,0,0,0,0,0,320,4.1,10,2,16.0,77777,9,999999999,60,0.0980,0,88,0.160,0.0,1.0 +2003,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.2,-10.6,48,102700,0,0,231,0,0,0,0,0,0,0,310,5.2,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,-11.1,49,102800,0,0,229,0,0,0,0,0,0,0,320,3.6,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,-3.3,-11.7,48,102800,0,0,227,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,-12.2,50,102800,0,0,222,0,0,0,0,0,0,0,320,5.2,0,0,16.0,77777,9,999999999,50,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.0,-12.8,50,102800,0,0,220,0,0,0,0,0,0,0,300,4.1,0,0,16.0,77777,9,999999999,40,0.0980,0,88,0.160,0.0,1.0 +2003,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,-5.6,-13.3,51,102800,0,0,218,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,40,0.0970,0,88,0.160,0.0,1.0 +2003,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,-6.1,-13.9,50,102800,0,0,215,0,0,0,0,0,0,0,300,3.1,0,0,16.0,77777,9,999999999,40,0.0970,0,88,0.160,0.0,1.0 +2003,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,-6.7,-13.3,56,102800,0,0,214,0,0,0,0,0,0,0,320,3.1,0,0,16.0,77777,9,999999999,50,0.0970,0,88,0.160,0.0,1.0 +2003,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,-6.7,-13.9,53,102700,0,0,214,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,50,0.0970,0,88,0.160,0.0,1.0 +2003,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,-6.7,-13.3,56,102700,0,0,214,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,50,0.0970,0,88,0.160,0.0,1.0 +2003,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,-7.2,-12.8,61,102800,0,0,220,0,0,0,0,0,0,0,290,4.6,2,2,16.0,77777,9,999999999,40,0.0970,0,88,0.160,0.0,1.0 +2003,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,-7.2,-12.8,61,102800,0,12,222,0,0,0,0,0,0,0,320,4.1,3,3,16.0,77777,9,999999999,40,0.0970,0,88,0.160,0.0,1.0 +2003,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,-6.7,-12.8,58,102800,108,1409,241,0,0,0,0,0,0,0,320,4.1,9,9,16.0,7620,9,999999999,50,0.0970,0,88,0.160,0.0,1.0 +2003,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,-12.8,53,102800,306,1409,245,131,131,103,14100,10500,11800,2230,340,3.1,9,9,16.0,6706,9,999999999,50,0.0970,0,88,0.160,0.0,1.0 +2003,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,-4.4,-13.3,46,102800,461,1409,249,227,266,140,23900,24800,15800,2890,330,3.1,9,9,16.0,6706,9,999999999,60,0.0970,0,88,0.160,0.0,1.0 +2003,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,-3.3,-12.8,44,102600,561,1409,253,302,334,168,32000,33000,18800,3580,320,2.1,9,9,16.0,6706,9,999999999,69,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.8,-11.1,49,102600,599,1409,257,369,451,176,37900,43700,19300,3600,340,1.5,9,9,16.0,6096,9,999999999,69,0.0970,0,88,0.160,0.0,1.0 +2003,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.7,-9.4,52,102600,571,1409,270,274,155,211,29400,15200,23200,4970,350,1.5,10,10,16.0,6096,9,999999999,80,0.0970,0,88,0.160,0.0,1.0 +2003,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,-1.7,-8.3,57,102500,480,1409,271,222,182,159,23900,17200,18000,3620,10,4.1,10,10,16.0,6096,9,999999999,80,0.0970,0,88,0.160,0.0,1.0 +2003,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.1,-6.7,62,102500,332,1409,275,91,17,87,10200,800,10000,3010,10,5.2,10,10,16.0,5486,9,999999999,89,0.0970,0,88,0.160,0.0,1.0 +2003,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.6,-5.6,66,102400,139,1409,278,25,0,25,2900,0,2900,890,20,5.2,10,10,16.0,762,9,999999999,89,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.6,-5.0,63,102400,3,223,284,0,0,0,0,0,0,0,90,7.2,10,10,16.0,762,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.6,-5.0,63,102400,0,0,284,0,0,0,0,0,0,0,80,10.3,10,10,16.0,762,9,999999999,110,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.0,-5.6,62,102300,0,0,281,0,0,0,0,0,0,0,70,10.8,10,10,11.2,732,9,999999999,129,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.0,-6.1,60,102300,0,0,280,0,0,0,0,0,0,0,60,9.3,10,10,11.2,762,9,999999999,129,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.0,-6.1,60,102300,0,0,280,0,0,0,0,0,0,0,60,9.8,10,10,11.2,762,9,999999999,139,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.0,-6.1,60,102200,0,0,280,0,0,0,0,0,0,0,50,12.4,10,10,11.2,853,9,999999999,139,0.0970,0,88,0.160,0.0,1.0 +2003,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,-1.1,-3.9,79,102200,0,0,278,0,0,0,0,0,0,0,60,11.3,10,10,11.2,610,9,999999999,139,0.0970,0,88,0.160,0.0,1.0 +2003,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,-0.6,-3.3,80,102000,0,0,281,0,0,0,0,0,0,0,50,10.8,10,10,11.2,518,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,-0.6,-2.2,88,102100,0,0,282,0,0,0,0,0,0,0,50,13.4,10,10,0.8,152,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,-0.6,-1.7,91,102000,0,0,282,0,0,0,0,0,0,0,60,12.4,10,10,0.8,274,9,999999999,150,0.0970,0,88,0.160,1.0,1.0 +2003,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,0.6,-1.1,87,101900,0,0,288,0,0,0,0,0,0,0,60,12.9,10,10,0.8,396,9,999999999,160,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.6,-1.1,87,101800,0,0,288,0,0,0,0,0,0,0,60,12.4,10,10,0.8,427,9,999999999,160,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.6,-1.1,87,101700,0,0,288,0,0,0,0,0,0,0,70,16.5,10,10,0.8,366,9,999999999,160,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.6,-2.8,76,101700,0,0,286,0,0,0,0,0,0,0,60,14.9,10,10,0.8,457,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.6,-1.7,83,101700,0,0,287,0,0,0,0,0,0,0,60,14.4,10,10,0.8,427,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,0.6,-1.1,87,101600,104,1397,288,0,0,0,0,0,0,0,40,10.8,10,10,0.8,183,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,-5.0,-6.7,86,101600,302,1409,260,124,118,98,13300,9500,11200,2120,340,7.7,10,10,0.4,244,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,-4.4,-6.1,86,101500,458,1409,263,174,81,148,19100,7600,16600,3820,350,7.7,10,10,0.4,244,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,-4.4,-6.1,86,101300,558,1409,263,63,0,63,7600,0,7600,2860,350,9.3,10,10,0.8,244,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,-3.9,-5.0,91,101200,596,1409,266,67,0,67,8100,0,8100,3080,350,7.2,10,10,0.4,244,9,999999999,139,0.0970,0,88,0.160,1.0,1.0 +2003,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,-3.3,-5.0,87,101000,569,1409,268,70,0,70,8400,0,8400,3150,360,9.8,10,10,0.4,244,9,999999999,139,0.0970,0,88,0.160,1.0,1.0 +2003,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,-3.3,-4.4,91,100900,479,1409,269,50,0,50,6100,0,6100,2220,360,7.7,10,10,0.4,183,9,999999999,139,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.2,-3.3,91,100800,331,1409,274,30,0,30,3600,0,3600,1270,20,9.3,10,10,0.4,183,9,999999999,139,0.0970,0,88,0.160,1.0,1.0 +2003,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,0.6,-0.6,91,100700,138,1409,289,36,64,29,3800,3100,3500,510,40,14.9,10,10,0.4,183,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,-0.6,88,100600,3,223,291,0,0,0,0,0,0,0,30,16.5,10,10,0.4,274,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,-1.7,-2.2,96,100700,0,0,277,0,0,0,0,0,0,0,350,7.7,10,10,0.4,213,9,999999999,150,0.0970,0,88,0.160,1.0,1.0 +2003,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,-3.3,-4.4,91,100600,0,0,269,0,0,0,0,0,0,0,360,10.8,10,10,0.4,366,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,-3.3,-4.4,91,100500,0,0,269,0,0,0,0,0,0,0,360,9.8,10,10,0.4,122,9,999999999,150,0.0970,0,88,0.160,1.0,1.0 +2003,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,-2.8,-4.4,87,100300,0,0,271,0,0,0,0,0,0,0,350,10.3,10,10,0.4,61,9,999999999,150,0.0970,0,88,0.160,1.0,1.0 +2003,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,-4.4,91,100300,0,0,269,0,0,0,0,0,0,0,350,10.3,10,10,0.4,61,9,999999999,150,0.0970,0,88,0.160,0.0,1.0 +2003,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,-3.3,-5.0,87,100200,0,0,268,0,0,0,0,0,0,0,360,12.4,10,10,0.4,91,9,999999999,139,0.0970,0,88,0.160,0.0,1.0 +2003,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,-3.9,-5.0,91,100100,0,0,266,0,0,0,0,0,0,0,350,9.8,10,10,0.8,91,9,999999999,129,0.0970,0,88,0.160,0.0,1.0 +2003,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,-3.9,-5.6,86,100100,0,0,265,0,0,0,0,0,0,0,350,10.8,10,10,0.8,91,9,999999999,129,0.0970,0,88,0.160,0.0,1.0 +2003,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,-3.3,-5.6,82,100000,0,0,268,0,0,0,0,0,0,0,350,9.8,10,10,0.8,152,9,999999999,129,0.0970,0,88,0.160,0.0,1.0 +2003,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.8,-5.0,83,99800,0,0,270,0,0,0,0,0,0,0,360,10.3,10,10,0.8,274,9,999999999,129,0.0970,0,88,0.160,0.0,1.0 +2003,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.8,-5.0,83,99800,0,0,270,0,0,0,0,0,0,0,360,13.4,10,10,0.8,549,9,999999999,120,0.0970,0,88,0.160,0.0,1.0 +2003,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,-5.0,79,99800,0,0,273,0,0,0,0,0,0,0,350,11.3,10,10,0.8,579,9,999999999,120,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.8,-4.4,87,99800,0,0,271,0,0,0,0,0,0,0,350,10.3,10,10,0.8,152,9,999999999,120,0.0970,0,88,0.160,0.0,1.0 +2003,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,-5.0,83,100000,0,0,270,0,0,0,0,0,0,0,340,8.8,10,10,0.8,518,9,999999999,120,0.0970,0,88,0.160,0.0,1.0 +2003,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,-4.4,87,100100,101,1374,271,0,0,0,0,0,0,0,330,8.8,10,10,0.8,305,9,999999999,120,0.0970,0,88,0.160,0.0,1.0 +2003,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,-5.0,83,100100,299,1409,270,70,0,70,7900,0,7900,2470,330,7.2,10,10,0.8,274,9,999999999,110,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.2,-4.4,83,100100,455,1409,273,60,0,60,7100,0,7100,2560,320,8.8,10,10,1.2,518,9,999999999,110,0.0970,0,88,0.160,0.0,1.0 +2003,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,-1.7,-4.4,80,100000,556,1409,275,63,0,63,7600,0,7600,2850,330,8.2,10,10,2.0,823,9,999999999,110,0.0970,0,88,0.160,0.0,1.0 +2003,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,-1.7,-4.4,80,100000,594,1409,275,417,529,193,42400,51100,20800,3990,320,8.2,10,10,1.6,488,9,999999999,110,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.8,-5.0,83,100000,567,1409,270,390,577,157,40400,55300,18000,3140,320,10.3,10,10,1.2,549,9,999999999,110,0.0970,0,88,0.160,0.0,1.0 +2003,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.2,-5.0,79,99800,477,1409,273,94,0,94,10800,0,10800,3760,320,9.3,10,10,1.2,396,9,999999999,110,0.0970,0,88,0.160,0.0,1.0 +2003,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,-5.6,72,100100,330,1409,274,60,0,60,6900,0,6900,2290,330,8.8,10,10,3.2,701,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.2,-5.0,79,100200,138,1409,273,57,171,40,5800,8700,4900,740,320,8.8,10,10,1.6,427,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.8,-5.6,79,100300,3,223,270,0,0,0,0,0,0,0,310,7.7,10,10,3.2,640,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.8,-6.1,76,100400,0,0,256,0,0,0,0,0,0,0,320,7.2,8,8,6.4,2438,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.8,-6.1,76,100500,0,0,256,0,0,0,0,0,0,0,310,6.2,8,8,9.6,2134,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.8,-7.2,69,100500,0,0,255,0,0,0,0,0,0,0,320,6.7,8,8,16.0,1006,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.2,-6.7,68,100600,0,0,263,0,0,0,0,0,0,0,320,8.8,9,9,16.0,1067,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.2,-6.7,68,100700,0,0,263,0,0,0,0,0,0,0,320,7.7,9,9,16.0,1128,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,-7.8,62,100700,0,0,270,0,0,0,0,0,0,0,320,8.2,10,10,16.0,1128,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,-7.8,62,100700,0,0,270,0,0,0,0,0,0,0,310,7.2,10,10,16.0,1494,9,999999999,100,0.0970,0,88,0.160,0.0,1.0 +2003,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,-2.2,-7.8,62,100800,0,0,270,0,0,0,0,0,0,0,310,6.7,10,10,16.0,1829,9,999999999,100,0.0960,0,88,0.160,0.0,1.0 +2003,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,-2.8,-8.3,62,100900,0,0,245,0,0,0,0,0,0,0,300,6.7,5,5,16.0,77777,9,999999999,100,0.0960,0,88,0.160,0.0,1.0 +2003,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,-2.8,-8.3,62,101000,0,0,236,0,0,0,0,0,0,0,300,6.7,1,1,16.0,77777,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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.3,-8.3,65,101100,0,0,243,0,0,0,0,0,0,0,300,6.7,5,5,16.0,77777,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,-3.3,-8.3,65,101200,0,0,245,0,0,0,0,0,0,0,300,7.2,6,6,16.0,77777,9,999999999,100,0.0960,0,88,0.160,0.0,1.0 +2003,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,-3.3,-8.3,65,101300,0,0,234,0,0,0,0,0,0,0,320,7.2,1,1,16.0,77777,9,999999999,100,0.0960,0,88,0.160,0.0,1.0 +2003,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,-3.3,-8.3,65,101300,0,0,234,0,0,0,0,0,0,0,320,7.2,1,1,16.0,77777,9,999999999,100,0.0960,0,88,0.160,0.0,1.0 +2003,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,-2.8,-8.3,62,101400,97,1375,231,0,0,0,0,0,0,0,310,7.2,0,0,16.0,77777,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,-2.2,-7.8,62,101500,295,1410,234,180,527,69,18100,40300,9600,1180,310,6.2,0,0,16.0,77777,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,-1.1,-7.8,57,101500,452,1410,238,309,688,87,31700,61500,11900,1610,300,5.7,0,0,16.0,77777,9,999999999,80,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-7.8,52,101600,553,1410,241,384,693,111,39500,64900,13900,2110,310,6.2,0,0,16.0,77777,9,999999999,80,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.6,-7.8,49,101500,592,1410,244,357,421,180,37900,42100,20100,3900,320,7.2,0,0,16.0,77777,9,999999999,80,0.0960,0,88,0.160,0.0,1.0 +2003,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,1.1,-7.2,50,101600,565,1410,246,384,691,106,39700,65200,13400,2050,300,5.2,0,0,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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,1.7,-7.2,48,101600,476,1410,248,310,687,78,32300,62800,11100,1500,300,5.7,0,0,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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.2,-7.2,46,101700,329,1410,250,201,578,66,20600,46600,9600,1180,320,5.2,0,0,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,1.7,-7.8,46,101700,137,1410,247,57,313,26,5800,17400,4100,460,320,5.2,0,0,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,1.1,-7.2,50,101800,3,223,246,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.6,-8.3,47,101800,0,0,243,0,0,0,0,0,0,0,300,5.7,0,0,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-8.3,49,101900,0,0,241,0,0,0,0,0,0,0,310,5.2,0,0,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,-0.6,-8.3,52,101900,0,0,239,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.9,51,102000,0,0,237,0,0,0,0,0,0,0,310,4.6,0,0,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.9,51,102100,0,0,241,0,0,0,0,0,0,0,300,5.2,1,1,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,-1.7,-8.9,54,102100,0,0,239,0,0,0,0,0,0,0,310,3.6,1,1,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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,-1.7,-8.9,54,102100,0,0,245,0,0,0,0,0,0,0,320,3.6,3,3,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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,-2.2,-9.4,54,102200,0,0,240,0,0,0,0,0,0,0,320,3.6,2,2,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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,-3.3,-9.4,59,102200,0,0,236,0,0,0,0,0,0,0,330,3.6,2,2,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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,-3.3,-9.4,59,102200,0,0,236,0,0,0,0,0,0,0,340,3.6,2,2,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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,-3.9,-9.4,62,102300,0,0,236,0,0,0,0,0,0,0,320,4.1,3,3,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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,-4.4,-10.0,61,102300,0,0,232,0,0,0,0,0,0,0,330,3.1,2,2,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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,-4.4,-9.4,65,102400,0,0,225,0,0,0,0,0,0,0,310,2.6,0,0,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,-4.4,-10.0,61,102400,0,0,229,0,0,0,0,0,0,0,320,3.1,1,1,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,-3.9,-10.0,59,102500,94,1351,236,0,0,0,0,0,0,0,310,2.6,3,3,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,-2.8,-10.0,54,102500,292,1410,237,180,534,69,18100,40700,9700,1170,340,2.6,2,2,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,-1.1,-10.0,47,102600,449,1410,236,302,633,100,30700,55900,12800,1790,350,2.6,0,0,16.0,77777,9,999999999,60,0.0960,0,88,0.160,0.0,1.0 +2003,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,-10.0,41,102500,550,1410,242,353,590,122,36000,54800,14500,2260,0,0.0,0,0,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-8.9,47,102500,589,1410,240,345,385,183,36500,38400,20300,3980,0,0.0,0,0,16.0,77777,9,999999999,69,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-7.2,54,102500,564,1410,242,384,691,107,39700,65200,13500,2060,110,2.1,0,0,16.0,77777,9,999999999,80,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-6.7,57,102500,475,1410,253,310,692,76,32300,63300,10900,1460,130,1.5,3,3,16.0,3353,9,999999999,80,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-6.1,60,102500,329,1410,257,202,578,66,20500,46600,9600,1170,0,0.0,5,5,16.0,77777,9,999999999,80,0.0960,0,88,0.160,0.0,1.0 +2003,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,-0.6,-6.1,63,102500,137,1410,265,57,313,26,5800,17400,4100,460,0,0.0,8,8,16.0,77777,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,-5.6,60,102500,3,223,283,0,0,0,0,0,0,0,120,1.5,10,10,16.0,3353,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-5.6,62,102500,0,0,281,0,0,0,0,0,0,0,150,2.1,10,10,16.0,3353,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.6,-4.4,66,102500,0,0,285,0,0,0,0,0,0,0,170,2.6,10,10,16.0,3353,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.6,-2.8,76,102500,0,0,286,0,0,0,0,0,0,0,170,2.6,10,10,16.0,3353,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-3.3,76,102500,0,0,283,0,0,0,0,0,0,0,190,2.1,10,10,16.0,3353,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.6,-2.8,76,102500,0,0,286,0,0,0,0,0,0,0,200,2.1,10,10,16.0,3353,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-2.8,79,102600,0,0,284,0,0,0,0,0,0,0,180,2.1,10,10,16.0,3353,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.6,-2.8,76,102500,0,0,286,0,0,0,0,0,0,0,190,1.5,10,10,16.0,3353,9,999999999,89,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-2.8,79,102500,0,0,284,0,0,0,0,0,0,0,190,2.1,10,10,16.0,3048,9,999999999,100,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-2.2,83,102600,0,0,284,0,0,0,0,0,0,0,180,2.1,10,10,16.0,3048,9,999999999,100,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.6,-2.2,80,102500,0,0,287,0,0,0,0,0,0,0,170,1.5,10,10,16.0,853,9,999999999,110,0.0960,0,88,0.160,0.0,1.0 +2003,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,-0.6,-2.8,83,102400,0,0,256,0,0,0,0,0,0,0,160,2.6,4,4,16.0,77777,9,999999999,120,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.0,-2.2,83,102500,0,0,284,0,0,0,0,0,0,0,150,1.5,10,10,16.0,792,9,999999999,120,0.0960,0,88,0.160,0.0,1.0 +2003,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,1.1,-1.7,80,102500,0,0,290,0,0,0,0,0,0,0,180,2.6,10,10,16.0,792,9,999999999,120,0.0960,0,88,0.160,0.0,1.0 +2003,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,1.1,-1.7,80,102500,0,0,290,0,0,0,0,0,0,0,130,2.6,10,10,16.0,853,9,999999999,120,0.0960,0,88,0.160,0.0,1.0 +2003,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,-1.7,77,102500,91,1328,292,0,0,0,0,0,0,0,170,3.1,10,10,16.0,732,9,999999999,120,0.0960,0,88,0.160,0.0,1.0 +2003,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,2.2,-1.7,74,102500,289,1411,294,94,40,86,10300,3300,9600,2090,170,2.1,10,10,16.0,610,9,999999999,129,0.0960,0,88,0.160,0.0,1.0 +2003,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,2.2,-1.1,78,102500,446,1411,295,47,0,47,5700,0,5700,2060,160,2.6,10,10,16.0,610,9,999999999,129,0.0960,0,88,0.160,0.0,1.0 +2003,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,2.2,0.0,85,102500,548,1411,296,101,0,101,11800,0,11800,4220,170,3.1,10,10,16.0,732,9,999999999,150,0.0960,0,88,0.160,0.0,1.0 +2003,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,2.8,0.0,82,102400,587,1411,299,73,0,73,8800,0,8800,3310,170,3.6,10,10,16.0,792,9,999999999,160,0.0960,0,88,0.160,0.0,1.0 +2003,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,2.8,0.0,82,102300,562,1411,299,111,0,111,12900,0,12900,4600,160,2.6,10,10,16.0,792,9,999999999,170,0.0960,0,88,0.160,0.0,1.0 +2003,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,2.8,0.6,85,102300,474,1411,299,127,12,124,14400,800,14200,4580,170,2.6,10,10,16.0,2286,9,999999999,179,0.0960,0,88,0.160,0.0,1.0 +2003,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,3.3,0.6,82,102300,328,1411,301,91,23,85,9900,2000,9400,2170,150,2.1,10,10,16.0,2286,9,999999999,189,0.0960,0,88,0.160,0.0,1.0 +2003,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,2.8,0.6,85,102200,137,1411,291,57,171,40,5800,8600,4900,740,120,2.6,10,9,16.0,6096,9,999999999,200,0.0960,0,88,0.160,0.0,1.0 +2003,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,3.3,0.6,82,102100,3,223,293,0,0,0,0,0,0,0,110,3.1,10,9,16.0,6096,9,999999999,189,0.0960,0,88,0.160,0.0,1.0 +2003,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,0.6,82,102100,0,0,293,0,0,0,0,0,0,0,160,2.6,10,9,16.0,6096,9,999999999,179,0.0960,0,88,0.160,0.0,1.0 +2003,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,3.9,0.6,79,102100,0,0,304,0,0,0,0,0,0,0,150,2.1,10,10,16.0,6096,9,999999999,179,0.0960,0,88,0.160,0.0,1.0 +2003,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,3.3,1.7,89,102000,0,0,303,0,0,0,0,0,0,0,120,4.1,10,10,16.0,792,9,999999999,179,0.0960,0,88,0.160,0.0,1.0 +2003,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,3.9,1.7,86,101900,0,0,305,0,0,0,0,0,0,0,120,2.6,10,10,16.0,792,9,999999999,189,0.0960,0,88,0.160,0.0,1.0 +2003,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,3.9,2.2,89,101800,0,0,306,0,0,0,0,0,0,0,120,4.6,10,10,16.0,671,9,999999999,189,0.0960,0,88,0.160,0.0,1.0 +2003,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,3.9,2.2,89,101700,0,0,306,0,0,0,0,0,0,0,120,4.6,10,10,16.0,1250,9,999999999,200,0.0960,0,88,0.160,0.0,1.0 +2003,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,3.9,2.2,89,101600,0,0,306,0,0,0,0,0,0,0,120,2.6,10,10,16.0,488,9,999999999,209,0.0960,0,88,0.160,0.0,1.0 +2003,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,4.4,2.8,89,101500,0,0,309,0,0,0,0,0,0,0,110,5.2,10,10,16.0,427,9,999999999,209,0.0960,0,88,0.160,0.0,1.0 +2003,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,4.4,3.3,93,101500,0,0,309,0,0,0,0,0,0,0,120,4.6,10,10,14.4,305,9,999999999,220,0.0960,0,88,0.160,0.0,1.0 +2003,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,4.4,3.3,93,101300,0,0,309,0,0,0,0,0,0,0,110,6.2,10,10,12.8,1097,9,999999999,229,0.0960,0,88,0.160,0.0,1.0 +2003,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.0,3.9,93,101100,0,0,312,0,0,0,0,0,0,0,120,6.2,10,10,11.2,244,9,999999999,229,0.0960,0,88,0.160,0.0,1.0 +2003,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.0,3.9,93,101000,0,0,312,0,0,0,0,0,0,0,120,7.2,10,10,12.8,1524,9,999999999,229,0.0960,0,88,0.160,0.0,1.0 +2003,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,92,100900,0,0,307,0,0,0,0,0,0,0,120,5.2,10,9,16.0,2134,9,999999999,220,0.0960,0,88,0.160,0.0,1.0 +2003,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.0,3.3,89,100800,0,0,303,0,0,0,0,0,0,0,110,4.1,10,9,12.8,2438,9,999999999,220,0.0960,0,88,0.160,0.0,1.0 +2003,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.6,3.9,89,100700,88,1305,315,0,0,0,0,0,0,0,120,3.6,10,10,14.4,1829,9,999999999,240,0.0960,0,88,0.160,0.0,1.0 +2003,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,5.6,4.4,92,100500,286,1411,316,111,132,84,12000,10400,9900,1810,110,6.7,10,10,9.6,1829,9,999999999,259,0.0960,0,88,0.160,0.0,1.0 +2003,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,6.1,5.6,97,100400,443,1411,319,54,0,54,6400,0,6400,2320,120,7.2,10,10,3.2,884,9,999999999,279,0.0960,0,88,0.160,0.0,1.0 +2003,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,6.1,5.0,93,100100,545,1411,319,63,0,63,7600,0,7600,2830,110,8.2,10,10,2.4,305,9,999999999,300,0.0960,0,88,0.160,0.0,1.0 +2003,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,6.1,5.6,97,99900,586,1411,319,67,0,67,8100,0,8100,3060,110,7.7,10,10,3.2,396,9,999999999,309,0.0960,0,88,0.160,1.0,1.0 +2003,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,6.7,6.1,96,99500,561,1411,323,64,0,64,7700,0,7700,2900,110,8.8,10,10,2.0,213,9,999999999,320,0.0960,0,88,0.160,2.0,1.0 +2003,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,8.3,7.8,97,99300,473,1411,332,78,0,78,9100,0,9100,3230,120,11.8,10,10,1.6,274,9,999999999,309,0.0960,0,88,0.160,4.0,1.0 +2003,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,8.3,100,99100,328,1411,332,30,0,30,3600,0,3600,1270,120,9.3,10,10,2.0,274,9,999999999,300,0.0960,0,88,0.160,5.0,1.0 +2003,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,9.4,8.9,97,98900,137,1411,338,32,29,29,3500,1600,3400,600,130,8.8,10,10,1.6,274,9,999999999,300,0.0960,0,88,0.160,2.0,1.0 +2003,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,8.3,7.8,97,98700,3,223,332,0,0,0,0,0,0,0,140,5.7,10,10,0.4,183,9,999999999,270,0.0960,0,88,0.160,0.0,1.0 +2003,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,8.3,7.8,97,98800,0,0,332,0,0,0,0,0,0,0,200,6.2,10,10,4.0,244,9,999999999,240,0.0960,0,88,0.160,0.0,1.0 +2003,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,7.2,7.2,100,98800,0,0,326,0,0,0,0,0,0,0,200,4.1,10,10,0.8,244,9,999999999,209,0.0960,0,88,0.160,0.0,1.0 +2003,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,6.1,6.1,100,98800,0,0,311,0,0,0,0,0,0,0,210,3.1,9,9,0.8,122,9,999999999,220,0.0960,0,88,0.160,0.0,1.0 +2003,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,6.7,6.1,96,98800,0,0,314,0,0,0,0,0,0,0,170,4.1,9,9,0.4,122,9,999999999,220,0.0960,0,88,0.160,0.0,1.0 +2003,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,8.3,7.2,93,98900,0,0,331,0,0,0,0,0,0,0,280,5.7,10,10,16.0,579,9,999999999,229,0.0960,0,88,0.160,0.0,1.0 +2003,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,7.2,2.8,74,99000,0,0,321,0,0,0,0,0,0,0,280,11.3,10,10,16.0,1829,9,999999999,200,0.0960,0,88,0.160,0.0,1.0 +2003,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,1.1,73,99200,0,0,312,0,0,0,0,0,0,0,280,8.8,10,10,16.0,1829,9,999999999,170,0.0960,0,88,0.160,0.0,1.0 +2003,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,4.4,-1.1,67,99500,0,0,277,0,0,0,0,0,0,0,280,12.4,4,4,16.0,77777,9,999999999,139,0.0950,0,88,0.160,0.0,1.0 +2003,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,3.9,-3.3,57,99700,0,0,260,0,0,0,0,0,0,0,280,12.9,0,0,16.0,77777,9,999999999,139,0.0950,0,88,0.160,0.0,1.0 +2003,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,3.3,-3.9,57,99800,0,0,257,0,0,0,0,0,0,0,280,8.8,0,0,16.0,77777,9,999999999,129,0.0950,0,88,0.160,0.0,1.0 +2003,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,3.3,-4.4,55,99900,0,0,257,0,0,0,0,0,0,0,280,8.2,0,0,16.0,77777,9,999999999,120,0.0950,0,88,0.160,0.0,1.0 +2003,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,3.3,-5.6,49,100100,0,0,255,0,0,0,0,0,0,0,280,8.8,0,0,16.0,77777,9,999999999,100,0.0950,0,88,0.160,0.0,1.0 +2003,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,2.8,-6.1,49,100200,0,0,253,0,0,0,0,0,0,0,270,12.9,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,2.8,-6.1,49,100400,0,0,253,0,0,0,0,0,0,0,280,10.3,0,0,16.0,77777,9,999999999,50,0.0950,0,88,0.160,0.0,1.0 +2003,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,2.2,-6.1,51,100500,85,1282,251,0,0,0,0,0,0,0,280,9.3,0,0,16.0,77777,9,999999999,60,0.0950,0,88,0.160,0.0,1.0 +2003,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,2.8,-6.7,46,100700,283,1411,252,175,524,69,17500,39300,9600,1160,280,7.7,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,-7.2,43,100800,440,1411,254,297,665,88,30400,58900,11900,1610,260,8.2,0,0,16.0,77777,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,3.9,-7.8,39,100800,543,1411,255,379,736,94,39300,69200,12600,1830,280,7.2,0,0,16.0,77777,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,4.4,-8.3,36,100900,584,1411,257,388,620,130,39600,58300,15400,2450,260,8.8,0,0,16.0,77777,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,5.0,-8.3,35,100900,560,1411,259,379,726,89,39600,69000,12100,1770,270,10.3,0,0,16.0,77777,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,5.0,-8.3,35,101000,472,1411,259,311,698,76,32400,63700,10900,1460,270,9.8,0,0,16.0,77777,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,4.4,-9.4,33,101100,327,1411,256,197,556,67,20000,44700,9600,1190,300,8.8,0,0,16.0,77777,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,3.9,-8.9,35,101300,137,1411,254,57,313,26,5800,17400,4100,460,290,5.2,0,0,16.0,77777,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,3.3,-9.4,35,101400,3,223,252,0,0,0,0,0,0,0,280,7.2,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,2.8,-8.9,38,101600,0,0,250,0,0,0,0,0,0,0,270,5.2,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,2.2,-8.9,40,101700,0,0,248,0,0,0,0,0,0,0,260,6.2,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,-9.4,40,101700,0,0,246,0,0,0,0,0,0,0,270,6.7,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,1.1,-9.4,41,101800,0,0,244,0,0,0,0,0,0,0,270,6.2,0,0,16.0,77777,9,999999999,60,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.6,-9.4,43,101900,0,0,242,0,0,0,0,0,0,0,260,6.7,0,0,16.0,77777,9,999999999,60,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.6,-9.4,43,101900,0,0,242,0,0,0,0,0,0,0,260,7.2,0,0,16.0,77777,9,999999999,60,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.0,-8.9,47,101900,0,0,240,0,0,0,0,0,0,0,260,5.7,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,-0.6,-8.9,49,101900,0,0,238,0,0,0,0,0,0,0,260,6.2,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,-0.6,-8.3,52,102000,0,0,239,0,0,0,0,0,0,0,260,5.2,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-7.8,57,102100,0,0,238,0,0,0,0,0,0,0,270,5.2,0,0,16.0,77777,9,999999999,60,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-7.8,57,102100,0,0,238,0,0,0,0,0,0,0,280,6.7,0,0,16.0,77777,9,999999999,60,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.7,-11.7,42,102200,0,0,232,0,0,0,0,0,0,0,280,6.7,0,0,16.0,77777,9,999999999,50,0.0950,0,88,0.160,0.0,1.0 +2003,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,-2.2,-13.3,38,102300,0,0,229,0,0,0,0,0,0,0,270,5.2,0,0,16.0,77777,9,999999999,40,0.0950,0,88,0.160,0.0,1.0 +2003,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,-2.2,-13.9,36,102400,0,0,228,0,0,0,0,0,0,0,290,6.2,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-2.2,-15.0,32,102500,83,1259,227,0,0,0,0,0,0,0,280,6.2,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-2.2,-16.1,29,102600,280,1412,226,167,491,69,16700,36600,9400,1160,270,7.2,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-16.7,28,102600,438,1412,226,297,671,88,30400,59300,11900,1600,290,8.2,0,0,16.0,77777,9,999999999,40,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-15.6,28,102600,541,1412,230,354,633,110,36300,58900,13600,2070,290,6.7,0,0,16.0,77777,9,999999999,40,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-16.1,27,102600,582,1412,230,351,427,174,36000,41100,19000,3540,320,7.7,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-16.7,25,102600,559,1412,229,373,667,108,38500,62700,13500,2070,310,5.7,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-0.6,-16.7,24,102600,472,1412,231,311,693,78,32300,63200,11100,1490,300,5.7,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-18.3,22,102700,327,1412,228,197,556,67,20000,44700,9600,1190,310,6.7,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.7,-18.9,22,102800,138,1412,225,57,313,26,5800,17400,4100,460,310,6.2,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-2.2,-18.9,23,102900,3,224,224,0,0,0,0,0,0,0,350,3.6,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-3.3,-20.6,21,103000,0,0,219,0,0,0,0,0,0,0,340,4.1,0,0,16.0,77777,9,999999999,20,0.0950,0,88,0.160,0.0,1.0 +2003,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,-3.9,-20.0,23,103100,0,0,217,0,0,0,0,0,0,0,340,3.6,0,0,16.0,77777,9,999999999,20,0.0950,0,88,0.160,0.0,1.0 +2003,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,-4.4,-18.9,27,103200,0,0,221,0,0,0,0,0,0,0,330,3.1,1,1,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-4.4,-18.9,27,103200,0,0,217,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-5.0,-18.3,30,103200,0,0,215,0,0,0,0,0,0,0,320,4.6,0,0,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-6.1,-17.8,35,103200,0,0,216,0,0,0,0,0,0,0,330,3.6,1,1,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-6.7,-17.2,39,103200,0,0,225,0,0,0,0,0,0,0,10,2.6,7,6,16.0,77777,9,999999999,30,0.0950,0,88,0.160,0.0,1.0 +2003,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,-7.2,-18.3,37,103200,0,0,229,0,0,0,0,0,0,0,330,2.1,8,8,16.0,77777,9,999999999,40,0.0950,0,88,0.160,0.0,1.0 +2003,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,-7.2,-17.8,38,103300,0,0,234,0,0,0,0,0,0,0,320,4.1,10,9,16.0,7620,9,999999999,40,0.0950,0,88,0.160,0.0,1.0 +2003,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,-7.8,-17.8,40,103300,0,0,224,0,0,0,0,0,0,0,330,3.1,8,7,16.0,7620,9,999999999,40,0.0950,0,88,0.160,0.0,1.0 +2003,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,-8.3,-17.8,42,103300,0,0,219,0,0,0,0,0,0,0,340,4.6,9,6,16.0,7620,9,999999999,50,0.0950,0,88,0.160,0.0,1.0 +2003,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,-8.3,-17.8,42,103200,0,0,219,0,0,0,0,0,0,0,340,3.6,10,6,16.0,6096,9,999999999,50,0.0950,0,88,0.160,0.0,1.0 +2003,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,-8.3,-17.8,42,103200,0,0,219,0,0,0,0,0,0,0,330,3.1,9,6,16.0,6096,9,999999999,50,0.0950,0,88,0.160,0.0,1.0 +2003,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,-8.3,-17.2,45,103200,0,0,216,0,0,0,0,0,0,0,330,2.6,10,4,16.0,6096,9,999999999,50,0.0950,0,88,0.160,0.0,1.0 +2003,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,-7.8,-17.2,43,103200,80,1235,224,0,0,0,0,0,0,0,340,3.6,10,7,16.0,4572,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,-7.2,-15.0,50,103300,277,1412,237,64,0,64,7200,0,7200,2250,310,3.6,10,9,16.0,945,9,999999999,89,0.0950,0,88,0.160,0.0,1.0 +2003,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.1,-13.9,50,103200,436,1412,242,81,0,81,9400,0,9400,3230,330,2.6,10,9,16.0,945,9,999999999,100,0.0950,0,88,0.160,0.0,1.0 +2003,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,-5.0,-11.7,56,103100,539,1412,248,101,0,101,11700,0,11700,4190,360,3.1,10,9,16.0,884,9,999999999,110,0.0950,0,88,0.160,0.0,1.0 +2003,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,-3.9,-10.0,59,102900,581,1412,261,67,0,67,8100,0,8100,3050,360,3.6,10,10,16.0,701,9,999999999,120,0.0950,0,88,0.160,0.0,1.0 +2003,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,-2.2,-8.3,59,102800,558,1412,269,70,0,70,8400,0,8400,3130,320,2.1,10,10,16.0,823,9,999999999,139,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.0,-5.6,62,102600,471,1412,281,67,0,67,7900,0,7900,2850,110,6.7,10,10,16.0,884,9,999999999,150,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.0,-5.0,66,102600,328,1412,282,40,0,40,4700,0,4700,1640,100,7.2,10,10,16.0,823,9,999999999,160,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.6,-3.9,69,102400,138,1412,285,11,0,11,1300,0,1300,440,100,9.3,10,10,8.0,762,9,999999999,170,0.0950,0,88,0.160,0.0,1.0 +2003,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,-0.6,-1.7,91,102400,3,247,282,0,0,0,0,0,0,0,100,10.3,10,10,0.8,183,9,999999999,179,0.0950,0,88,0.160,0.0,1.0 +2003,12,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,102200,0,0,286,0,0,0,0,0,0,0,100,10.8,10,10,0.8,91,9,999999999,200,0.0950,0,88,0.160,1.0,1.0 +2003,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,-0.6,91,102000,0,0,289,0,0,0,0,0,0,0,90,12.4,10,10,0.8,152,9,999999999,209,0.0950,0,88,0.160,1.0,1.0 +2003,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,0.6,-0.6,91,101700,0,0,289,0,0,0,0,0,0,0,90,12.9,10,10,1.2,152,9,999999999,229,0.0950,0,88,0.160,1.0,1.0 +2003,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,1.1,0.0,92,101500,0,0,291,0,0,0,0,0,0,0,90,14.9,10,10,4.0,396,9,999999999,240,0.0950,0,88,0.160,0.0,1.0 +2003,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,2.2,1.1,92,101200,0,0,297,0,0,0,0,0,0,0,80,12.9,10,10,4.0,305,9,999999999,259,0.0950,0,88,0.160,2.0,1.0 +2003,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,2.8,2.2,96,101000,0,0,301,0,0,0,0,0,0,0,90,12.9,10,10,4.0,305,9,999999999,270,0.0950,0,88,0.160,3.0,1.0 +2003,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.3,2.8,97,100600,0,0,304,0,0,0,0,0,0,0,90,14.9,10,10,4.0,274,9,999999999,279,0.0950,0,88,0.160,7.0,1.0 +2003,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,4.4,3.3,93,100400,0,0,309,0,0,0,0,0,0,0,80,11.8,10,10,4.0,244,9,999999999,290,0.0950,0,88,0.160,1.0,1.0 +2003,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,4.4,3.9,97,100200,0,0,310,0,0,0,0,0,0,0,70,10.3,10,10,2.4,244,9,999999999,290,0.0950,0,88,0.160,5.0,1.0 +2003,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,4.4,96,99900,0,0,313,0,0,0,0,0,0,0,40,9.8,10,10,2.8,122,9,999999999,290,0.0950,0,88,0.160,9.0,1.0 +2003,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,3.9,97,99600,0,0,310,0,0,0,0,0,0,0,40,10.8,10,10,2.8,183,9,999999999,290,0.0950,0,88,0.160,3.0,1.0 +2003,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,3.9,97,99300,0,0,310,0,0,0,0,0,0,0,30,11.3,10,10,3.2,183,9,999999999,259,0.0950,0,88,0.160,1.0,1.0 +2003,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,4.4,3.9,97,99100,0,0,310,0,0,0,0,0,0,0,10,8.8,10,10,4.0,183,9,999999999,229,0.0950,0,88,0.160,0.0,1.0 +2003,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,97,99000,0,0,304,0,0,0,0,0,0,0,330,7.7,10,10,4.0,183,9,999999999,200,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.6,0.0,96,99100,78,1236,289,0,0,0,0,0,0,0,310,9.8,10,10,3.2,183,9,999999999,179,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.0,-1.1,91,99200,275,1412,286,24,0,24,2900,0,2900,1000,320,8.8,10,10,4.0,305,9,999999999,160,0.0950,0,88,0.160,0.0,1.0 +2003,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.6,-2.2,88,99200,433,1412,282,47,0,47,5700,0,5700,2040,310,10.8,10,10,4.0,305,9,999999999,139,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.0,-2.2,83,99300,538,1412,284,63,0,63,7600,0,7600,2820,310,9.8,10,10,4.0,427,9,999999999,129,0.0950,0,88,0.160,0.0,1.0 +2003,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,1.1,-1.7,80,99200,580,1412,290,188,24,178,21000,1900,20300,6510,320,8.8,10,10,12.8,1250,9,999999999,120,0.0950,0,88,0.160,0.0,1.0 +2003,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,1.1,-3.3,70,99400,557,1412,288,163,12,159,18400,900,18100,5920,290,8.8,10,10,16.0,640,9,999999999,110,0.0950,0,88,0.160,0.0,1.0 +2003,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,1.1,-4.4,64,99500,471,1412,279,122,6,120,13800,400,13600,4470,300,10.8,9,9,16.0,1006,9,999999999,100,0.0950,0,88,0.160,0.0,1.0 +2003,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,1.1,-6.1,55,99700,328,1412,258,111,62,96,12100,5300,10800,2380,300,13.9,3,3,16.0,6096,9,999999999,100,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.0,-7.8,52,99900,139,1412,252,58,172,41,5900,8700,5000,760,290,12.9,3,3,16.0,77777,9,999999999,89,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.0,-8.3,49,100100,3,247,241,0,0,0,0,0,0,0,300,9.3,0,0,16.0,77777,9,999999999,89,0.0950,0,88,0.160,0.0,1.0 +2003,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,-0.6,-8.3,52,100300,0,0,253,0,0,0,0,0,0,0,290,11.8,6,5,16.0,77777,9,999999999,89,0.0950,0,88,0.160,0.0,1.0 +2003,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,-0.6,-8.3,52,100400,0,0,262,0,0,0,0,0,0,0,300,12.9,9,8,16.0,3658,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,-8.9,51,100600,0,0,244,0,0,0,0,0,0,0,290,11.3,2,2,16.0,77777,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.9,51,100700,0,0,237,0,0,0,0,0,0,0,290,11.8,0,0,16.0,77777,9,999999999,89,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.3,54,100800,0,0,237,0,0,0,0,0,0,0,300,9.8,0,0,16.0,77777,9,999999999,89,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.9,51,101000,0,0,237,0,0,0,0,0,0,0,290,9.8,0,0,16.0,77777,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.3,54,101100,0,0,237,0,0,0,0,0,0,0,290,7.2,0,0,16.0,77777,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.3,54,101200,0,0,237,0,0,0,0,0,0,0,290,7.7,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.7,-8.3,57,101400,0,0,235,0,0,0,0,0,0,0,280,5.2,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.7,-8.3,57,101500,0,0,235,0,0,0,0,0,0,0,260,5.7,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.7,-7.8,59,101600,0,0,235,0,0,0,0,0,0,0,260,5.7,0,0,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.7,-8.3,57,101600,0,0,235,0,0,0,0,0,0,0,270,5.2,0,0,16.0,77777,9,999999999,60,0.0950,0,88,0.160,0.0,1.0 +2003,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,-2.2,-8.3,59,101800,0,0,233,0,0,0,0,0,0,0,260,4.1,0,0,16.0,77777,9,999999999,60,0.0950,0,88,0.160,0.0,1.0 +2003,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,-2.2,-8.3,59,101800,0,0,233,0,0,0,0,0,0,0,270,6.7,0,0,16.0,77777,9,999999999,50,0.0950,0,88,0.160,0.0,1.0 +2003,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,-1.7,-7.8,59,101900,76,1212,249,0,0,0,0,0,0,0,270,7.2,5,5,16.0,77777,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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.6,-7.8,54,102000,272,1412,269,161,474,69,16100,34900,9300,1150,270,7.2,9,9,16.0,7620,9,999999999,80,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.0,-7.8,52,102100,431,1412,271,284,610,97,28800,53300,12500,1720,270,7.2,9,9,16.0,10668,9,999999999,89,0.0950,0,88,0.160,0.0,1.0 +2003,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,1.7,-7.2,48,102000,536,1412,256,329,530,127,34500,50200,15400,2460,270,4.6,2,2,16.0,77777,9,999999999,110,0.0950,0,88,0.160,0.0,1.0 +2003,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,3.3,-7.2,43,102000,579,1412,269,352,439,171,36100,42200,18800,3470,280,5.2,5,5,16.0,9144,9,999999999,120,0.0950,0,88,0.160,0.0,1.0 +2003,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,3.9,-6.7,43,102000,557,1412,277,385,709,104,39800,66700,13300,2000,270,4.1,7,7,16.0,7620,9,999999999,129,0.0950,0,88,0.160,0.0,1.0 +2003,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,4.4,-6.1,44,102000,471,1412,291,311,704,75,32400,64200,10900,1440,270,2.6,9,9,16.0,6706,9,999999999,139,0.0950,0,88,0.160,0.0,1.0 +2003,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,5.6,-6.1,40,102000,328,1412,279,202,585,65,20600,47100,9600,1160,270,2.6,5,5,16.0,77777,9,999999999,160,0.0950,0,88,0.160,0.0,1.0 +2003,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,5.0,-6.1,42,102000,140,1412,293,58,305,27,5800,17000,4100,480,260,3.6,9,9,16.0,6401,9,999999999,170,0.0950,0,88,0.160,0.0,1.0 +2003,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,4.4,-5.6,46,102000,3,247,291,0,0,0,0,0,0,0,230,3.6,9,9,16.0,6401,9,999999999,129,0.0950,0,88,0.160,0.0,1.0 +2003,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,2.2,-3.3,65,102000,0,0,284,0,0,0,0,0,0,0,160,2.6,9,9,16.0,7620,9,999999999,100,0.0950,0,88,0.160,0.0,1.0 +2003,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,2.2,-5.0,56,102000,0,0,291,0,0,0,0,0,0,0,180,2.6,10,10,16.0,6706,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,1.7,-3.9,64,101700,0,0,282,0,0,0,0,0,0,0,190,2.6,10,9,16.0,6096,9,999999999,69,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.6,-3.3,73,101900,0,0,278,0,0,0,0,0,0,0,170,2.6,10,9,16.0,6096,9,999999999,60,0.0950,0,88,0.160,0.0,1.0 +2003,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,1.1,-3.9,67,101800,0,0,273,0,0,0,0,0,0,0,180,2.1,9,8,16.0,5486,9,999999999,60,0.0950,0,88,0.160,0.0,1.0 +2003,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,1.7,-1.7,77,101800,0,0,278,0,0,0,0,0,0,0,200,3.1,9,8,16.0,9144,9,999999999,89,0.0950,0,88,0.160,0.0,1.0 +2003,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,1.7,-1.1,81,101700,0,0,274,0,0,0,0,0,0,0,190,4.1,8,7,16.0,7620,9,999999999,110,0.0950,0,88,0.160,0.0,1.0 +2003,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,0.0,-1.7,87,101700,0,0,271,0,0,0,0,0,0,0,170,3.1,8,8,16.0,9144,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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,-0.6,88,101700,0,0,283,0,0,0,0,0,0,0,190,2.6,10,9,14.4,640,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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.1,0.6,96,101600,0,0,284,0,0,0,0,0,0,0,170,3.6,10,9,8.0,488,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.2,1.7,96,101500,0,0,298,0,0,0,0,0,0,0,160,2.6,10,10,4.8,244,9,999999999,120,0.0940,0,88,0.160,0.0,1.0 +2003,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,3.3,2.2,92,101400,0,0,303,0,0,0,0,0,0,0,160,4.1,10,10,4.0,1097,9,999999999,139,0.0940,0,88,0.160,0.0,1.0 +2003,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,3.3,2.8,97,101400,0,0,304,0,0,0,0,0,0,0,180,3.1,10,10,4.8,1311,9,999999999,150,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,3.3,93,101200,0,0,279,0,0,0,0,0,0,0,170,4.1,3,3,4.8,77777,9,999999999,160,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,3.9,97,101100,74,1189,282,0,0,0,0,0,0,0,150,2.6,4,4,4.8,7620,9,999999999,170,0.0940,0,88,0.160,0.0,1.0 +2003,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,6.7,5.0,89,101000,270,1413,306,154,247,106,15700,18000,12200,2240,180,6.7,8,8,12.8,6096,9,999999999,189,0.0940,0,88,0.160,0.0,1.0 +2003,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,8.3,5.6,83,101000,430,1413,309,142,37,131,15600,3400,14500,3380,170,5.7,10,7,16.0,4572,9,999999999,200,0.0940,0,88,0.160,0.0,1.0 +2003,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,8.9,5.6,80,100800,535,1413,323,108,0,108,12500,0,12500,4400,150,5.2,10,9,16.0,2743,9,999999999,209,0.0940,0,88,0.160,0.0,1.0 +2003,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,11.1,6.7,74,100500,578,1413,335,115,0,115,13300,0,13300,4790,170,7.2,10,9,16.0,2438,9,999999999,229,0.0940,0,88,0.160,0.0,1.0 +2003,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.2,7.8,74,100300,556,1413,351,105,0,105,12200,0,12200,4380,180,10.8,10,10,16.0,2134,9,999999999,240,0.0940,0,88,0.160,0.0,1.0 +2003,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,11.1,7.2,77,100200,471,1413,345,94,0,94,10800,0,10800,3740,170,6.2,10,10,16.0,1524,9,999999999,259,0.0940,0,88,0.160,0.0,1.0 +2003,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,11.1,8.3,83,100100,329,1413,346,46,0,46,5400,0,5400,1850,170,9.3,10,10,4.8,1829,9,999999999,270,0.0940,0,88,0.160,0.0,1.0 +2003,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,10.0,7.8,86,99900,141,1413,340,18,0,18,2100,0,2100,680,160,8.2,10,10,12.8,2286,9,999999999,279,0.0940,0,88,0.160,0.0,1.0 +2003,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,10.0,7.8,86,99800,3,247,340,0,0,0,0,0,0,0,160,9.3,10,10,16.0,1829,9,999999999,290,0.0940,0,88,0.160,0.0,1.0 +2003,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,10.6,8.9,89,99500,0,0,344,0,0,0,0,0,0,0,160,11.3,10,10,9.6,2286,9,999999999,300,0.0940,0,88,0.160,0.0,1.0 +2003,12,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,99300,0,0,348,0,0,0,0,0,0,0,160,11.8,10,10,9.6,457,9,999999999,300,0.0940,0,88,0.160,1.0,1.0 +2003,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,11.7,10.0,89,99100,0,0,351,0,0,0,0,0,0,0,160,12.4,10,10,8.0,457,9,999999999,300,0.0940,0,88,0.160,1.0,1.0 +2003,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,12.2,10.6,90,98900,0,0,354,0,0,0,0,0,0,0,160,9.8,10,10,8.0,427,9,999999999,300,0.0940,0,88,0.160,1.0,1.0 +2003,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,10.6,10.0,96,98400,0,0,345,0,0,0,0,0,0,0,140,9.3,10,10,3.2,457,9,999999999,290,0.0940,0,88,0.160,3.0,1.0 +2003,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,11.7,11.1,96,98300,0,0,352,0,0,0,0,0,0,0,190,8.8,10,10,6.4,305,9,999999999,250,0.0940,0,88,0.160,0.0,1.0 +2003,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,6.1,3.9,86,98400,0,0,317,0,0,0,0,0,0,0,280,10.3,10,10,16.0,366,9,999999999,200,0.0940,0,88,0.160,1.0,1.0 +2003,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,4.4,1.1,79,98500,0,0,307,0,0,0,0,0,0,0,270,9.8,10,10,16.0,549,9,999999999,150,0.0940,0,88,0.160,0.0,1.0 +2003,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.3,-0.6,75,98700,0,0,300,0,0,0,0,0,0,0,260,9.8,10,10,16.0,1524,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.2,-2.8,68,98800,0,0,293,0,0,0,0,0,0,0,260,13.4,10,10,16.0,2438,9,999999999,120,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-3.9,64,98900,0,0,262,0,0,0,0,0,0,0,250,8.8,3,3,16.0,77777,9,999999999,100,0.0940,0,88,0.160,0.0,1.0 +2003,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,-5.6,58,99100,0,0,256,0,0,0,0,0,0,0,250,10.3,2,2,16.0,77777,9,999999999,89,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-5.0,61,99200,0,0,278,0,0,0,0,0,0,0,240,11.3,9,9,16.0,1189,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-4.4,64,99300,0,0,263,0,0,0,0,0,0,0,230,9.8,5,5,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-5.6,58,99400,72,1189,262,0,0,0,0,0,0,0,240,10.8,5,5,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-5.6,53,99500,268,1413,260,162,495,68,16200,36200,9300,1130,240,12.9,2,2,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.8,-6.1,49,99500,428,1413,264,292,635,98,29500,55200,12700,1730,250,10.8,3,3,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-5.6,49,99500,533,1413,271,317,475,137,33000,44900,16000,2680,250,10.3,5,5,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,3.9,-6.1,45,99500,577,1413,272,352,506,145,36900,48800,16800,2880,260,8.2,5,5,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,-6.1,44,99500,556,1413,274,356,631,106,36700,59300,13200,2030,250,10.3,5,5,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,-6.1,44,99500,472,1413,274,294,587,97,30100,52800,12300,1780,240,10.3,5,5,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,3.9,-6.1,45,99600,330,1413,272,167,341,87,17200,27400,10800,1620,240,10.3,5,5,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,3.3,-6.1,47,99700,142,1413,270,62,247,37,6400,12700,5100,670,250,8.2,5,5,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.8,-5.6,51,99800,4,271,285,0,0,0,0,0,0,0,240,7.2,9,9,16.0,1433,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.8,-6.1,49,99800,0,0,284,0,0,0,0,0,0,0,230,7.7,9,9,16.0,1524,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.2,-6.1,51,99900,0,0,271,0,0,0,0,0,0,0,240,8.2,7,7,16.0,1676,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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.2,-6.1,51,100000,0,0,282,0,0,0,0,0,0,0,240,6.7,9,9,16.0,1524,9,999999999,80,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-7.2,48,100000,0,0,286,0,0,0,0,0,0,0,270,8.8,10,10,16.0,1463,9,999999999,80,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-7.8,48,100100,0,0,269,0,0,0,0,0,0,0,270,7.7,8,8,16.0,1402,9,999999999,80,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.6,-7.8,49,100100,0,0,268,0,0,0,0,0,0,0,250,6.2,8,8,16.0,1463,9,999999999,80,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.0,-7.8,52,100100,0,0,241,0,0,0,0,0,0,0,240,5.7,0,0,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,-0.6,-7.2,57,100200,0,0,240,0,0,0,0,0,0,0,240,6.2,0,0,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.0,-7.2,54,100200,0,0,242,0,0,0,0,0,0,0,260,6.7,0,0,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,-7.2,57,100200,0,0,240,0,0,0,0,0,0,0,260,7.2,0,0,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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.6,-7.2,57,100200,0,0,240,0,0,0,0,0,0,0,270,7.2,0,0,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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.6,-7.8,54,100300,0,0,239,0,0,0,0,0,0,0,260,5.2,0,0,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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.6,-8.3,52,100400,0,0,239,0,0,0,0,0,0,0,270,5.7,0,0,16.0,77777,9,999999999,50,0.0940,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.3,54,100400,0,0,237,0,0,0,0,0,0,0,270,5.7,0,0,16.0,77777,9,999999999,40,0.0940,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.3,54,100400,70,1166,237,0,0,0,0,0,0,0,270,5.7,0,0,16.0,77777,9,999999999,40,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.0,-8.9,47,100500,266,1413,240,163,503,68,16300,36600,9400,1130,290,4.6,0,0,16.0,77777,9,999999999,50,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.6,-9.4,43,100500,426,1413,242,285,648,89,29100,56700,11900,1600,250,5.2,0,0,16.0,77777,9,999999999,50,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-10.0,38,100500,532,1413,245,355,694,92,36800,64900,12200,1780,280,4.1,0,0,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.8,-10.6,33,100400,577,1413,249,383,650,116,39300,61300,14200,2220,300,3.1,0,0,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,3.9,-10.0,32,100400,556,1413,264,374,715,91,39000,67700,12200,1790,290,1.5,4,3,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,-9.4,33,100300,472,1413,264,306,675,79,31700,61500,11100,1510,270,3.1,4,2,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,-10.0,31,100300,331,1413,266,203,579,66,20600,46700,9600,1180,310,3.1,4,3,16.0,77777,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,3.9,-9.4,34,100400,143,1413,285,62,341,27,6300,19300,4300,480,270,3.6,10,9,16.0,7620,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.8,-10.0,35,100400,4,271,280,0,0,0,0,0,0,0,320,2.6,10,9,16.0,7620,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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.8,-10.0,35,100400,0,0,280,0,0,0,0,0,0,0,290,3.1,10,9,16.0,7620,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-10.0,35,100500,0,0,274,0,0,0,0,0,0,0,320,3.6,10,8,16.0,7620,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-10.0,38,100500,0,0,245,0,0,0,0,0,0,0,340,2.1,0,0,16.0,7620,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-9.4,41,100500,0,0,264,0,0,0,0,0,0,0,340,2.6,8,7,16.0,7620,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-9.4,41,100500,0,0,281,0,0,0,0,0,0,0,320,3.1,10,10,16.0,2438,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.6,-9.4,43,100500,0,0,272,0,0,0,0,0,0,0,320,2.6,9,9,16.0,2286,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.6,-8.9,45,100500,0,0,280,0,0,0,0,0,0,0,300,4.1,10,10,16.0,2438,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,-8.9,45,100500,0,0,280,0,0,0,0,0,0,0,300,3.6,10,10,16.0,2134,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.6,-8.3,47,100600,0,0,273,0,0,0,0,0,0,0,330,4.1,9,9,16.0,2438,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.0,-8.3,49,100600,0,0,265,0,0,0,0,0,0,0,310,4.6,8,8,16.0,3353,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,-0.6,-7.8,54,100600,0,0,263,0,0,0,0,0,0,0,330,3.6,8,8,16.0,2134,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,-0.6,-7.8,54,100700,0,0,276,0,0,0,0,0,0,0,320,4.1,10,10,16.0,2743,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,-0.6,-7.8,54,100800,0,0,263,0,0,0,0,0,0,0,320,3.6,8,8,16.0,2286,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,-1.1,-7.8,57,100800,0,0,261,0,0,0,0,0,0,0,320,3.6,8,8,16.0,3048,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,-0.6,-7.8,54,101000,69,1166,250,0,0,0,0,0,0,0,300,2.6,3,3,16.0,3658,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.6,-7.2,52,101000,264,1413,244,131,282,78,13300,20400,9400,1460,10,2.1,0,0,16.0,5486,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-6.7,52,101100,425,1413,246,265,567,94,26900,49300,12000,1670,330,2.1,0,0,16.0,6096,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-6.1,53,101100,531,1413,254,349,670,96,36100,62500,12500,1840,270,3.1,1,1,16.0,6096,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.8,-5.6,51,101000,576,1413,265,370,560,141,38800,54000,16700,2790,310,2.6,3,3,16.0,6096,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.8,-6.1,49,101000,556,1413,266,298,310,175,31400,30500,19300,3770,270,3.1,4,4,16.0,6096,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.2,-5.0,56,101100,473,1413,277,200,147,151,21600,13800,17000,3430,360,3.6,8,8,16.0,1097,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.2,-5.0,56,101200,332,1413,277,66,0,66,7500,0,7500,2470,270,3.6,8,8,16.0,1036,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.2,-5.6,53,101300,144,1413,290,40,69,33,4400,3900,4000,690,290,4.1,10,10,16.0,1219,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.2,-5.0,56,101400,4,294,291,0,0,0,0,0,0,0,330,4.1,10,10,16.0,1097,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-6.1,53,101400,0,0,274,0,0,0,0,0,0,0,310,4.1,8,8,16.0,1341,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-6.7,52,101500,0,0,266,0,0,0,0,0,0,0,310,5.2,10,7,16.0,1463,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.0,-7.2,54,101600,0,0,254,0,0,0,0,0,0,0,330,5.7,4,4,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-0.6,-7.8,54,101700,0,0,239,0,0,0,0,0,0,0,310,5.2,0,0,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-1.1,-8.3,54,101700,0,0,237,0,0,0,0,0,0,0,320,4.6,0,0,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-1.7,-7.8,59,101800,0,0,235,0,0,0,0,0,0,0,290,5.7,0,0,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-2.2,-8.3,59,101800,0,0,233,0,0,0,0,0,0,0,300,4.6,0,0,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-2.8,-8.9,59,101900,0,0,244,0,0,0,0,0,0,0,300,3.6,5,5,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-3.3,-8.9,62,102000,0,0,229,0,0,0,0,0,0,0,300,3.6,0,0,16.0,77777,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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,-9.4,62,102000,0,0,227,0,0,0,0,0,0,0,300,3.6,0,0,16.0,77777,9,999999999,50,0.0940,0,88,0.160,0.0,1.0 +2003,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,-4.4,-10.6,58,102000,0,0,224,0,0,0,0,0,0,0,290,3.6,0,0,16.0,77777,9,999999999,50,0.0940,0,88,0.160,0.0,1.0 +2003,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,-5.0,-11.7,56,102100,0,0,221,0,0,0,0,0,0,0,290,7.2,0,0,16.0,77777,9,999999999,50,0.0940,0,88,0.160,0.0,1.0 +2003,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,-5.6,-12.8,53,102100,0,0,218,0,0,0,0,0,0,0,280,5.2,0,0,16.0,77777,9,999999999,40,0.0940,0,88,0.160,0.0,1.0 +2003,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,-5.0,-12.8,50,102200,0,0,220,0,0,0,0,0,0,0,270,4.6,0,0,16.0,77777,9,999999999,40,0.0940,0,88,0.160,0.0,1.0 +2003,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,-5.0,-12.2,53,102200,67,1143,220,0,0,0,0,0,0,0,260,5.7,0,0,16.0,77777,9,999999999,50,0.0940,0,88,0.160,0.0,1.0 +2003,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,-11.7,51,102200,263,1414,229,131,289,77,13300,20900,9400,1440,250,5.2,1,1,16.0,7620,9,999999999,60,0.0940,0,88,0.160,0.0,1.0 +2003,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.2,-10.0,51,102200,424,1414,236,265,567,94,26900,49300,12000,1670,240,4.1,1,1,16.0,7620,9,999999999,69,0.0940,0,88,0.160,0.0,1.0 +2003,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,-1.1,-9.4,49,102000,531,1414,236,343,603,115,35000,55700,14000,2130,230,6.2,0,0,16.0,7010,9,999999999,80,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.6,-8.3,47,101900,576,1414,251,334,379,179,35300,37600,19900,3870,220,8.2,2,2,16.0,6706,9,999999999,89,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-8.3,46,101800,557,1414,269,339,441,164,34700,42000,18100,3290,240,7.2,10,8,16.0,7010,9,999999999,89,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-9.4,41,101800,474,1414,268,178,82,150,19400,7700,16900,3920,240,7.7,9,8,16.0,7620,9,999999999,100,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-8.9,43,101700,333,1414,274,102,34,93,11100,2900,10400,2340,220,7.7,10,9,16.0,2743,9,999999999,100,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-7.8,48,101700,146,1414,275,55,119,43,5800,5900,5200,820,230,6.2,10,9,16.0,3048,9,999999999,110,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-7.2,50,101600,4,295,270,0,0,0,0,0,0,0,230,6.7,9,8,16.0,4572,9,999999999,110,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-7.2,50,101600,0,0,266,0,0,0,0,0,0,0,220,6.2,8,7,16.0,77777,9,999999999,110,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.6,-7.2,52,101700,0,0,255,0,0,0,0,0,0,0,220,6.2,3,3,16.0,77777,9,999999999,110,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-7.2,50,101700,0,0,276,0,0,0,0,0,0,0,230,5.7,10,9,16.0,77777,9,999999999,120,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-8.3,44,101700,0,0,277,0,0,0,0,0,0,0,230,5.7,9,9,16.0,5486,9,999999999,120,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-8.9,41,101700,0,0,251,0,0,0,0,0,0,0,240,7.2,1,1,16.0,5486,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-8.9,41,101700,0,0,271,0,0,0,0,0,0,0,250,6.2,8,8,16.0,77777,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-9.4,40,101700,0,0,270,0,0,0,0,0,0,0,230,6.2,10,8,16.0,77777,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-9.4,40,101700,0,0,261,0,0,0,0,0,0,0,230,6.2,9,5,16.0,77777,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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,-9.4,40,101700,0,0,263,0,0,0,0,0,0,0,230,6.2,10,6,16.0,77777,9,999999999,120,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.7,-9.4,40,101700,0,0,266,0,0,0,0,0,0,0,230,5.2,8,7,16.0,77777,9,999999999,110,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,-8.9,43,101700,0,0,264,0,0,0,0,0,0,0,230,4.6,9,7,16.0,77777,9,999999999,100,0.0940,0,88,0.160,0.0,1.0 +2003,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.7,-8.9,41,101700,0,0,271,0,0,0,0,0,0,0,230,4.6,8,8,16.0,77777,9,999999999,100,0.0940,0,88,0.160,0.0,1.0 +2003,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.7,-8.3,44,101700,0,0,277,0,0,0,0,0,0,0,220,5.2,10,9,16.0,4572,9,999999999,89,0.0940,0,88,0.160,0.0,1.0 +2003,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.7,-7.8,46,101700,0,0,278,0,0,0,0,0,0,0,240,4.1,10,9,16.0,77777,9,999999999,89,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.8,-8.3,40,101700,66,1119,266,0,0,0,0,0,0,0,240,6.7,6,5,16.0,7620,9,999999999,89,0.0940,0,88,0.160,0.0,1.0 +2003,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,3.3,-7.8,41,101700,261,1414,262,156,478,67,15600,34500,9100,1110,230,5.7,2,2,16.0,77777,9,999999999,89,0.0940,0,88,0.160,0.0,1.0 +2003,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,5.6,-8.3,33,101700,423,1414,261,286,667,86,29300,58300,11700,1560,230,3.1,0,0,16.0,77777,9,999999999,89,0.0940,0,88,0.160,0.0,1.0 +2003,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,7.2,-8.3,30,101600,530,1414,281,336,506,146,34800,47700,16800,2880,250,4.6,4,4,16.0,10668,9,999999999,89,0.0940,0,88,0.160,0.0,1.0 +2003,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,8.3,-7.2,30,101500,576,1414,306,267,169,198,28800,16600,22000,4660,230,5.2,9,9,16.0,2591,9,999999999,100,0.0940,0,88,0.160,0.0,1.0 +2003,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,-7.2,29,101500,557,1414,302,257,167,191,27700,16300,21200,4470,240,4.6,9,8,16.0,7620,9,999999999,100,0.0940,0,88,0.160,0.0,1.0 +2003,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,10.0,-6.7,28,101400,475,1414,303,284,446,133,29200,40800,15400,2580,240,4.6,8,7,16.0,7620,9,999999999,110,0.0940,0,88,0.160,0.0,1.0 +2003,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,9.4,-6.1,31,101500,335,1414,306,168,330,89,17200,26600,10900,1660,270,5.2,10,8,16.0,5486,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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,9.4,-6.1,31,101600,148,1414,295,45,100,34,4700,5000,4200,610,240,2.6,5,5,16.0,4267,9,999999999,139,0.0940,0,88,0.160,0.0,1.0 +2003,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,7.8,-5.6,36,101500,5,318,289,0,0,0,0,0,0,0,200,3.1,5,5,16.0,7620,9,999999999,150,0.0940,0,88,0.160,0.0,1.0 +2003,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,7.2,-4.4,42,101600,0,0,298,0,0,0,0,0,0,0,200,2.1,10,8,16.0,4267,9,999999999,150,0.0940,0,88,0.160,0.0,1.0 +2003,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,6.1,-2.8,51,101700,0,0,290,0,0,0,0,0,0,0,190,3.1,10,7,16.0,7620,9,999999999,160,0.0940,0,88,0.160,0.0,1.0 +2003,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,5.6,-3.3,51,101700,0,0,292,0,0,0,0,0,0,0,200,4.6,10,8,16.0,6096,9,999999999,170,0.0940,0,88,0.160,0.0,1.0 +2003,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,6.1,-3.9,47,101700,0,0,300,0,0,0,0,0,0,0,210,4.1,10,9,16.0,4267,9,999999999,170,0.0940,0,88,0.160,0.0,1.0 +2003,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,5.6,-3.9,49,101700,0,0,298,0,0,0,0,0,0,0,220,3.6,10,9,16.0,4572,9,999999999,179,0.0940,0,88,0.160,0.0,1.0 +2003,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,5.6,-3.9,49,101700,0,0,287,0,0,0,0,0,0,0,220,3.1,10,7,16.0,4877,9,999999999,179,0.0940,0,88,0.160,0.0,1.0 +2003,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,6.1,-3.9,47,101700,0,0,286,0,0,0,0,0,0,0,230,4.1,10,6,16.0,7620,9,999999999,189,0.0940,0,88,0.160,0.0,1.0 +2003,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,6.1,-3.9,47,101700,0,0,289,0,0,0,0,0,0,0,230,3.1,10,7,16.0,4267,9,999999999,189,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,-3.3,55,101700,0,0,287,0,0,0,0,0,0,0,210,2.6,9,8,16.0,6096,9,999999999,189,0.0940,0,88,0.160,0.0,1.0 +2003,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,5.0,-2.2,58,101800,0,0,306,0,0,0,0,0,0,0,180,2.6,10,10,16.0,2134,9,999999999,189,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,-0.6,70,101800,0,0,305,0,0,0,0,0,0,0,160,2.6,10,10,16.0,2286,9,999999999,179,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,-0.6,70,101800,0,0,305,0,0,0,0,0,0,0,170,3.1,10,10,16.0,2134,9,999999999,189,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,0.0,73,101800,0,0,306,0,0,0,0,0,0,0,180,3.1,10,10,16.0,2286,9,999999999,189,0.0940,0,88,0.160,0.0,1.0 +2003,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,4.4,0.0,73,101900,0,0,306,0,0,0,0,0,0,0,180,2.6,10,10,16.0,2286,9,999999999,200,0.0940,0,88,0.160,0.0,1.0 +2003,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,5.6,0.0,67,101900,64,1119,311,0,0,0,0,0,0,0,160,2.1,10,10,16.0,1676,9,999999999,209,0.0940,0,88,0.160,0.0,1.0 +2003,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,6.1,0.0,65,102000,260,1414,313,66,0,66,7300,0,7300,2230,170,2.6,10,10,16.0,1524,9,999999999,220,0.0940,0,88,0.160,0.0,1.0 +2003,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,6.7,1.1,67,102000,422,1414,294,89,0,89,10200,0,10200,3420,160,2.1,10,6,16.0,4267,9,999999999,220,0.0940,0,88,0.160,0.0,1.0 +2003,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,0.6,58,101900,530,1414,303,95,0,95,11100,0,11100,3960,180,2.1,10,7,16.0,5182,9,999999999,220,0.0940,0,88,0.160,0.0,1.0 +2003,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,1.1,56,101800,576,1414,320,280,217,191,30200,21400,21500,4500,190,3.6,10,9,16.0,4572,9,999999999,209,0.0940,0,88,0.160,0.0,1.0 +2003,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.6,2.2,56,101800,558,1414,336,368,584,137,38600,55800,16400,2690,200,4.1,10,10,16.0,4572,9,999999999,209,0.0940,0,88,0.160,0.0,1.0 +2003,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.1,3.3,59,101800,476,1414,319,317,705,79,33000,64300,11200,1510,190,3.1,7,7,16.0,6706,9,999999999,189,0.0940,0,88,0.160,0.0,1.0 +2003,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,2.2,50,101800,336,1414,316,209,597,66,21300,48500,9700,1180,190,4.1,5,5,16.0,4572,9,999999999,179,0.0940,0,88,0.160,0.0,1.0 +2003,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,10.0,1.7,56,101800,150,1414,312,64,319,30,6500,18300,4500,530,210,4.6,7,7,16.0,7010,9,999999999,170,0.0940,0,88,0.160,0.0,1.0 +2003,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,7.8,2.2,68,101800,5,318,297,0,0,0,0,0,0,0,190,4.6,5,5,16.0,9144,9,999999999,150,0.0940,0,88,0.160,0.0,1.0 +2003,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,6.7,2.2,73,101800,0,0,288,0,0,0,0,0,0,0,190,4.1,3,3,16.0,7620,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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,7.8,3.9,76,101800,0,0,310,0,0,0,0,0,0,0,190,5.7,10,8,16.0,4267,9,999999999,110,0.0940,0,88,0.160,0.0,1.0 +2003,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,7.8,3.9,76,101900,0,0,301,0,0,0,0,0,0,0,210,6.2,6,6,16.0,4572,9,999999999,110,0.0940,0,88,0.160,0.0,1.0 +2003,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,8.3,3.9,74,101900,0,0,319,0,0,0,0,0,0,0,220,5.2,10,9,16.0,4572,9,999999999,110,0.0940,0,88,0.160,0.0,1.0 +2003,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,8.3,5.0,80,101900,0,0,320,0,0,0,0,0,0,0,210,5.7,10,9,16.0,77777,9,999999999,110,0.0940,0,88,0.160,0.0,1.0 +2003,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,8.3,5.6,83,101800,0,0,314,0,0,0,0,0,0,0,210,6.2,10,8,16.0,77777,9,999999999,129,0.0940,0,88,0.160,0.0,1.0 +2003,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,9.4,6.1,80,101800,0,0,326,0,0,0,0,0,0,0,210,7.2,10,9,16.0,77777,9,999999999,139,0.0940,0,88,0.160,0.0,1.0 +2003,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,8.9,6.7,86,101900,0,0,324,0,0,0,0,0,0,0,200,5.7,10,9,16.0,77777,9,999999999,160,0.0940,0,88,0.160,0.0,1.0 +2003,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,8.9,6.1,83,101900,0,0,324,0,0,0,0,0,0,0,200,4.6,10,9,16.0,77777,9,999999999,170,0.0940,0,88,0.160,0.0,1.0 +2003,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,7.8,5.6,86,101900,0,0,300,0,0,0,0,0,0,0,190,4.6,5,5,16.0,77777,9,999999999,179,0.0940,0,88,0.160,0.0,1.0 +2003,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,8.3,6.1,86,101800,0,0,298,0,0,0,0,0,0,0,190,4.6,3,3,16.0,77777,9,999999999,189,0.0940,0,88,0.160,0.0,1.0 +2003,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,7.8,6.1,89,101700,0,0,296,0,0,0,0,0,0,0,180,5.2,3,3,16.0,77777,9,999999999,200,0.0940,0,88,0.160,0.0,1.0 +2003,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,7.2,6.1,93,101800,0,0,309,0,0,0,0,0,0,0,180,4.1,8,8,16.0,77777,9,999999999,200,0.0940,0,88,0.160,0.0,1.0 +2003,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,8.9,7.8,93,101800,0,0,335,0,0,0,0,0,0,0,190,3.6,10,10,14.4,1829,9,999999999,200,0.0940,0,88,0.160,0.0,1.0 +2003,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,9.4,7.8,90,101700,63,1120,337,0,0,0,0,0,0,0,170,4.6,10,10,16.0,2591,9,999999999,220,0.0940,0,88,0.160,0.0,1.0 +2003,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,11.7,8.9,83,101700,258,1414,340,91,67,79,10000,5400,9000,1870,160,5.7,10,9,16.0,2286,9,999999999,240,0.0940,0,88,0.160,0.0,1.0 +2003,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,13.9,10.6,80,101600,421,1414,353,143,44,130,15700,4000,14500,3330,180,6.2,10,9,14.4,2438,9,999999999,259,0.0940,0,88,0.160,0.0,1.0 +2003,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,13.3,10.0,80,101500,529,1414,359,57,0,57,6900,0,6900,2570,160,6.2,10,10,16.0,2438,9,999999999,259,0.0940,0,88,0.160,0.0,1.0 +2003,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,10.6,84,101400,576,1414,359,128,0,128,14700,0,14700,5180,150,6.2,10,10,16.0,1036,9,999999999,259,0.0940,0,88,0.160,0.0,1.0 +2003,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,13.3,11.1,87,101200,559,1414,360,94,0,94,11000,0,11000,4010,150,8.2,10,10,9.6,518,9,999999999,259,0.0940,0,88,0.160,0.0,1.0 +2003,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.1,89,101200,477,1414,348,117,0,117,13200,0,13200,4420,170,7.2,10,9,9.6,579,9,999999999,270,0.0940,0,88,0.160,0.0,1.0 +2003,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.8,11.1,89,101000,338,1414,358,76,0,76,8600,0,8600,2760,160,7.7,10,10,8.0,518,9,999999999,279,0.0940,0,88,0.160,2.0,1.0 +2003,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.1,89,101000,152,1414,358,19,0,19,2200,0,2200,720,160,7.2,10,10,11.2,1433,9,999999999,290,0.0940,0,88,0.160,0.0,1.0 +2003,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,11.7,11.1,96,101000,6,342,352,0,0,0,0,0,0,0,150,5.7,10,10,3.2,549,9,999999999,279,0.0940,0,88,0.160,1.0,1.0 +2003,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,11.1,96,100900,0,0,352,0,0,0,0,0,0,0,160,5.7,10,10,6.4,427,9,999999999,279,0.0940,0,88,0.160,1.0,1.0 +2003,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,12.2,11.1,93,100700,0,0,355,0,0,0,0,0,0,0,170,6.2,10,10,12.8,427,9,999999999,279,0.0940,0,88,0.160,3.0,1.0 +2003,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,12.8,11.7,93,100800,0,0,358,0,0,0,0,0,0,0,190,7.7,10,10,16.0,305,9,999999999,259,0.0940,0,88,0.160,0.0,1.0 +2003,12,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,100800,0,0,355,0,0,0,0,0,0,0,190,4.1,10,10,16.0,427,9,999999999,250,0.0940,0,88,0.160,0.0,1.0 +2003,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,13.3,11.1,87,100800,0,0,360,0,0,0,0,0,0,0,210,9.3,10,10,16.0,427,9,999999999,240,0.0940,0,88,0.160,0.0,1.0 +2003,12,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,100800,0,0,358,0,0,0,0,0,0,0,200,7.2,10,10,16.0,305,9,999999999,240,0.0940,0,88,0.160,0.0,1.0 +2003,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,11.7,10.6,93,100800,0,0,352,0,0,0,0,0,0,0,190,6.2,10,10,14.4,244,9,999999999,250,0.0940,0,88,0.160,0.0,1.0 +2003,12,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,100700,0,0,352,0,0,0,0,0,0,0,200,6.2,10,10,16.0,274,9,999999999,250,0.0930,0,88,0.160,0.0,1.0 +2003,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,11.1,10.0,93,100800,0,0,348,0,0,0,0,0,0,0,210,4.6,10,10,16.0,335,9,999999999,250,0.0930,0,88,0.160,0.0,1.0 +2003,12,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,9.4,92,100800,0,0,345,0,0,0,0,0,0,0,200,4.1,10,10,16.0,274,9,999999999,240,0.0930,0,88,0.160,0.0,1.0 +2003,12,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.9,93,100800,0,0,341,0,0,0,0,0,0,0,190,3.1,10,10,16.0,335,9,999999999,240,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.3,7.2,93,100800,0,0,331,0,0,0,0,0,0,0,0,0.0,10,10,9.6,4572,9,999999999,220,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.3,7.8,97,100800,0,0,332,0,0,0,0,0,0,0,160,2.6,10,10,9.6,457,9,999999999,200,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.3,7.8,97,100800,0,0,332,0,0,0,0,0,0,0,0,0.0,10,10,9.6,1829,9,999999999,170,0.0930,0,88,0.160,0.0,1.0 +2003,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,7.8,6.7,93,100800,62,1096,313,0,0,0,0,0,0,0,0,0.0,8,8,6.4,1829,9,999999999,179,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.3,7.8,97,100700,257,1414,332,149,250,103,15200,17700,11900,2180,140,1.5,10,10,4.8,1829,9,999999999,179,0.0930,0,88,0.160,0.0,1.0 +2003,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,9.4,8.9,97,100600,420,1414,338,48,0,48,5700,0,5700,2060,230,2.6,10,10,9.6,305,9,999999999,189,0.0930,0,88,0.160,0.0,1.0 +2003,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,9.4,8.3,93,100600,529,1414,338,57,0,57,6900,0,6900,2570,250,2.1,10,10,11.2,274,9,999999999,179,0.0930,0,88,0.160,0.0,1.0 +2003,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,10.0,7.8,86,100400,577,1414,340,67,0,67,8100,0,8100,3050,10,2.1,10,10,14.4,1524,9,999999999,170,0.0930,0,88,0.160,0.0,1.0 +2003,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,10.0,8.3,89,100400,560,1414,341,380,513,177,38800,48900,19400,3590,190,3.1,10,10,11.2,518,9,999999999,160,0.0930,0,88,0.160,0.0,1.0 +2003,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,10.0,7.2,83,100400,479,1414,339,50,0,50,6100,0,6100,2220,200,5.2,10,10,16.0,518,9,999999999,139,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.9,3.9,71,100400,340,1414,314,133,120,104,14400,10100,11900,2270,240,8.2,8,8,16.0,3048,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,7.2,2.2,70,100500,154,1414,300,68,206,46,6900,11100,5700,850,250,5.7,7,7,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,6.7,1.7,70,100500,6,342,294,0,0,0,0,0,0,0,250,3.6,6,6,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,6.1,0.6,68,100600,0,0,288,0,0,0,0,0,0,0,250,6.2,5,5,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,64,100600,0,0,280,0,0,0,0,0,0,0,240,6.2,4,4,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,4.4,-2.2,61,100700,0,0,274,0,0,0,0,0,0,0,260,9.8,3,3,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.3,-2.8,63,100800,0,0,267,0,0,0,0,0,0,0,250,9.8,2,2,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.8,-3.3,62,100800,0,0,261,0,0,0,0,0,0,0,240,7.7,1,1,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.8,-3.9,59,100900,0,0,255,0,0,0,0,0,0,0,260,8.2,0,0,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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.2,-5.6,53,100900,0,0,251,0,0,0,0,0,0,0,250,7.7,0,0,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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.7,-5.6,55,100900,0,0,250,0,0,0,0,0,0,0,240,7.7,0,0,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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.7,-5.0,58,100900,0,0,250,0,0,0,0,0,0,0,240,7.2,0,0,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,-3.9,67,101000,0,0,249,0,0,0,0,0,0,0,230,7.2,0,0,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,0.6,-3.9,69,101000,0,0,247,0,0,0,0,0,0,0,230,7.7,0,0,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,0.6,-5.0,63,100900,0,0,246,0,0,0,0,0,0,0,230,9.3,0,0,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,0.6,-5.6,60,100900,0,0,260,0,0,0,0,0,0,0,230,8.8,5,5,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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.1,-5.6,58,100900,0,0,285,0,0,0,0,0,0,0,240,7.7,10,10,16.0,1341,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,1.1,-5.6,58,101000,61,1096,272,0,0,0,0,0,0,0,230,8.8,8,8,16.0,2591,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,1.7,-5.6,55,100900,256,1414,288,149,446,68,15300,31900,9500,1250,230,8.8,10,10,16.0,2743,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.2,-5.6,53,100900,420,1414,290,273,475,132,27700,41600,15300,2570,240,9.8,10,10,16.0,6096,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.2,-4.4,59,100800,529,1414,291,127,0,127,14500,0,14500,4940,240,11.3,10,10,6.4,701,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.3,-5.0,52,100800,578,1414,295,402,518,189,40800,49700,20400,3880,260,8.8,10,10,14.4,2743,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.3,-5.0,52,100700,561,1414,295,94,0,94,11000,0,11000,4020,260,7.7,10,10,14.4,1128,9,999999999,110,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.3,-3.9,57,100700,480,1414,297,134,12,130,15100,800,14800,4760,260,6.7,10,10,16.0,1128,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.3,-3.9,57,100800,342,1414,297,102,28,95,11100,2400,10600,2400,250,6.7,10,10,16.0,1250,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-3.3,57,100800,156,1414,285,61,131,46,6300,6800,5600,880,250,5.7,10,8,16.0,4267,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-3.3,57,100800,7,365,281,0,0,0,0,0,0,0,270,6.2,8,7,16.0,6096,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-2.8,60,100800,0,0,300,0,0,0,0,0,0,0,260,6.2,10,10,16.0,2438,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-2.2,63,100900,0,0,301,0,0,0,0,0,0,0,270,5.7,10,10,16.0,2896,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-2.2,63,100900,0,0,301,0,0,0,0,0,0,0,280,6.2,10,10,16.0,1067,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.3,-2.8,63,100900,0,0,283,0,0,0,0,0,0,0,280,5.7,8,8,16.0,2896,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.8,-3.3,62,101000,0,0,267,0,0,0,0,0,0,0,290,7.2,3,3,16.0,77777,9,999999999,129,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.8,-4.4,57,101000,0,0,255,0,0,0,0,0,0,0,300,6.7,0,0,16.0,77777,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.8,-6.1,49,101000,0,0,253,0,0,0,0,0,0,0,300,5.2,0,0,16.0,77777,9,999999999,110,0.0930,0,88,0.160,0.0,1.0 +2003,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,-6.7,46,101000,0,0,252,0,0,0,0,0,0,0,310,6.7,0,0,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,-6.7,46,101200,0,0,252,0,0,0,0,0,0,0,310,6.7,0,0,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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.8,-6.7,46,101300,0,0,252,0,0,0,0,0,0,0,320,8.2,0,0,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,-7.2,46,101300,0,0,250,0,0,0,0,0,0,0,310,6.2,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,-6.7,48,101400,0,0,250,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,-6.7,48,101500,0,0,250,0,0,0,0,0,0,0,300,5.7,0,0,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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.1,-6.7,52,101600,0,0,246,0,0,0,0,0,0,0,310,5.2,0,0,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,1.7,-6.7,50,101700,60,1073,248,0,0,0,0,0,0,0,320,4.6,0,0,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.8,-6.7,46,101700,256,1415,252,150,460,66,14900,32900,9000,1090,340,6.2,0,0,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-6.7,43,101800,419,1415,257,273,637,84,28000,55600,11400,1520,330,6.2,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.6,-6.7,38,101800,530,1415,263,363,738,85,37800,69200,11800,1660,320,6.2,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,7.2,-6.7,34,101700,578,1415,269,402,741,97,41800,70600,12800,1920,310,5.2,0,0,16.0,77777,9,999999999,40,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.3,-7.2,30,101800,562,1415,273,387,757,84,40600,72100,11800,1680,310,5.7,0,0,16.0,77777,9,999999999,40,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.3,-7.2,30,101800,482,1415,273,318,706,76,33200,64800,11000,1470,320,4.6,0,0,16.0,77777,9,999999999,40,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.9,-8.3,26,101900,344,1415,274,210,576,69,21400,47100,9900,1230,320,6.2,0,0,16.0,77777,9,999999999,40,0.0930,0,88,0.160,0.0,1.0 +2003,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,7.8,-9.4,26,102000,158,1415,269,69,338,31,7000,20000,4800,550,330,6.2,0,0,16.0,77777,9,999999999,40,0.0930,0,88,0.160,0.0,1.0 +2003,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,6.1,-9.4,29,102100,7,389,262,0,0,0,0,0,0,0,310,6.2,0,0,16.0,77777,9,999999999,40,0.0930,0,88,0.160,0.0,1.0 +2003,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,4.4,-8.9,34,102200,0,0,256,0,0,0,0,0,0,0,320,4.1,0,0,16.0,77777,9,999999999,40,0.0930,0,88,0.160,0.0,1.0 +2003,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,4.4,-8.3,36,102200,0,0,257,0,0,0,0,0,0,0,310,6.2,0,0,16.0,77777,9,999999999,40,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-8.3,37,102300,0,0,255,0,0,0,0,0,0,0,320,5.2,0,0,16.0,77777,9,999999999,40,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.8,-8.9,38,102400,0,0,250,0,0,0,0,0,0,0,340,4.1,0,0,16.0,77777,9,999999999,40,0.0930,0,88,0.160,0.0,1.0 +2003,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,-8.9,40,102400,0,0,248,0,0,0,0,0,0,0,340,3.6,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,1.7,-8.9,41,102400,0,0,246,0,0,0,0,0,0,0,350,3.1,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,1.1,-8.9,43,102500,0,0,244,0,0,0,0,0,0,0,330,3.1,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,1.1,-8.9,43,102500,0,0,244,0,0,0,0,0,0,0,350,3.1,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,1.1,-9.4,41,102600,0,0,244,0,0,0,0,0,0,0,350,3.1,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,0.6,-10.0,41,102600,0,0,242,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,0.6,-9.4,43,102500,0,0,242,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,0.0,-9.4,45,102600,0,0,240,0,0,0,0,0,0,0,300,3.6,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,0.6,-9.4,43,102600,0,0,242,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,0.0,-9.4,45,102700,0,0,240,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,0.0,-7.8,52,102800,60,1073,241,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.2,-7.8,44,102800,255,1415,249,150,460,66,14900,32800,8900,1090,200,1.5,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,12,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-10.0,30,102700,419,1415,257,274,643,82,28000,56200,11300,1490,240,1.5,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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.8,-10.6,23,102600,530,1415,267,363,738,85,37900,69200,11800,1660,230,4.1,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,-11.1,19,102500,579,1415,275,408,765,93,42600,73100,12600,1860,210,3.1,0,0,16.0,77777,9,999999999,50,0.0930,0,88,0.160,0.0,1.0 +2003,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,-10.6,19,102500,564,1415,278,387,757,84,40700,72200,11800,1680,270,2.6,0,0,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,11.1,-10.6,19,102400,484,1415,285,318,700,78,33200,64200,11100,1500,240,3.1,1,1,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,-9.4,21,102400,346,1415,299,215,599,68,22000,49200,9900,1220,220,3.6,6,6,16.0,7620,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,9.4,-8.3,26,102400,161,1415,303,74,370,31,7500,22100,4900,550,200,3.1,8,8,16.0,7620,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.3,-8.3,28,102400,8,389,290,0,0,0,0,0,0,0,210,2.6,6,6,16.0,7620,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,7.8,-10.0,25,102400,0,0,282,0,0,0,0,0,0,0,240,3.1,4,4,16.0,7620,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,7.2,-9.4,27,102400,0,0,275,0,0,0,0,0,0,0,210,3.1,2,2,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.6,-9.4,30,102400,0,0,271,0,0,0,0,0,0,0,220,3.6,3,3,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,6.1,-10.0,28,102400,0,0,270,0,0,0,0,0,0,0,200,2.6,2,2,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,4.4,-9.4,33,102300,0,0,267,0,0,0,0,0,0,0,210,2.6,3,3,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.0,-8.9,33,102200,0,0,272,0,0,0,0,0,0,0,220,4.1,4,4,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-7.8,39,102200,0,0,271,0,0,0,0,0,0,0,220,3.1,5,5,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,-8.3,39,102100,0,0,268,0,0,0,0,0,0,0,220,3.6,5,5,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-8.9,35,102100,0,0,270,0,0,0,0,0,0,0,220,5.2,5,5,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,-8.3,37,102100,0,0,270,0,0,0,0,0,0,0,230,5.2,5,5,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,2.8,-7.2,44,102000,0,0,252,0,0,0,0,0,0,0,220,4.1,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.3,-6.1,47,101900,0,0,255,0,0,0,0,0,0,0,230,4.1,0,0,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.3,-5.6,49,101900,0,0,264,0,0,0,0,0,0,0,220,3.1,2,2,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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.3,-5.0,52,101900,0,0,256,0,0,0,0,0,0,0,220,3.6,0,0,16.0,77777,9,999999999,60,0.0930,0,88,0.160,0.0,1.0 +2003,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.3,-4.4,55,101900,59,1073,257,0,0,0,0,0,0,0,220,5.2,0,0,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,-4.4,45,101900,255,1415,267,150,468,66,15000,33400,9000,1090,230,5.7,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.3,-3.9,40,101800,419,1415,285,274,643,82,28000,56200,11300,1490,240,4.6,2,2,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,10.0,-3.3,38,101700,531,1415,293,363,738,85,37900,69200,11800,1660,230,5.2,2,2,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,11.7,-3.3,34,101600,580,1415,300,408,765,93,42700,73100,12600,1860,240,5.2,2,2,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,-3.9,29,101600,565,1415,314,387,751,85,40600,71600,11800,1700,250,4.6,5,5,16.0,77777,9,999999999,110,0.0930,0,88,0.160,0.0,1.0 +2003,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,-2.8,30,101500,486,1415,312,319,694,79,33200,63700,11200,1520,220,2.6,2,2,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,13.3,-1.7,35,101500,349,1415,312,216,594,68,22000,48900,9900,1220,210,4.6,3,3,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,12.2,-1.7,37,101500,164,1415,304,74,366,31,7500,22000,4900,550,240,4.1,2,2,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,10.6,-1.7,42,101500,9,413,300,0,0,0,0,0,0,0,240,3.1,3,3,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,12,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,101500,0,0,286,0,0,0,0,0,0,0,230,3.6,0,0,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,12,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.7,45,101500,0,0,283,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,110,0.0930,0,88,0.160,0.0,1.0 +2003,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,-1.7,48,101500,0,0,278,0,0,0,0,0,0,0,200,2.1,0,0,16.0,77777,9,999999999,110,0.0930,0,88,0.160,0.0,1.0 +2003,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,7.2,-1.1,55,101500,0,0,275,0,0,0,0,0,0,0,230,5.2,0,0,16.0,77777,9,999999999,110,0.0930,0,88,0.160,0.0,1.0 +2003,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,6.7,-0.6,59,101400,0,0,273,0,0,0,0,0,0,0,220,5.2,0,0,16.0,77777,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.6,0.0,67,101300,0,0,288,0,0,0,0,0,0,0,230,4.1,6,6,16.0,77777,9,999999999,110,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.6,0.6,70,101200,0,0,270,0,0,0,0,0,0,0,240,2.6,0,0,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.0,0.6,73,101200,0,0,268,0,0,0,0,0,0,0,220,3.6,0,0,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.0,1.1,76,101100,0,0,277,0,0,0,0,0,0,0,220,4.6,2,2,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,1.1,82,101100,0,0,280,0,0,0,0,0,0,0,210,3.6,8,5,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.0,1.7,79,101000,0,0,302,0,0,0,0,0,0,0,210,5.2,10,9,16.0,77777,9,999999999,110,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.6,2.2,79,100800,0,0,294,0,0,0,0,0,0,0,220,4.6,10,7,16.0,6096,9,999999999,110,0.0930,0,88,0.160,0.0,1.0 +2003,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,6.1,3.3,82,100700,0,0,289,0,0,0,0,0,0,0,190,4.6,10,4,16.0,6096,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.3,5.0,80,100600,0,0,300,0,0,0,0,0,0,0,200,4.6,10,4,16.0,5486,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,8.9,6.1,83,100600,59,1073,312,0,0,0,0,0,0,0,210,7.7,10,7,16.0,4267,9,999999999,160,0.0930,0,88,0.160,0.0,1.0 +2003,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,10.0,6.7,80,100500,254,1415,329,92,75,78,9900,5600,8900,1670,210,7.2,10,9,16.0,1097,9,999999999,189,0.0930,0,88,0.160,0.0,1.0 +2003,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,11.1,7.2,77,100400,419,1415,345,240,356,133,25000,31900,15500,2750,220,7.2,10,10,16.0,1524,9,999999999,220,0.0930,0,88,0.160,0.0,1.0 +2003,12,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,100300,531,1415,349,134,0,134,15200,0,15200,5130,230,9.3,10,10,14.4,549,9,999999999,209,0.0930,0,88,0.160,0.0,1.0 +2003,12,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,100200,582,1415,349,183,18,175,20500,1400,19900,6450,240,7.7,10,10,16.0,762,9,999999999,189,0.0930,0,88,0.160,0.0,1.0 +2003,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,12.2,6.7,69,100100,567,1415,316,64,0,64,7700,0,7700,2910,240,7.7,3,3,16.0,77777,9,999999999,179,0.0930,0,88,0.160,0.0,1.0 +2003,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,11.7,3.9,59,100300,488,1415,344,324,488,155,32900,44800,17400,3070,280,10.8,10,10,16.0,1158,9,999999999,160,0.0930,0,88,0.160,0.0,1.0 +2003,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,9.4,1.7,59,100500,351,1415,298,154,200,104,16100,16700,12000,2080,290,14.9,3,3,16.0,1128,9,999999999,139,0.0930,0,88,0.160,0.0,1.0 +2003,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,-2.8,44,100600,167,1415,289,75,209,50,7600,11800,6200,930,290,13.4,3,3,16.0,77777,9,999999999,120,0.0930,0,88,0.160,0.0,1.0 +2003,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,7.2,-3.3,46,100800,9,436,272,0,0,0,0,0,0,0,280,8.8,0,0,16.0,77777,9,999999999,110,0.0930,0,88,0.160,0.0,1.0 +2003,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,6.7,-4.4,43,101000,0,0,281,0,0,0,0,0,0,0,280,10.3,3,3,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,-4.4,45,101000,0,0,276,0,0,0,0,0,0,0,270,9.3,2,2,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.6,-4.4,46,101200,0,0,265,0,0,0,0,0,0,0,270,8.8,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,-4.4,46,101300,0,0,265,0,0,0,0,0,0,0,270,8.2,0,0,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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.0,-3.9,51,101300,0,0,263,0,0,0,0,0,0,0,270,6.7,0,0,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,12,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.9,51,101300,0,0,263,0,0,0,0,0,0,0,270,8.8,0,0,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.0,-3.9,51,101300,0,0,263,0,0,0,0,0,0,0,270,7.2,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.0,-3.3,53,101400,0,0,264,0,0,0,0,0,0,0,270,7.2,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,4.4,-3.3,55,101600,0,0,262,0,0,0,0,0,0,0,260,8.8,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,4.4,-3.9,53,101700,0,0,261,0,0,0,0,0,0,0,270,9.8,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,4.4,-3.9,53,101800,0,0,261,0,0,0,0,0,0,0,270,8.8,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-3.9,55,101900,0,0,259,0,0,0,0,0,0,0,260,6.7,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-3.9,55,101900,0,0,259,0,0,0,0,0,0,0,270,7.2,0,0,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.3,-3.9,57,102000,0,0,257,0,0,0,0,0,0,0,260,6.7,0,0,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-3.9,55,102100,58,1073,268,0,0,0,0,0,0,0,260,6.7,2,2,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,4.4,-3.9,53,102200,254,1415,272,92,47,83,10000,3800,9300,1930,270,7.2,3,3,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.0,-3.9,51,102100,420,1415,285,178,81,154,19500,7500,17200,3750,270,7.7,7,7,16.0,6096,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.0,-3.9,51,102000,532,1415,304,236,140,183,25400,13500,20300,4240,280,6.2,10,10,16.0,4267,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,-3.9,49,102000,583,1415,307,116,0,116,13500,0,13500,4830,270,4.6,10,10,16.0,4877,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,6.1,-3.9,47,101900,569,1415,309,264,191,187,28500,18800,21000,4390,270,6.7,10,10,16.0,4877,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,7.2,-3.9,43,101900,491,1415,288,302,489,132,31300,45100,15500,2560,280,4.1,5,5,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,7.2,-4.4,42,101800,354,1415,287,221,577,76,22500,47500,10500,1340,220,5.2,5,5,16.0,77777,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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,6.7,-4.4,43,101800,169,1415,302,79,384,33,8100,23400,5200,580,220,4.6,9,9,16.0,5486,9,999999999,100,0.0930,0,88,0.160,0.0,1.0 +2003,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.0,-3.9,51,101700,10,460,275,0,0,0,0,0,0,0,200,4.1,3,3,16.0,77777,9,999999999,89,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.9,-3.3,57,101600,0,0,268,0,0,0,0,0,0,0,180,4.6,2,2,16.0,4572,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,3.3,-2.8,63,101500,0,0,269,0,0,0,0,0,0,0,200,3.6,3,3,16.0,77777,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,51,101400,0,0,304,0,0,0,0,0,0,0,230,8.8,10,10,16.0,3658,9,999999999,69,0.0930,0,88,0.160,0.0,1.0 +2003,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,4.4,-3.3,55,101400,0,0,262,0,0,0,0,0,0,0,240,7.7,0,0,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,4.4,-3.9,53,101300,0,0,270,0,0,0,0,0,0,0,230,7.7,2,2,16.0,77777,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.0,-3.3,53,101300,0,0,290,0,0,0,0,0,0,0,240,7.2,8,8,16.0,2286,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 +2003,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,5.0,-3.3,53,101200,0,0,296,0,0,0,0,0,0,0,230,7.2,9,9,16.0,2286,9,999999999,80,0.0930,0,88,0.160,0.0,1.0 diff --git a/measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.stat b/measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.stat new file mode 100644 index 0000000..13e4b36 --- /dev/null +++ b/measures/ChangeBuildingLocation/tests/USA_MA_Boston-Logan.Intl.AP.725090_AMY.stat @@ -0,0 +1,553 @@ + -EnergyPlus Weather Converter V7.2.0.007 + Statistics for USA_MA_Boston-Logan.Intl.AP.725090_TMY3 + Location -- Boston Logan IntL Arpt MA USA + {N 42 22'} {W 71 1'} {GMT -5.0 Hours} + Elevation -- 6m above sea level + Standard Pressure at Elevation -- 101253Pa + Data Source -- TMY3 + + WMO Station 725090 + + - Displaying Design Conditions from "Climate Design Data 2009 ASHRAE Handbook" + - ASHRAE design conditions are carefully generated from a period of record + - (typically 30 years) to be representative of that location and to be suitable + - for use in heating/cooling load calculations. + + Design Stat ColdestMonth DB996 DB990 DP996 HR_DP996 DB_DP996 DP990 HR_DP990 DB_DP990 WS004c DB_WS004c WS010c DB_WS010c WS_DB996 WD_DB996 + Units {} {C} {C} {C} {} {C} {C} {} {C} {m/s} {C} {m/s} {C} {m/s} {deg} + Heating 1 -13.6 -10.9 -24.4 0.4 -12 -21.7 0.5 -9.3 14.1 2.1 12.6 -0.3 7.2 320 + + Design Stat HottestMonth DBR DB004 WB_DB004 DB010 WB_DB010 DB020 WB_DB020 WB004 DB_WB004 WB010 DB_WB010 WB020 DB_WB020 WS_DB004 WD_DB004 DP004 HR_DP004 DB_DP004 DP010 HR_DP010 DB_DP010 DP020 HR_DP020 DB_DP020 EN004 DB_EN004 EN010 DB_EN010 EN020 DB_EN020 #Hrs_8-4_&_DB-12.8/20.6 + Units {} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {m/s} {deg} {C} {} {C} {C} {} {C} {C} {} {C} {kJ/kg} {C} {kJ/kg} {C} {kJ/kg} {C} {} + Cooling 7 8.4 32.7 22.9 30.9 22.2 29.1 21.4 24.6 30.2 23.7 28.6 22.8 27.1 6.3 270 22.8 17.6 27.3 22 16.7 26.2 21.2 15.9 25.5 74.1 30.6 70.4 28.5 67 27.2 765 + + Design Stat WS010 WS025 WS050 WBmax DBmin_mean DBmax_mean DBmin_stddev DBmax_stddev DBmin05years DBmax05years DBmin10years DBmax10years DBmin20years DBmax20years DBmin50years DBmax50years + Units {m/s} {m/s} {m/s} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} {C} + Extremes 12 10.8 9.3 27 -16.5 35.3 2.5 1.6 -18.3 36.5 -19.7 37.4 -21.1 38.4 -22.9 39.5 + + - Displaying Monthly Design Conditions "Climate Design Data 2009 ASHRAE Handbook" + - Monthly Optical Sky Depth Beam (taub) and Diffuse (taud) + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + taub (beam) 0.318 0.335 0.374 0.400 0.425 0.472 0.488 0.470 0.391 0.361 0.340 0.313 + taud (diffuse) 2.372 2.277 2.131 2.094 2.068 1.964 1.950 1.992 2.284 2.321 2.339 2.452 + + taub = Clear Sky Optical Depth for Beam Irradiance + taud = Clear Sky Optical Depth for Diffuse Irradiance + + - Monthly Solar Irradiance Wh/m (noon on 21st of month) + ib (beam) 820 861 864 867 852 810 792 792 839 821 783 796 + id (diffuse) 91 112 141 155 162 180 181 169 120 105 93 80 + + ib = Clear Sky Noon Beam Normal Irradiance on 21st Day + id = Clear Sky Noon Diffuse Horizontal Irradiance on 21st Day + + - Monthly Drybulb and Mean Coincident Wetbulb Temperatures C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Drybulb 0.4% 15.3 15.4 22.1 27.5 31.1 34.0 35.4 34.1 30.9 26.5 21.8 18.0 + Coincident Wetbulb 0.4% 12.8 11.8 14.3 17.3 20.3 22.6 24.4 23.7 22.3 18.8 16.6 14.5 + Drybulb 2.0% 11.3 11.7 15.9 21.3 27.1 31.3 32.8 31.9 28.2 22.9 18.5 14.2 + Coincident Wetbulb 2.0% 9.2 8.4 11.0 13.9 18.0 21.8 23.2 23.1 20.9 17.3 15.0 11.4 + Drybulb 5.0% 8.2 9.1 12.7 17.7 23.8 29.0 31.0 29.7 26.1 20.7 16.3 11.5 + Coincident Wetbulb 5.0% 6.0 6.2 8.6 11.6 16.5 20.9 22.3 22.2 20.1 15.8 13.1 8.8 + Drybulb 10.% 5.9 6.9 10.1 14.9 21.0 26.9 29.1 28.0 24.0 18.6 14.0 8.8 + Coincident Wetbulb 10.% 3.7 4.1 6.5 10.3 15.1 19.6 21.6 21.4 19.0 14.8 11.1 6.0 + + Drybulb 0.4% = 0.4% Monthly Design Drybulb Temperature + Coincident Wetbulb 0.4% = 0.4% Monthly Mean Coincident Wetbulb Temperature + Drybulb 2.0% = 2.0% Monthly Design Drybulb Temperature + Coincident Wetbulb 2.0% = 2.0% Monthly Mean Coincident Wetbulb Temperature + Drybulb 5.0% = 5.0% Monthly Design Drybulb Temperature + Coincident Wetbulb 5.0% = 5.0% Monthly Mean Coincident Wetbulb Temperature + Drybulb 10.% = 10.% Monthly Design Drybulb Temperature + Coincident Wetbulb 10.% = 10.% Monthly Mean Coincident Wetbulb Temperature + + - Monthly Drybulb and Wetbulb Daily Ranges deltaC + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Drybulb 7.3 7.5 7.6 7.9 8.4 8.7 8.4 7.9 8.0 7.9 7.3 7.0 + Drybulb range - DB 5% 10.0 10.1 12.1 13.5 13.3 12.2 11.2 10.5 10.6 10.8 10.4 9.6 + Wetbulb range - DB 5% 9.1 8.3 8.6 7.8 6.8 6.1 4.8 4.4 5.4 6.7 8.2 8.5 + + Drybulb = Mean Daily Dry Bulb Temperature Range + Drybulb range - DB 5% = Mean Daily Dry Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature + Wetbulb range - DB 5% = Mean Daily Wet Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature + + - Displaying Heating/Cooling Degree Days/Hours from "Climate Design Data 2009 ASHRAE Handbook" + - Monthly Standard Heating/Cooling Degree Days/Hours + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + HDD base 10C 352 281 207 67 7 0 0 0 1 20 106 257 + HDD base 18.3C 609 513 458 285 141 32 3 4 44 189 333 511 + + CDD base 10C 1 1 8 33 138 295 404 382 249 93 23 4 + CDD base 18.3C 0 0 1 1 14 77 148 128 43 4 1 0 + + CDH base 23.3C 0 0 4 28 133 603 1191 893 239 24 1 0 + CDH base 26.7C 0 0 1 8 40 208 439 288 57 3 0 0 + + - 1632 annual (standard) cooling degree-days (10C baseline) + - 1297 annual (standard) heating degree-days (10C baseline) + + - 417 annual (standard) cooling degree-days (18.3C baseline) + - 3123 annual (standard) heating degree-days (18.3C baseline) + + - Monthly Statistics for Dry Bulb temperatures C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 13.3 8.3 25.0 32.8 30.0 33.3 37.2 31.7 31.1 26.1 20.6 14.4 + Day:Hour 27:24 11:24 29:14 27:17 29:14 26:13 9:15 5:15 14:14 1:08 18:12 29:14 + + Minimum -20.0 -12.8 -6.7 -0.6 2.8 8.9 14.4 12.2 7.8 1.1 -7.8 -8.9 + Day:Hour 23:02 17:06 17:05 7:07 1:05 7:24 1:04 27:05 29:06 31:06 26:23 3:01 + + Daily Avg -3.0 -0.5 3.8 8.6 14.9 18.9 23.4 21.7 18.1 12.2 6.3 2.2 + + - Maximum Dry Bulb temperature of 37.2C on Jul 9 + - Minimum Dry Bulb temperature of -20.0C on Jan 23 + + - Monthly Statistics for Extreme Dry Bulb temperatures C + #Days Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Max >= 32 2 2 5 + Max <= 0 14 7 2 3 + Min <= 0 29 20 15 3 8 20 + Min <=-18 2 + + - Monthly Statistics for Dew Point temperatures C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 12.2 4.4 12.2 15.0 19.4 21.7 22.8 23.3 19.4 20.6 16.7 11.7 + Day:Hour 27:13 27:22 30:21 27:12 28:11 26:17 21:07 4:13 18:10 1:04 18:03 24:20 + + Minimum -32.2 -21.1 -19.4 -13.9 -7.2 -0.6 7.2 1.1 0.6 -7.2 -18.3 -20.6 + Day:Hour 22:23 17:05 14:18 7:18 1:04 3:17 16:13 25:11 24:07 25:15 26:16 13:18 + + Daily Avg -10.1 -8.1 -4.1 1.7 8.4 12.3 15.9 16.1 11.8 5.4 0.8 -5.0 + + - Maximum Dew Point temperature of 23.3C on Aug 4 + - Minimum Dew Point temperature of -32.2C on Jan 22 + + - Average Hourly Statistics for Dry Bulb temperatures C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 -3.9 -1.6 2.0 6.9 12.9 16.5 21.1 19.6 16.0 10.4 5.6 1.0 + 1:01- 2:00 -4.0 -2.0 1.7 6.7 12.5 16.2 20.8 19.3 15.7 10.1 5.4 0.9 + 2:01- 3:00 -4.3 -2.1 1.4 6.4 12.3 16.2 20.5 19.1 15.3 9.8 5.3 0.7 + 3:01- 4:00 -4.4 -2.4 1.3 6.4 12.0 16.1 20.1 18.8 14.9 9.8 4.9 0.5 + 4:01- 5:00 -4.4 -2.5 1.0 6.0 11.9 16.2 19.9 18.6 14.6 9.6 4.6 0.5 + 5:01- 6:00 -4.5 -2.5 0.9 6.3 12.2 16.6 20.6 19.0 14.6 9.5 4.4 0.5 + 6:01- 7:00 -4.6 -2.5 1.1 7.2 13.0 17.4 21.8 20.1 15.7 10.0 4.4 0.4 + 7:01- 8:00 -4.6 -2.1 2.4 8.3 14.1 18.5 23.0 21.5 17.3 11.2 4.9 0.7 + 8:01- 9:00 -4.1 -1.7 3.8 9.4 15.3 19.4 24.3 22.7 18.6 12.3 5.6 1.4 + 9:01-10:00 -3.3 -0.9 4.8 10.1 16.3 20.1 25.4 23.5 19.8 13.5 6.6 2.3 + 10:01-11:00 -2.3 0.0 5.7 10.7 16.8 20.7 26.2 24.1 20.7 14.4 7.3 3.0 + 11:01-12:00 -1.8 0.6 6.3 11.2 17.1 21.3 26.4 24.6 21.4 15.1 7.8 3.9 + 12:01-13:00 -1.3 1.1 6.5 11.1 17.5 21.6 26.8 24.7 21.9 15.5 8.2 4.4 + 13:01-14:00 -0.9 1.6 6.6 10.7 17.7 21.9 26.7 25.0 21.7 15.8 8.3 4.7 + 14:01-15:00 -0.8 1.9 6.7 10.7 17.8 22.3 26.5 24.8 21.6 15.6 8.2 4.5 + 15:01-16:00 -1.1 1.9 6.4 10.5 17.7 21.6 25.7 24.4 21.0 15.2 8.0 4.1 + 16:01-17:00 -1.5 1.5 5.9 10.1 17.3 21.1 25.1 23.5 20.5 14.1 7.2 3.5 + 17:01-18:00 -1.8 1.1 5.1 9.5 16.5 20.5 24.6 22.7 19.3 13.2 6.8 3.0 + 18:01-19:00 -2.1 0.6 4.5 8.8 15.7 19.6 24.2 21.8 18.6 12.7 6.6 2.6 + 19:01-20:00 -2.4 0.2 4.0 8.5 15.1 18.9 23.3 21.5 17.9 12.3 6.3 2.3 + 20:01-21:00 -2.8 -0.1 3.6 8.2 14.4 18.2 22.8 20.9 17.4 11.7 6.2 2.1 + 21:01-22:00 -3.2 -0.5 3.3 7.7 14.0 17.7 22.1 20.5 17.0 11.2 6.0 1.9 + 22:01-23:00 -3.5 -0.9 2.8 7.3 13.7 17.4 21.8 20.1 16.6 10.7 5.9 1.7 + 23:01-24:00 -3.8 -1.1 2.4 7.0 13.4 16.8 21.4 19.6 16.3 10.3 5.7 1.3 + Max Hour 15 15 15 12 15 15 13 14 13 14 14 14 + Min Hour 7 6 6 5 5 4 5 5 5 6 7 7 + + - Average Hourly Statistics for Dew Point temperatures C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 -10.5 -8.7 -4.5 1.2 7.9 12.0 16.0 16.2 12.0 5.8 0.8 -5.3 + 1:01- 2:00 -10.4 -8.8 -4.5 1.3 7.7 11.8 16.1 16.1 11.8 5.6 0.9 -5.2 + 2:01- 3:00 -10.4 -8.8 -4.4 1.4 7.5 11.7 16.2 16.1 11.8 5.6 0.8 -5.2 + 3:01- 4:00 -10.5 -9.1 -4.5 1.4 7.6 11.7 16.2 15.9 11.4 5.5 0.7 -5.1 + 4:01- 5:00 -10.5 -9.2 -4.7 1.6 7.6 11.7 16.3 16.0 11.2 5.4 0.6 -5.4 + 5:01- 6:00 -10.5 -9.2 -4.8 2.0 7.8 11.9 16.3 16.0 11.2 5.4 0.4 -5.3 + 6:01- 7:00 -10.7 -9.2 -4.5 2.1 8.0 12.3 16.5 16.1 11.5 5.5 0.5 -5.1 + 7:01- 8:00 -10.9 -9.0 -4.3 2.3 8.4 12.7 16.4 16.1 11.7 5.6 0.6 -5.2 + 8:01- 9:00 -10.8 -8.6 -4.5 2.4 8.4 12.7 16.6 16.0 11.9 5.6 0.9 -5.2 + 9:01-10:00 -10.8 -8.2 -4.3 2.0 8.9 12.8 16.1 16.1 11.8 5.8 1.1 -5.2 + 10:01-11:00 -10.4 -7.8 -4.1 2.2 9.0 12.5 16.0 15.8 11.7 5.6 1.0 -4.9 + 11:01-12:00 -10.1 -7.5 -3.9 2.5 9.1 12.7 15.8 16.0 11.5 5.6 1.0 -4.6 + 12:01-13:00 -9.8 -7.2 -3.6 2.6 9.3 12.6 15.6 16.1 11.5 5.3 1.0 -4.4 + 13:01-14:00 -9.4 -7.0 -3.5 2.5 9.0 12.6 15.3 16.1 11.8 5.2 0.9 -4.4 + 14:01-15:00 -9.1 -6.9 -3.7 2.6 8.9 12.4 15.4 16.0 11.6 5.0 0.8 -4.5 + 15:01-16:00 -9.1 -6.9 -3.6 2.1 8.8 12.5 15.3 16.0 11.5 4.9 0.8 -4.7 + 16:01-17:00 -9.3 -7.0 -3.9 1.9 8.7 12.4 15.6 16.2 11.8 5.1 0.8 -4.8 + 17:01-18:00 -9.4 -7.4 -3.8 1.4 8.8 12.3 15.7 16.2 12.1 5.3 0.9 -4.9 + 18:01-19:00 -9.6 -7.6 -3.6 0.8 8.7 12.4 15.6 16.1 12.3 5.2 0.8 -4.9 + 19:01-20:00 -9.7 -7.8 -3.6 1.0 8.8 12.5 15.6 16.1 12.5 5.2 0.7 -5.1 + 20:01-21:00 -9.9 -8.1 -3.5 1.0 8.5 12.4 15.8 16.2 12.5 5.0 0.5 -5.2 + 21:01-22:00 -10.2 -8.1 -3.6 1.1 8.3 12.2 16.0 16.1 12.4 5.0 0.5 -5.1 + 22:01-23:00 -10.1 -8.0 -3.8 1.0 8.4 12.1 16.1 16.1 12.3 5.0 0.6 -5.0 + 23:01-24:00 -10.3 -8.3 -4.1 1.0 8.5 12.1 16.1 16.0 12.3 5.3 0.6 -5.2 + Max Hour 16 15 14 13 13 10 9 21 20 1 10 14 + Min Hour 8 5 6 19 3 3 14 11 5 16 6 5 + + - Monthly Statistics for Relative Humidity % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 96 100 100 100 100 100 100 100 100 100 100 100 + Day:Hour 26:18 27:19 27:08 3:01 17:16 23:04 1:01 1:02 2:13 3:24 4:09 11:15 + + Minimum 25 28 21 20 21 20 23 28 29 20 20 19 + Day:Hour 18:16 2:17 17:16 7:18 22:16 24:15 11:13 25:15 7:12 25:15 2:14 28:12 + + Daily Avg 61 58 60 67 69 69 66 73 69 66 71 59 + + - Average Hourly Relative Humidity % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 63 60 65 71 73 77 75 82 78 75 73 62 + 1:01- 2:00 64 61 66 72 74 77 76 84 79 76 74 63 + 2:01- 3:00 65 61 67 73 74 76 78 84 80 77 74 64 + 3:01- 4:00 65 61 67 73 76 77 80 84 80 76 75 65 + 4:01- 5:00 64 61 67 76 77 77 80 86 81 76 76 64 + 5:01- 6:00 64 61 67 76 76 75 78 84 81 77 77 64 + 6:01- 7:00 64 61 67 73 74 74 74 79 77 75 77 65 + 7:01- 8:00 63 60 63 69 72 71 69 73 71 70 76 64 + 8:01- 9:00 62 61 57 66 68 67 64 68 66 65 73 61 + 9:01-10:00 58 59 54 62 65 65 59 65 62 62 71 57 + 10:01-11:00 56 57 52 61 64 62 56 62 58 58 67 57 + 11:01-12:00 55 56 51 60 63 61 55 61 55 56 65 55 + 12:01-13:00 55 56 52 61 63 60 54 61 54 54 64 54 + 13:01-14:00 55 55 53 62 61 59 53 60 56 53 64 53 + 14:01-15:00 57 55 52 63 61 58 54 61 55 53 64 53 + 15:01-16:00 58 54 53 62 61 61 57 63 57 54 64 54 + 16:01-17:00 59 56 53 63 62 63 60 66 60 58 67 56 + 17:01-18:00 59 56 57 63 65 64 61 70 65 62 69 57 + 18:01-19:00 60 56 59 63 67 67 62 72 68 63 70 58 + 19:01-20:00 60 57 60 64 69 70 65 74 72 65 70 58 + 20:01-21:00 61 57 62 65 71 72 68 76 74 66 70 58 + 21:01-22:00 62 58 63 67 71 73 71 78 75 68 71 59 + 22:01-23:00 63 60 64 69 73 74 72 79 76 71 71 60 + 23:01-24:00 63 60 64 70 74 76 73 81 78 73 71 61 + Max Hour 4 3 7 6 5 2 5 5 5 3 7 7 + Min Hour 13 16 12 12 15 15 14 14 13 14 15 14 + + - Monthly Indicators for Precipitation/Moisture (kPa) + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0.3 0.4 0.5 0.8 1.2 1.5 1.8 1.9 1.4 1.0 0.7 0.5 + + - Monthly Statistics for Wind Chill/Heat Index temperatures C ** + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Minimum WC -46 -28 -27 -12 -7 6 4 -8 -23 -27 + Day:Hour 23:01 2:07 18:05 8:06 1:06 8:02 29:06 31:06 26:05 3:03 + + Average WC -13 -10 -6 -2 0 7 6 1 -3 -8 + Avg Del WC 10 9 8 8 7 2 3 6 7 9 + # Hours WC 702 665 660 475 92 6 12 242 522 676 + + Maximum HI 28 31 35 37 36 29 + Day:Hour 27:14 29:14 26:16 9:18 4:13 14:17 + + Average HI 28 30 31 30 31 28 + Avg Del HI 0 1 1 1 2 0 + # Hours HI 1 5 48 75 73 7 + + - **WindChill/HeatIndex Temps -- statistics...only those different from Air Temps + + - Monthly Wind Direction % {N=0 or 360,E=90,S=180,W=270} + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + North 16 5 13 6 6 13 10 7 7 18 24 9 + NorthEast 3 4 5 12 15 12 5 7 4 6 9 3 + East 2 7 4 8 13 11 8 8 3 6 7 2 + SouthEast 3 5 7 8 14 8 15 11 5 5 8 4 + South 8 7 4 9 13 5 12 12 9 4 7 13 + SouthWest 11 11 11 26 11 22 11 19 22 17 7 15 + West 19 27 23 15 13 17 13 14 27 20 14 26 + NorthWest 37 35 33 18 16 13 26 23 23 24 23 28 + + - Monthly Statistics for Wind Speed m/s + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 15.9 15.4 13.9 14.4 13.9 10.8 10.3 14.4 21.6 12.4 12.4 16.5 + Day:Hour 14:09 25:08 18:09 11:02 9:11 1:14 9:21 2:16 6:18 6:17 27:20 6:05 + + Minimum 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 + Day:Hour 2:19 10:23 23:07 28:03 27:24 4:06 3:04 13:03 13:12 3:08 4:20 4:12 + + Daily Avg 5.8 5.9 6.0 6.5 5.6 4.9 5.0 5.3 4.6 5.3 4.9 6.1 + + - Maximum Wind Speed of 21.6 m/s on Sep 6 + - Minimum Wind Speed of 0.0 m/s on Jan 2 + + - Average Hourly Statistics for Wind Speed m/s + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 5.8 5.1 5.7 6.0 4.4 3.9 4.3 4.7 4.2 4.9 4.5 6.3 + 1:01- 2:00 5.4 5.4 5.7 6.1 4.6 4.0 4.5 4.4 4.1 4.8 4.2 6.1 + 2:01- 3:00 5.6 5.3 5.7 5.5 5.1 4.0 4.2 4.1 3.7 4.6 4.7 6.1 + 3:01- 4:00 5.4 5.2 5.8 5.8 4.9 4.1 4.1 4.2 3.9 5.1 4.6 6.1 + 4:01- 5:00 5.4 5.1 5.4 5.9 4.8 4.4 4.3 4.5 3.8 4.7 4.5 6.3 + 5:01- 6:00 5.9 5.6 5.2 6.1 5.0 4.2 4.4 4.4 3.9 5.0 4.1 6.0 + 6:01- 7:00 5.6 5.7 5.2 6.1 5.2 4.4 4.3 4.7 3.7 5.3 4.1 5.4 + 7:01- 8:00 5.8 5.9 5.7 6.2 5.3 4.6 4.4 5.0 4.7 5.4 4.4 5.5 + 8:01- 9:00 6.1 5.9 5.9 6.2 5.4 4.8 4.8 5.3 4.3 5.3 4.7 5.7 + 9:01-10:00 5.8 6.4 6.2 6.6 5.8 5.0 4.9 5.4 4.4 5.8 5.4 5.9 + 10:01-11:00 6.0 6.6 6.5 6.4 6.4 5.7 5.5 5.9 5.3 5.9 5.2 5.8 + 11:01-12:00 5.5 6.8 6.5 6.5 7.0 5.9 5.9 6.3 5.1 5.8 5.1 5.6 + 12:01-13:00 5.8 6.7 7.1 7.6 7.0 6.2 6.1 6.5 5.6 5.8 5.5 6.1 + 13:01-14:00 6.0 7.0 7.0 7.7 6.7 6.3 6.5 6.4 5.8 6.0 5.5 6.1 + 14:01-15:00 5.9 6.8 7.3 7.5 6.7 6.6 6.1 6.3 6.1 5.8 5.7 6.8 + 15:01-16:00 5.5 6.6 6.8 7.6 6.6 6.0 6.0 6.7 5.5 5.6 5.4 6.5 + 16:01-17:00 5.6 6.5 6.7 7.3 6.3 5.8 5.7 6.4 5.2 5.4 5.2 6.1 + 17:01-18:00 6.0 5.9 6.3 6.8 6.4 5.9 5.4 5.6 5.3 5.3 5.1 6.0 + 18:01-19:00 5.9 6.0 5.9 6.8 5.9 4.8 4.8 5.2 4.5 5.5 4.8 6.2 + 19:01-20:00 5.7 5.6 5.6 6.6 5.1 4.8 4.6 5.1 4.4 5.4 5.2 6.6 + 20:01-21:00 5.8 5.6 5.6 6.6 5.0 4.7 4.6 5.0 4.0 5.4 5.0 6.5 + 21:01-22:00 5.8 5.3 5.9 6.0 4.9 4.3 4.6 4.8 4.1 5.3 4.8 6.6 + 22:01-23:00 5.8 5.4 5.5 5.9 4.5 4.1 4.5 4.8 4.2 5.2 4.7 6.6 + 23:01-24:00 6.0 5.2 5.5 6.2 4.3 3.7 4.4 4.9 4.1 5.1 4.8 6.0 + Max Hour 9 14 15 14 12 15 14 16 15 14 15 15 + Min Hour 5 1 7 3 24 24 4 3 3 3 6 7 + + - Average Hourly Statistics for Wind Direction {N=0 or 360,E=90,S=180,W=270} + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 268 240 258 198 205 197 234 229 242 252 239 248 + 1:01- 2:00 280 235 263 213 196 207 229 226 251 255 250 246 + 2:01- 3:00 265 251 265 196 197 227 228 205 231 244 247 233 + 3:01- 4:00 252 232 280 196 185 216 228 225 254 252 256 242 + 4:01- 5:00 248 245 284 191 209 223 235 226 255 246 266 235 + 5:01- 6:00 280 248 284 200 199 200 237 211 257 262 253 237 + 6:01- 7:00 277 236 253 205 186 199 224 230 256 265 280 245 + 7:01- 8:00 280 226 253 202 186 164 209 234 240 228 230 233 + 8:01- 9:00 283 228 238 201 184 185 218 208 250 247 235 246 + 9:01-10:00 258 229 228 198 163 174 218 208 233 213 203 261 + 10:01-11:00 258 225 206 192 154 161 187 207 229 235 164 254 + 11:01-12:00 260 227 225 191 152 157 194 203 218 220 177 239 + 12:01-13:00 246 221 210 174 150 161 190 199 220 194 186 249 + 13:01-14:00 237 231 216 180 149 167 211 192 214 202 182 233 + 14:01-15:00 243 234 217 169 145 173 189 189 220 211 183 228 + 15:01-16:00 226 236 207 179 147 161 196 195 220 213 175 227 + 16:01-17:00 240 239 210 181 153 152 184 186 221 208 193 231 + 17:01-18:00 234 244 223 185 156 161 197 195 205 200 199 240 + 18:01-19:00 231 248 221 193 157 161 198 190 219 225 193 241 + 19:01-20:00 256 244 234 207 181 161 225 203 195 239 207 245 + 20:01-21:00 253 246 244 198 162 160 238 214 232 241 218 244 + 21:01-22:00 255 265 247 202 183 190 226 217 225 247 208 248 + 22:01-23:00 251 264 252 221 172 191 228 206 235 240 207 250 + 23:01-24:00 270 249 255 216 177 168 225 214 228 243 216 239 + Max Hour 9 22 5 23 5 3 21 8 6 7 7 10 + Min Hour 16 13 11 15 15 17 17 17 20 13 11 16 + + - Monthly Statistics for Liquid Precipitation mm + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Total 0 0 0 0 0 97 0 0 0 0 0 69 + Max Hourly 0 0 0 0 0 23 0 0 0 0 0 9 + + - Monthly Statistics for Albedo + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Average 0.000 0.000 0.000 0.000 0.000 0.130 0.000 0.000 0.000 0.000 0.000 0.160 + + - Monthly Statistics for Solar Radiation (Direct Normal, Diffuse, Global Horizontal) Wh/m + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Direct Avg 2665 3307 3532 3788 4513 4461 4652 4232 4188 3387 2674 2507 + + Direct Max 6585 6931 9083 8862 10617 8422 9506 8063 8669 7900 7233 5032 + Day 5 16 17 13 22 20 15 25 9 7 2 28 + + Diffuse Avg 881 1373 1711 2160 2463 2562 2782 2492 1849 1393 997 743 + + Global Avg 1791 2776 3608 4512 5572 5764 6068 5347 4258 2985 2007 1528 + - Maximum Direct Normal Solar of 10617 Wh/m on May 22 + + - Average Hourly Statistics for Direct Normal Solar Radiation Wh/m + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 1 14 0 10 1 0 0 0 0 + 5:01- 6:00 0 0 2 67 123 105 118 49 23 1 0 0 + 6:01- 7:00 0 11 105 222 232 193 238 174 184 80 14 0 + 7:01- 8:00 72 141 290 316 344 294 324 292 337 275 137 0 + 8:01- 9:00 251 277 369 343 419 347 371 369 459 380 263 293 + 9:01-10:00 381 382 397 380 460 393 451 442 462 407 312 366 + 10:01-11:00 387 404 424 398 426 417 457 447 451 430 338 325 + 11:01-12:00 383 423 387 371 441 420 465 454 440 396 378 321 + 12:01-13:00 359 439 411 352 449 455 457 478 443 394 384 366 + 13:01-14:00 360 390 345 323 407 442 423 441 422 360 374 341 + 14:01-15:00 278 373 306 349 401 390 404 336 367 327 297 289 + 15:01-16:00 167 308 264 285 314 381 369 357 306 250 163 205 + 16:01-17:00 29 148 189 243 271 328 294 253 223 83 16 0 + 17:01-18:00 0 11 42 130 164 198 211 119 71 3 0 0 + 18:01-19:00 0 0 0 9 46 97 59 21 1 0 0 0 + 19:01-20:00 0 0 0 0 0 0 1 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour* 11* 13 11* 11* 10* 13 12 13 10* 11* 13 13 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Diffuse Horizontal Solar Radiation Wh/m + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 11 0 11 1 0 0 0 0 + 5:01- 6:00 0 0 2 23 51 71 56 30 13 1 0 0 + 6:01- 7:00 0 4 31 67 103 122 113 89 62 31 7 0 + 7:01- 8:00 18 46 83 122 155 182 162 157 111 81 44 0 + 8:01- 9:00 59 105 137 173 193 204 235 200 149 129 88 73 + 9:01-10:00 95 150 178 208 228 228 269 247 199 157 127 96 + 10:01-11:00 133 195 201 237 267 250 295 270 219 185 157 109 + 11:01-12:00 143 206 228 266 281 259 308 279 235 192 158 143 + 12:01-13:00 139 200 216 267 269 270 289 291 226 200 150 119 + 13:01-14:00 131 184 224 258 265 259 297 278 226 169 123 99 + 14:01-15:00 99 141 175 213 227 238 246 256 184 135 89 73 + 15:01-16:00 51 95 136 166 186 198 206 180 131 83 46 32 + 16:01-17:00 13 42 76 105 132 149 160 126 72 30 8 0 + 17:01-18:00 0 4 22 46 74 96 92 70 23 1 0 0 + 18:01-19:00 0 0 0 8 22 36 40 17 1 0 0 0 + 19:01-20:00 0 0 0 0 0 0 3 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour 12 12 12 13 12 13 12 13 12 13 12 12 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Global Horizontal Solar Radiation Wh/m + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 12 0 12 1 0 0 0 0 + 5:01- 6:00 0 0 2 30 73 94 79 36 15 1 0 0 + 6:01- 7:00 0 6 45 126 187 199 199 140 98 39 8 0 + 7:01- 8:00 24 66 163 263 339 348 335 294 239 153 64 0 + 8:01- 9:00 109 188 302 379 480 451 489 429 393 284 165 131 + 9:01-10:00 217 310 406 484 596 554 633 578 503 371 251 209 + 10:01-11:00 291 400 487 558 642 629 702 642 552 444 315 234 + 11:01-12:00 314 440 505 579 682 654 740 676 574 440 344 277 + 12:01-13:00 295 443 510 559 671 694 710 703 558 436 331 265 + 13:01-14:00 269 382 450 507 605 644 663 633 513 359 273 215 + 14:01-15:00 179 296 345 444 521 541 557 493 393 269 176 143 + 15:01-16:00 77 181 245 315 373 443 441 381 260 148 70 53 + 16:01-17:00 15 61 123 191 248 308 301 226 129 40 9 0 + 17:01-18:00 0 5 27 68 115 157 157 95 31 2 0 0 + 18:01-19:00 0 0 0 8 27 50 47 19 1 0 0 0 + 19:01-20:00 0 0 0 0 0 0 3 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour* 12 13 13 12 12 13 12 13 12 11* 12 12 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Total Sky Cover % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 56 50 54 57 58 50 46 65 37 54 57 52 + 1:01- 2:00 60 54 52 62 54 54 47 62 36 50 61 49 + 2:01- 3:00 54 53 53 62 56 61 45 68 39 53 58 47 + 3:01- 4:00 54 51 53 62 56 63 53 64 33 63 57 43 + 4:01- 5:00 50 50 52 61 63 59 62 68 41 56 57 45 + 5:01- 6:00 52 53 56 58 63 58 62 67 55 60 62 52 + 6:01- 7:00 49 57 58 58 63 55 62 71 58 61 66 52 + 7:01- 8:00 54 64 55 58 57 49 63 65 55 60 64 52 + 8:01- 9:00 58 67 64 64 51 49 64 60 53 58 60 51 + 9:01-10:00 57 61 64 67 54 52 60 60 53 61 63 55 + 10:01-11:00 63 61 62 68 59 53 60 66 55 65 62 55 + 11:01-12:00 64 60 66 71 58 56 61 68 63 66 59 60 + 12:01-13:00 63 54 63 73 57 56 62 65 61 65 58 65 + 13:01-14:00 61 55 69 70 57 54 64 67 61 65 58 63 + 14:01-15:00 62 53 73 70 61 57 61 71 63 63 58 61 + 15:01-16:00 67 53 72 69 63 57 62 68 61 60 61 65 + 16:01-17:00 67 54 70 69 64 56 61 73 57 55 56 62 + 17:01-18:00 68 45 67 68 67 58 59 72 53 52 57 61 + 18:01-19:00 65 50 67 59 64 81 63 65 55 52 59 61 + 19:01-20:00 62 50 65 52 62 59 57 64 51 53 59 53 + 20:01-21:00 59 46 70 58 59 63 51 64 46 47 61 51 + 21:01-22:00 61 49 66 58 63 57 49 64 48 46 59 47 + 22:01-23:00 59 53 57 61 61 53 43 59 47 50 59 53 + 23:01-24:00 55 47 56 62 58 50 45 57 42 49 57 52 + Max Hour 18 9 15 13 18 19 14 17 12 12 7 16 + Min Hour 7 18 2 20 9 9 23 24 4 22 17 4 + + - Average Hourly Statistics for Opaque Sky Cover % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 49 43 48 53 55 47 42 62 33 45 53 47 + 1:01- 2:00 53 47 47 58 52 53 41 60 32 42 57 45 + 2:01- 3:00 47 46 48 54 53 59 37 65 34 46 53 45 + 3:01- 4:00 46 48 48 55 53 58 44 62 29 57 55 41 + 4:01- 5:00 45 45 45 52 56 57 49 57 33 54 53 42 + 5:01- 6:00 46 48 48 50 57 56 50 60 41 52 55 48 + 6:01- 7:00 42 49 48 54 57 54 51 57 38 47 58 47 + 7:01- 8:00 43 51 45 54 49 49 48 49 41 43 58 49 + 8:01- 9:00 46 56 47 55 45 47 48 47 36 44 53 50 + 9:01-10:00 41 50 52 57 45 49 43 44 41 46 54 51 + 10:01-11:00 49 50 51 56 52 50 44 47 47 50 55 54 + 11:01-12:00 50 52 57 58 50 55 47 50 53 52 51 59 + 12:01-13:00 55 50 56 61 52 55 46 50 49 53 49 63 + 13:01-14:00 51 53 59 62 50 52 50 51 49 53 46 61 + 14:01-15:00 56 50 61 61 51 56 48 55 53 52 44 59 + 15:01-16:00 59 50 61 61 56 54 50 49 50 49 47 64 + 16:01-17:00 59 48 60 59 57 52 50 53 46 49 44 61 + 17:01-18:00 64 43 57 57 59 55 47 52 45 48 45 59 + 18:01-19:00 63 47 60 50 57 76 49 50 48 48 48 55 + 19:01-20:00 58 46 57 47 57 55 50 50 46 46 51 52 + 20:01-21:00 56 41 63 55 56 60 48 53 44 43 54 49 + 21:01-22:00 56 45 60 54 59 55 47 58 43 41 55 46 + 22:01-23:00 55 49 52 57 58 50 39 54 41 41 56 51 + 23:01-24:00 49 45 51 59 55 48 40 54 37 40 53 49 + Max Hour 18 9 21 14 18 19 7 3 12 4 7 16 + Min Hour 10 21 5 20 9 9 3 10 4 24 15 4 + + - Monthly Calculated "undisturbed" Ground Temperatures** C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0.5 m -0.3 -1.4 0.5 3.5 11.2 17.2 21.2 22.5 20.4 15.7 9.5 3.8 + 2.0 m 3.6 1.7 2.1 3.7 8.9 13.5 17.3 19.3 18.9 16.2 12.0 7.5 + 4.0 m 6.9 4.9 4.5 5.1 8.0 11.2 14.1 16.1 16.5 15.4 12.9 9.8 + + - **These ground temperatures should NOT BE USED in the GroundTemperatures object to compute building floor losses. + - The temperatures for 0.5 m depth can be used for GroundTemperatures:Surface. + - The temperatures for 4.0 m depth can be used for GroundTemperatures:Deep. + - Calculations use a standard soil diffusivity of 2.3225760E-03 {m**2/day} + + - Heating/Cooling Degree Days/Hours calculated from this weather file. + - Heating/Cooling Degree Days/Hours from design conditions shown earlier in this report. + - Monthly Weather File Heating/Cooling Degree Days/Hours + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + HDD base 10C 404 295 209 74 5 0 0 0 0 19 128 244 + HDD base 18C 650 519 441 289 116 45 1 2 31 184 352 491 + + CDD base 10C 1 0 16 31 156 266 415 362 243 89 16 1 + CDD base 18C 0 0 0 6 20 71 168 116 34 5 0 0 + + CDH base 20C 0 0 30 207 366 1295 2856 1850 592 142 1 0 + CDH base 23C 0 0 8 130 120 584 1414 710 185 30 0 0 + CDH base 27C 0 0 0 54 9 148 464 138 21 0 0 0 + + - 1596 annual (wthr file) cooling degree-days (10C baseline) + - 1377 annual (wthr file) heating degree-days (10C baseline) + + - 419 annual (wthr file) cooling degree-days (18C baseline) + - 3120 annual (wthr file) heating degree-days (18C baseline) + + - Climate type "Dfa" (Kppen classification)** + - Humid continental (hot summer, cold winter, no dry season, lat. 30-60N) + - **Note that the Kppen classification shown here is derived algorithmically from the source weather data. + - It may not be indicative of the long term climate for this location. + + - Climate type "5A" (ASHRAE Standard 196-2006 Climate Zone)** + - Cool - Humid, Probable Kppen classification=Dfa, Humid Continental (Warm Summer) + - **Note that the ASHRAE classification shown here is derived algorithmically from the source weather data. + - It may not be indicative of the long term climate for this location. + + - Typical/Extreme Period Determination + + - Summer is Jun:Aug + Extreme Summer Week (nearest maximum temperature for summer) + Extreme Hot Week Period selected: Jul 6:Jul 12, Maximum Temp= 37.20C, Deviation=| 8.995|C + Typical Summer Week (nearest average temperature for summer) + Typical Week Period selected: Jul 27:Aug 2, Average Temp= 21.34C, Deviation=| 0.263|C + + - Winter is Dec:Feb + Extreme Winter Week (nearest minimum temperature for winter) + Extreme Cold Week Period selected: Jan 6:Jan 12, Minimum Temp= -20.00C, Deviation=|15.004|C + Typical Winter Week (nearest average temperature for winter) + Typical Week Period selected: Jan 27:Feb 2, Average Temp= -0.44C, Deviation=| 0.509|C + + - Autumn is Sep:Nov + Typical Autumn Week (nearest average temperature for autumn) + Typical Week Period selected: Oct 20:Oct 26, Average Temp= 12.21C, Deviation=| 0.249|C + + - Spring is Mar:May + Typical Spring Week (nearest average temperature for spring) + Typical Week Period selected: Mar 29:Apr 4, Average Temp= 9.08C, Deviation=| 0.061|C diff --git a/measures/ChangeBuildingLocation/tests/change_building_location_test.rb b/measures/ChangeBuildingLocation/tests/change_building_location_test.rb index a99bf9e..e6e596b 100644 --- a/measures/ChangeBuildingLocation/tests/change_building_location_test.rb +++ b/measures/ChangeBuildingLocation/tests/change_building_location_test.rb @@ -1,36 +1,6 @@ # ******************************************************************************* -# OpenStudio(R), Copyright (c) 2008-2018, Alliance for Sustainable Energy, LLC. -# All rights reserved. -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# (1) Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# (2) Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# (3) Neither the name of the copyright holder nor the names of any contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission from the respective party. -# -# (4) Other than as required in clauses (1) and (2), distributions in any form -# of modifications or other derivative works may not use the "OpenStudio" -# trademark, "OS", "os", or any other confusingly similar designation without -# specific prior written permission from Alliance for Sustainable Energy, LLC. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE -# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF -# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://openstudio.net/license # ******************************************************************************* require 'openstudio' @@ -51,12 +21,12 @@ def run_dir(test_name) end # method to apply arguments, run measure, and assert results (only populate args hash with non-default argument values) - def apply_measure_to_model(test_name, args, model_name = nil, result_value = 'Success', warnings_count = 0, info_count = nil) + def apply_measure_to_model(test_name, args, model_name = nil, result_value = 'Success', warnings_count = 0, info_count = nil, num_dsn_days = 3) # create an instance of the measure measure = ChangeBuildingLocation.new # create an instance of a runner with OSW - osw_path = OpenStudio::Path.new(File.dirname(__FILE__) + '/test.osw') + osw_path = OpenStudio::Path.new(File.dirname(__FILE__) + '/model_test.osw') osw = OpenStudio::WorkflowJSON.load(osw_path).get runner = OpenStudio::Measure::OSRunner.new(osw) @@ -119,6 +89,11 @@ def apply_measure_to_model(test_name, args, model_name = nil, result_value = 'Su # if 'Fail' passed in make sure at least one error message (while not typical there may be more than one message) if result_value == 'Fail' then assert(result.errors.size >= 1) end + # For tests expected to succeed, check for design days in the model + if result.value.valueName == 'Success' + assert_equal(num_dsn_days, model.getDesignDays.size, "Expected #{num_dsn_days} but found #{model.getDesignDays.size}.") + end + # save the model to test output directory output_file_path = OpenStudio::Path.new(File.dirname(__FILE__) + "/output/#{test_name}_test_output.osm") model.save(output_file_path, true) @@ -127,24 +102,46 @@ def apply_measure_to_model(test_name, args, model_name = nil, result_value = 'Su def test_weather_file args = {} args['weather_file_name'] = 'USA_MA_Boston-Logan.Intl.AP.725090_TMY3.epw' # seems to search directory of OSW even with empty file_paths - apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'test.osm', nil, nil) + apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'model_test.osm', nil, nil, nil) end def test_weather_file_WA_Renton args = {} args['weather_file_name'] = 'USA_WA_Renton.Muni.AP.727934_TMY3.epw' # seems to search directory of OSW even with empty file_paths - apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'test.osm', nil, nil) + args['set_year'] = 2012 + apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'model_test.osm', nil, 2, nil, 0) + end + + def test_weather_file_WA_Renton_test_as_deer + args = {} + args['weather_file_name'] = 'USA_WA_Renton.Muni.AP.727934_TMY3.epw' # seems to search directory of OSW even with empty file_paths + args['climate_zone'] = 'CEC T24-CEC5' + args['use_upstream_args'] = false + apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'model_test.osm', nil, 2, nil, 0) end def test_multiyear_weather_file args = {} args['weather_file_name'] = 'multiyear.epw' # seems to search directory of OSW even with empty file_paths - apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'test.osm', nil, nil) + apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'model_test.osm', nil, nil, nil) end def test_weather_file_bad args = {} args['weather_file_name'] = 'BadFileName.epw' # seems to search directory of OSW even with empty file_paths - apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'test.osm', 'Fail', nil) + apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'model_test.osm', 'Fail', nil, nil) + end + + def test_weather_file_monthly_design_days + args = {} + args['weather_file_name'] = 'CA_LOS-ANGELES-IAP_722950S_12.epw' # seems to search directory of OSW even with empty file_paths + apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'model_test.osm', nil, nil, nil, 10) + end + + def test_swap + args = {} + args['weather_file_name'] = 'USA_MA_Boston-Logan.Intl.AP.725090_TMY3.epw' + args['epw_gsub'] = 'TMY3,AMY' + apply_measure_to_model(__method__.to_s.gsub('test_', ''), args, 'model_test_with_epw.osm', nil, nil) end end diff --git a/measures/ChangeBuildingLocation/tests/test.osm b/measures/ChangeBuildingLocation/tests/model_test.osm similarity index 100% rename from measures/ChangeBuildingLocation/tests/test.osm rename to measures/ChangeBuildingLocation/tests/model_test.osm diff --git a/measures/ChangeBuildingLocation/tests/test.osw b/measures/ChangeBuildingLocation/tests/model_test.osw similarity index 100% rename from measures/ChangeBuildingLocation/tests/test.osw rename to measures/ChangeBuildingLocation/tests/model_test.osw diff --git a/measures/ChangeBuildingLocation/tests/model_test_with_epw.osm b/measures/ChangeBuildingLocation/tests/model_test_with_epw.osm new file mode 100644 index 0000000..9319dd3 --- /dev/null +++ b/measures/ChangeBuildingLocation/tests/model_test_with_epw.osm @@ -0,0 +1,8846 @@ + +OS:Version, + {6f6a9b1c-a10e-4653-bd1c-fa57d635172e}, !- Handle + 2.8.1; !- Version Identifier + +OS:SpaceType, + {a7add399-372e-443d-8845-f1bd4bc0f9ec}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3, !- Name + , !- Default Construction Set Name + {e616e917-6034-42ca-860a-cd0415e37d16}, !- Default Schedule Set Name + {aedb964f-eb50-464e-9c9d-48200ef74b2b}, !- Group Rendering Name + {e319a77c-70f8-4732-9ec1-382acf87067f}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + BreakRoom; !- Standards Space Type + +OS:Rendering:Color, + {aedb964f-eb50-464e-9c9d-48200ef74b2b}, !- Handle + Rendering Color 1, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {e616e917-6034-42ca-860a-cd0415e37d16}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {8ccf943f-ae43-4c4e-99ac-4ddaceb1e987}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 11.6250232500465, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {b748f3a9-2d10-4e8b-b726-60c26ba2ca30}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Lights, !- Name + {8ccf943f-ae43-4c4e-99ac-4ddaceb1e987}, !- Lights Definition Name + {a7add399-372e-443d-8845-f1bd4bc0f9ec}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, ! Handle + Office Bldg Light, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + {61ca0365-9a4a-4035-ac55-a9c18497f959}, ! Default Day Schedule Name + {d0f03645-373a-49fd-b04f-cd98f804eb7e}, ! Summer Design Day Schedule Name + {1fbe6df0-3c99-4b85-8f67-2be2f3ad592c}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Handle + Fraction, ! Name + 0, ! Lower Limit Value + 1, ! Upper Limit Value + CONTINUOUS; ! Numeric Type + +OS:Schedule:Day, + {61ca0365-9a4a-4035-ac55-a9c18497f959}, ! Handle + Office Bldg Light Default Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.3, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.7, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.5, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.3, !- Value Until Time 7 + 23, !- Hour 8 + 0, !- Minute 8 + 0.1, !- Value Until Time 8 + 24, !- Hour 9 + 0, !- Minute 9 + 0.05; !- Value Until Time 9 + +OS:Schedule:Day, + {d0f03645-373a-49fd-b04f-cd98f804eb7e}, ! Handle + Office Bldg Light Summer Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {1fbe6df0-3c99-4b85-8f67-2be2f3ad592c}, ! Handle + Office Bldg Light Winter Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {8ed15db3-3b90-4077-8e8f-f65877a5c9c4}, ! Handle + Office Bldg Light Rule 1, ! Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, ! Schedule Ruleset Name + 0, ! Rule Order + {ef76b94c-1873-42d3-a7d8-d666c23554aa}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {ef76b94c-1873-42d3-a7d8-d666c23554aa}, ! Handle + Office Bldg Light Rule 1 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.050000000000000003; ! Value Until Time 1 + +OS:Schedule:Rule, + {adfbf831-22d2-4027-afcd-271971b0d4f7}, ! Handle + Office Bldg Light Rule 2, ! Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, ! Schedule Ruleset Name + 1, ! Rule Order + {ca727cdc-c32b-49fe-bfad-1000d642623e}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {ca727cdc-c32b-49fe-bfad-1000d642623e}, ! Handle + Office Bldg Light Rule 2 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.050000000000000003, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.14999999999999999, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.050000000000000003; ! Value Until Time 5 + +OS:DesignSpecification:OutdoorAir, + {e319a77c-70f8-4732-9ec1-382acf87067f}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {4b8a589d-afa6-4e96-b486-7ae8ef90343f}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {80f7cd89-8f2d-4883-a183-b6be78d952ed}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 People, !- Name + {4b8a589d-afa6-4e96-b486-7ae8ef90343f}, !- People Definition Name + {a7add399-372e-443d-8845-f1bd4bc0f9ec}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, ! Handle + Office Misc Occ, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + {5b2fab88-05de-4734-8cb4-3dbe124c8f08}, ! Default Day Schedule Name + {38a28bbc-9440-453d-a1fd-e2af6cdb3d49}, ! Summer Design Day Schedule Name + {9cc34f24-09aa-4eec-9197-7bb4c101aaa7}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {5b2fab88-05de-4734-8cb4-3dbe124c8f08}, ! Handle + Office Bldg Occ Default Schedule 1, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.200000002980232, !- Value Until Time 3 + 20, !- Hour 4 + 0, !- Minute 4 + 0.400000005960464, !- Value Until Time 4 + 22, !- Hour 5 + 0, !- Minute 5 + 0.100000001490116, !- Value Until Time 5 + 24, !- Hour 6 + 0, !- Minute 6 + 0.0500000007450581; !- Value Until Time 6 + +OS:Schedule:Day, + {38a28bbc-9440-453d-a1fd-e2af6cdb3d49}, ! Handle + Office Bldg Occ Summer Design Day 1, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003; ! Value Until Time 3 + +OS:Schedule:Day, + {9cc34f24-09aa-4eec-9197-7bb4c101aaa7}, ! Handle + Office Bldg Occ Winter Design Day 1, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {85b4c471-de38-43da-a233-71e8cf10c8dd}, ! Handle + Office Misc Occ Rule 1, ! Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, ! Schedule Ruleset Name + 0, ! Rule Order + {53b51d4c-0a8c-4b5d-a4de-f55aa156ae72}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {53b51d4c-0a8c-4b5d-a4de-f55aa156ae72}, ! Handle + Office Bldg Occ Rule 1 Day Schedule 1, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {428044e1-22a0-40e5-9f2d-d166e0bfc54c}, ! Handle + Office Misc Occ Rule 2, ! Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, ! Schedule Ruleset Name + 1, ! Rule Order + {44e115e6-4d07-4e1f-94d3-f40a7d77e280}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {44e115e6-4d07-4e1f-94d3-f40a7d77e280}, ! Handle + Office Bldg Occ Rule 2 Day Schedule 1, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 14, !- Hour 3 + 0, !- Minute 3 + 0.25, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.100000001490116, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0; !- Value Until Time 5 + +OS:Schedule:Ruleset, + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, ! Handle + Office Activity, ! Name + {9facda4a-1f55-4db7-a9bd-a47c5a28fa4d}, ! Schedule Type Limits Name + {a739f292-881a-4773-ab10-883c1f7cecf6}, ! Default Day Schedule Name + {c9bf4610-fde3-4b80-b630-f7f294175e8e}, ! Summer Design Day Schedule Name + {aae61424-e998-4e5b-9b54-f2c7109fe978}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {9facda4a-1f55-4db7-a9bd-a47c5a28fa4d}, !- Handle + ActivityLevel, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:Schedule:Day, + {a739f292-881a-4773-ab10-883c1f7cecf6}, ! Handle + Office Activity Default Schedule, ! Name + {9facda4a-1f55-4db7-a9bd-a47c5a28fa4d}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 132; !- Value Until Time 1 + +OS:Schedule:Day, + {c9bf4610-fde3-4b80-b630-f7f294175e8e}, ! Handle + Office Activity Summer Design Day, ! Name + {9facda4a-1f55-4db7-a9bd-a47c5a28fa4d}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 132; !- Value Until Time 1 + +OS:Schedule:Day, + {aae61424-e998-4e5b-9b54-f2c7109fe978}, ! Handle + Office Activity Winter Design Day, ! Name + {9facda4a-1f55-4db7-a9bd-a47c5a28fa4d}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 132; !- Value Until Time 1 + +OS:SpaceInfiltration:DesignFlowRate, + {fd88d4f8-24db-4b6e-bfcd-f095b915d296}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Infiltration, !- Name + {a7add399-372e-443d-8845-f1bd4bc0f9ec}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:Schedule:Ruleset, + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, ! Handle + Office Infil Quarter On, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + {6de9ca91-ac89-4757-9875-27839e7451eb}, ! Default Day Schedule Name + {dca24918-e5bd-4e76-82a9-63a2e7062999}, ! Summer Design Day Schedule Name + {121051e3-1e70-4e60-b0b2-8d1746ed2f17}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {6de9ca91-ac89-4757-9875-27839e7451eb}, ! Handle + Office Infil Quarter On Default Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {dca24918-e5bd-4e76-82a9-63a2e7062999}, ! Handle + Office Infil Quarter On Summer Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Day, + {121051e3-1e70-4e60-b0b2-8d1746ed2f17}, ! Handle + Office Infil Quarter On Winter Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Rule, + {8955fe1d-9b2b-44f1-9c2b-3095e2885bd4}, ! Handle + Office Infil Quarter On Rule 1, ! Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, ! Schedule Ruleset Name + 0, ! Rule Order + {9cda3a17-498f-4d1d-8341-3d6fc543939e}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {9cda3a17-498f-4d1d-8341-3d6fc543939e}, ! Handle + Office Infil Quarter On Rule 1 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Rule, + {971987a5-37e4-4145-97d2-a148462f9285}, ! Handle + Office Infil Quarter On Rule 2, ! Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, ! Schedule Ruleset Name + 1, ! Rule Order + {f91d09cb-fdf9-43ca-9bbc-87efd92c63db}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {f91d09cb-fdf9-43ca-9bbc-87efd92c63db}, ! Handle + Office Infil Quarter On Rule 2 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:ElectricEquipment:Definition, + {b45fc3b6-508b-4c44-aa1c-2c7e233e8082}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 48.0070404585254, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {ff495b4e-8291-4b19-a3ba-4672e5c57e56}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment, !- Name + {b45fc3b6-508b-4c44-aa1c-2c7e233e8082}, !- Electric Equipment Definition Name + {a7add399-372e-443d-8845-f1bd4bc0f9ec}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {fb9fe5ff-d281-4574-8420-8b2edf947775}, ! Handle + Office Bldg Equip, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + {69462244-e2d5-428c-bad9-3e816a0e58db}, ! Default Day Schedule Name + {26d52a75-6ab1-4995-a1a6-832b9d549d48}, ! Summer Design Day Schedule Name + {ff472b3f-72bd-4470-b91c-5ddfa5992181}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {69462244-e2d5-428c-bad9-3e816a0e58db}, ! Handle + Office Bldg Equip Default Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.4, !- Value Until Time 1 + 12, !- Hour 2 + 0, !- Minute 2 + 0.9, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.8, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.8, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.6, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.5, !- Value Until Time 7 + 24, !- Hour 8 + 0, !- Minute 8 + 0.4; !- Value Until Time 8 + +OS:Schedule:Day, + {26d52a75-6ab1-4995-a1a6-832b9d549d48}, ! Handle + Office Bldg Equip Summer Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {ff472b3f-72bd-4470-b91c-5ddfa5992181}, ! Handle + Office Bldg Equip Winter Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {a1ec6e40-51dd-4d18-895f-d77eb100b490}, ! Handle + Office Bldg Equip Rule 1, ! Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, ! Schedule Ruleset Name + 0, ! Rule Order + {ea06ff1c-8f7a-46a4-943d-d192bfb9a3ff}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {ea06ff1c-8f7a-46a4-943d-d192bfb9a3ff}, ! Handle + Office Bldg Equip Rule 1 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {cd92cf4c-6cc4-45e6-82d7-e9d66c722a2b}, ! Handle + Office Bldg Equip Rule 2, ! Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, ! Schedule Ruleset Name + 1, ! Rule Order + {ee160a3f-6cbe-40ad-bc98-c535d8b8370d}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {ee160a3f-6cbe-40ad-bc98-c535d8b8370d}, ! Handle + Office Bldg Equip Rule 2 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.40000000000000002, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.34999999999999998, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.29999999999999999; ! Value Until Time 5 + +OS:ThermostatSetpoint:DualSetpoint, + {873e8ba2-96ea-4d88-b1bb-a7c1270cc64d}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:Schedule:Ruleset, + {ee9e14ad-1069-46ff-b551-35505654cf78}, ! Handle + Medium Office HtgSetp, ! Name + {ef7c8f10-a2a5-49dc-b234-67c263a49a0e}, ! Schedule Type Limits Name + {84d8bc79-d92f-4713-9bed-b6ae9432995c}, ! Default Day Schedule Name + {e504e4a2-9c56-418f-a647-e90f92226d14}, ! Summer Design Day Schedule Name + {db7d0805-6bf1-4762-95b2-8d9bc6b5b096}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {ef7c8f10-a2a5-49dc-b234-67c263a49a0e}, !- Handle + Temperature 36, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {84d8bc79-d92f-4713-9bed-b6ae9432995c}, ! Handle + Medium Office HtgSetp Default Schedule, ! Name + {ef7c8f10-a2a5-49dc-b234-67c263a49a0e}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 15.6, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 21, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 15.6; !- Value Until Time 3 + +OS:Schedule:Day, + {e504e4a2-9c56-418f-a647-e90f92226d14}, ! Handle + Medium Office HtgSetp Summer Design Day, ! Name + {ef7c8f10-a2a5-49dc-b234-67c263a49a0e}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Day, + {db7d0805-6bf1-4762-95b2-8d9bc6b5b096}, ! Handle + Medium Office HtgSetp Winter Design Day, ! Name + {ef7c8f10-a2a5-49dc-b234-67c263a49a0e}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 21; ! Value Until Time 1 + +OS:Schedule:Rule, + {2502bbfd-d2da-4896-9335-52382a0ddb5f}, ! Handle + Medium Office HtgSetp Rule 1, ! Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, ! Schedule Ruleset Name + 0, ! Rule Order + {0c208102-6f30-4f96-8461-d3134279477f}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {0c208102-6f30-4f96-8461-d3134279477f}, ! Handle + Medium Office HtgSetp Rule 1 Day Schedule, ! Name + {ef7c8f10-a2a5-49dc-b234-67c263a49a0e}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Rule, + {ff30599c-8d75-4521-90d0-95205a145d5b}, ! Handle + Medium Office HtgSetp Rule 2, ! Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, ! Schedule Ruleset Name + 1, ! Rule Order + {340a8fce-ab97-46c4-b077-6bb3fb4291b3}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {340a8fce-ab97-46c4-b077-6bb3fb4291b3}, ! Handle + Medium Office HtgSetp Rule 2 Day Schedule, ! Name + {ef7c8f10-a2a5-49dc-b234-67c263a49a0e}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 15.6, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 15.6; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {97ee2088-5aed-4e81-a741-5150f445aa2d}, ! Handle + Medium Office ClgSetp, ! Name + {b02437e9-f414-4c27-b4a3-876abf881832}, ! Schedule Type Limits Name + {436a394b-6dd5-4894-9e95-aff7ad751f2c}, ! Default Day Schedule Name + {7d4aca22-da88-4d8e-b141-062a3a7741c9}, ! Summer Design Day Schedule Name + {b486d344-107d-4ba9-861a-f9960c11c3e6}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {b02437e9-f414-4c27-b4a3-876abf881832}, !- Handle + Temperature 37, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {436a394b-6dd5-4894-9e95-aff7ad751f2c}, ! Handle + Medium Office ClgSetp Default Schedule, ! Name + {b02437e9-f414-4c27-b4a3-876abf881832}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 26.7, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 26.7; !- Value Until Time 3 + +OS:Schedule:Day, + {7d4aca22-da88-4d8e-b141-062a3a7741c9}, ! Handle + Medium Office ClgSetp Summer Design Day, ! Name + {b02437e9-f414-4c27-b4a3-876abf881832}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:Schedule:Day, + {b486d344-107d-4ba9-861a-f9960c11c3e6}, ! Handle + Medium Office ClgSetp Winter Design Day, ! Name + {b02437e9-f414-4c27-b4a3-876abf881832}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {ad5b6f30-bdab-4c2d-9489-586619409351}, ! Handle + Medium Office ClgSetp Rule 1, ! Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}, ! Schedule Ruleset Name + 0, ! Rule Order + {56fe1e98-176e-45f7-8455-308a53aed3ed}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {56fe1e98-176e-45f7-8455-308a53aed3ed}, ! Handle + Medium Office ClgSetp Rule 1 Day Schedule, ! Name + {b02437e9-f414-4c27-b4a3-876abf881832}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {96ad86ac-7f4c-4d94-93ed-5d86d67a6fbb}, ! Handle + Medium Office ClgSetp Rule 2, ! Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}, ! Schedule Ruleset Name + 1, ! Rule Order + {18e03094-92ec-42d6-a37e-b63b13e34dc7}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {18e03094-92ec-42d6-a37e-b63b13e34dc7}, ! Handle + Medium Office ClgSetp Rule 2 Day Schedule, ! Name + {b02437e9-f414-4c27-b4a3-876abf881832}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:SpaceType, + {6972621d-9359-4ca6-afcf-e302a1e72618}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3, !- Name + , !- Default Construction Set Name + {82a72c7c-a51c-47da-9904-f5789d9ba856}, !- Default Schedule Set Name + {0cc305c7-a2ee-4569-8ad2-2bc0b3477956}, !- Group Rendering Name + {e579833c-6829-4579-8bc3-e76510e1aa93}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + ClosedOffice; !- Standards Space Type + +OS:Rendering:Color, + {0cc305c7-a2ee-4569-8ad2-2bc0b3477956}, !- Handle + Rendering Color 2, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {82a72c7c-a51c-47da-9904-f5789d9ba856}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {06c89d51-b9fe-40cc-aca2-452c7c276c16}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {59a365e8-eacf-4797-8aaa-c31f0dfd8e2c}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {e4ad3085-1d6c-4fd6-a523-01eb0605bb17}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Lights, !- Name + {59a365e8-eacf-4797-8aaa-c31f0dfd8e2c}, !- Lights Definition Name + {6972621d-9359-4ca6-afcf-e302a1e72618}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {e579833c-6829-4579-8bc3-e76510e1aa93}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {d667f468-7d4e-46a4-a31e-9ee664416858}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0511285744793712, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {80ff2a19-3f1d-4981-ada2-b4693ae28b4c}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 People, !- Name + {d667f468-7d4e-46a4-a31e-9ee664416858}, !- People Definition Name + {6972621d-9359-4ca6-afcf-e302a1e72618}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {06c89d51-b9fe-40cc-aca2-452c7c276c16}, ! Handle + Office Work Occ, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + {8fefd9ab-4bf1-4e55-9033-9994d44e023f}, ! Default Day Schedule Name + {5600403b-0158-4b37-a0f6-7fb796d5609a}, ! Summer Design Day Schedule Name + {33dea523-2d4c-4b0f-9945-3b16896a0f6f}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {8fefd9ab-4bf1-4e55-9033-9994d44e023f}, ! Handle + Office Bldg Occ Default Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.200000002980232, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.850000023841858, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.850000023841858, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.699999988079071, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.400000005960464, !- Value Until Time 8 + 22, !- Hour 9 + 0, !- Minute 9 + 0.100000001490116, !- Value Until Time 9 + 24, !- Hour 10 + 0, !- Minute 10 + 0.0500000007450581; !- Value Until Time 10 + +OS:Schedule:Day, + {5600403b-0158-4b37-a0f6-7fb796d5609a}, ! Handle + Office Bldg Occ Summer Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003; ! Value Until Time 3 + +OS:Schedule:Day, + {33dea523-2d4c-4b0f-9945-3b16896a0f6f}, ! Handle + Office Bldg Occ Winter Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {d9bd8238-5b7f-4bae-8f8b-427e20c5baa7}, ! Handle + Office Work Occ Rule 1, ! Name + {06c89d51-b9fe-40cc-aca2-452c7c276c16}, ! Schedule Ruleset Name + 0, ! Rule Order + {02885cae-ffe6-4226-8252-1a05c4c68986}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {02885cae-ffe6-4226-8252-1a05c4c68986}, ! Handle + Office Bldg Occ Rule 1 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {8b3cdd0b-726c-4acc-84e9-6fdbf3eb319b}, ! Handle + Office Work Occ Rule 2, ! Name + {06c89d51-b9fe-40cc-aca2-452c7c276c16}, ! Schedule Ruleset Name + 1, ! Rule Order + {c346b0d5-ee04-4164-a196-2c75fca9dcb1}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {c346b0d5-ee04-4164-a196-2c75fca9dcb1}, ! Handle + Office Bldg Occ Rule 2 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.100000001490116, !- Value Until Time 2 + 14, !- Hour 3 + 0, !- Minute 3 + 0.400000005960464, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.100000001490116, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0; !- Value Until Time 5 + +OS:SpaceInfiltration:DesignFlowRate, + {f021176d-1c0f-4a99-8d33-6a9e0cde4ef3}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Infiltration, !- Name + {6972621d-9359-4ca6-afcf-e302a1e72618}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {5fed258a-5b6e-44aa-b696-4300c69292d5}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 6.88890266669422, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {2d98c3d7-3be2-498e-8250-a27849ea3f5b}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Electric Equipment, !- Name + {5fed258a-5b6e-44aa-b696-4300c69292d5}, !- Electric Equipment Definition Name + {6972621d-9359-4ca6-afcf-e302a1e72618}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {60f4dda6-65b4-453c-beea-97926ed82892}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {1747843e-6b23-4143-a5b9-a39ab62baa90}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3, !- Name + , !- Default Construction Set Name + {57aa89fc-1f4e-4d7b-9c84-3f596b78e0b9}, !- Default Schedule Set Name + {f5c60d85-aa96-4783-b3e0-c00a54ccc9ab}, !- Group Rendering Name + {aa7ecef8-316a-48d8-a94c-3990a1eee7bf}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Conference; !- Standards Space Type + +OS:Rendering:Color, + {f5c60d85-aa96-4783-b3e0-c00a54ccc9ab}, !- Handle + Rendering Color 3, !- Name + 230, !- Rendering Red Value + 196, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {57aa89fc-1f4e-4d7b-9c84-3f596b78e0b9}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {4dacf31e-11e8-4741-9b25-ec64c17ef7e0}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 12.5937751875504, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {ad223ae1-4887-40c7-b8ab-0684c747b47f}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Lights, !- Name + {4dacf31e-11e8-4741-9b25-ec64c17ef7e0}, !- Lights Definition Name + {1747843e-6b23-4143-a5b9-a39ab62baa90}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {aa7ecef8-316a-48d8-a94c-3990a1eee7bf}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {c51bf1be-59a9-4c8e-8ef1-aff1a121271d}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {6e830514-6b43-48ed-bb8d-083d8285e3f2}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 People, !- Name + {c51bf1be-59a9-4c8e-8ef1-aff1a121271d}, !- People Definition Name + {1747843e-6b23-4143-a5b9-a39ab62baa90}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {3fff2d19-e0ee-4de0-8819-7d6675dd3d10}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Infiltration, !- Name + {1747843e-6b23-4143-a5b9-a39ab62baa90}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {b7a6ac1e-b2e7-4d5d-a915-54c729534c0b}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 3.9826468541826, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {8a2e2e71-d147-4dcc-8174-73784c6dd079}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Electric Equipment, !- Name + {b7a6ac1e-b2e7-4d5d-a915-54c729534c0b}, !- Electric Equipment Definition Name + {1747843e-6b23-4143-a5b9-a39ab62baa90}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {5d240e81-5eff-4b61-b942-e1b93d34047b}, !- Handle + 189.1-2009 - Office - Conference - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {eebcfdee-6861-476c-ab75-0f2b024ba771}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3, !- Name + , !- Default Construction Set Name + {4a36cd66-9eae-445a-b4f7-28f631e8c6ef}, !- Default Schedule Set Name + {f7488b5a-f96a-4579-8641-2f9fb812c92a}, !- Group Rendering Name + {0faf5797-bf89-40ea-bfbc-e5c59af076dd}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Corridor; !- Standards Space Type + +OS:Rendering:Color, + {f7488b5a-f96a-4579-8641-2f9fb812c92a}, !- Handle + Rendering Color 4, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {4a36cd66-9eae-445a-b4f7-28f631e8c6ef}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {06c89d51-b9fe-40cc-aca2-452c7c276c16}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {9fa521c0-f349-41ca-82e2-9cd8e5e79dda}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.84375968751938, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {98e85485-6e75-447f-ba8a-e3c2ab65e6e0}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Lights, !- Name + {9fa521c0-f349-41ca-82e2-9cd8e5e79dda}, !- Lights Definition Name + {eebcfdee-6861-476c-ab75-0f2b024ba771}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {0faf5797-bf89-40ea-bfbc-e5c59af076dd}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {6816d3d4-bcfb-45a2-98ad-d9a5d2d70f58}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {a3e08079-9f03-42dc-827e-0d46f117c632}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 People, !- Name + {6816d3d4-bcfb-45a2-98ad-d9a5d2d70f58}, !- People Definition Name + {eebcfdee-6861-476c-ab75-0f2b024ba771}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {f81f4208-1dd3-4d2f-900b-e31df9e1b4be}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Infiltration, !- Name + {eebcfdee-6861-476c-ab75-0f2b024ba771}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {d52ca129-9032-47ca-a21e-49276ebb6cb6}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 1.72222566667356, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {eafbf18e-f6da-4424-868c-c42c5f04b9ad}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Electric Equipment, !- Name + {d52ca129-9032-47ca-a21e-49276ebb6cb6}, !- Electric Equipment Definition Name + {eebcfdee-6861-476c-ab75-0f2b024ba771}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {8a7f6d9a-14bf-4d27-a2b2-391379c0d180}, !- Handle + 189.1-2009 - Office - Corridor - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {8fb69deb-d36d-4ee9-bb00-b88855dec55a}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3, !- Name + , !- Default Construction Set Name + {9a260a8d-b006-41b6-ae66-adb7c0aa59a4}, !- Default Schedule Set Name + {cd681ca9-cba6-4f24-928a-5906e0f4fe74}, !- Group Rendering Name + {d52412ba-4508-4d86-96c5-f7b0786edd7b}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Elec/MechRoom; !- Standards Space Type + +OS:Rendering:Color, + {cd681ca9-cba6-4f24-928a-5906e0f4fe74}, !- Handle + Rendering Color 5, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {9a260a8d-b006-41b6-ae66-adb7c0aa59a4}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {c4b55cba-7373-4caf-a60a-c324473e9109}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 14.5312790625581, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {3e0e32f5-a2e9-406d-9190-12b1b76549aa}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Lights, !- Name + {c4b55cba-7373-4caf-a60a-c324473e9109}, !- Lights Definition Name + {8fb69deb-d36d-4ee9-bb00-b88855dec55a}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {d52412ba-4508-4d86-96c5-f7b0786edd7b}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {527c46fc-91c1-4c3c-82b8-6c3d5aa7accc}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Infiltration, !- Name + {8fb69deb-d36d-4ee9-bb00-b88855dec55a}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {45d346bd-5d8e-4ca4-86d2-e3af397a829b}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 2.90625581251162, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {59efd0bd-d234-455f-89b1-60161ec819a2}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Electric Equipment, !- Name + {45d346bd-5d8e-4ca4-86d2-e3af397a829b}, !- Electric Equipment Definition Name + {8fb69deb-d36d-4ee9-bb00-b88855dec55a}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {957e746e-8583-4d99-af5c-8bfc5d71bab6}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {739ff0de-ae0d-4fbd-9d06-6600b59b00c3}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3, !- Name + , !- Default Construction Set Name + {f263f1da-ff8c-4f75-8a23-059ebe1d3c38}, !- Default Schedule Set Name + {9b0e283a-2134-40d1-ab85-85f4f799d442}, !- Group Rendering Name + {50b56f33-1c8c-4321-a6ee-f30a003f5c25}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + IT_Room; !- Standards Space Type + +OS:Rendering:Color, + {9b0e283a-2134-40d1-ab85-85f4f799d442}, !- Handle + Rendering Color 6, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {f263f1da-ff8c-4f75-8a23-059ebe1d3c38}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {8cfb9060-2d40-4b81-8e4b-26d4c9d4b68e}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {e12ebd67-2e6d-4d5d-8b84-ab6c0076c8f2}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Lights, !- Name + {8cfb9060-2d40-4b81-8e4b-26d4c9d4b68e}, !- Lights Definition Name + {739ff0de-ae0d-4fbd-9d06-6600b59b00c3}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {50b56f33-1c8c-4321-a6ee-f30a003f5c25}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {7e029bb6-6b1c-41ae-9948-19664eb6f242}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {a09b7e2d-778a-446a-b4dd-ac0189ec4d6d}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 People, !- Name + {7e029bb6-6b1c-41ae-9948-19664eb6f242}, !- People Definition Name + {739ff0de-ae0d-4fbd-9d06-6600b59b00c3}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {92e9241a-2643-442c-a14b-ec521d97ae8f}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Infiltration, !- Name + {739ff0de-ae0d-4fbd-9d06-6600b59b00c3}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {bad8e7a8-5462-4e7d-ace9-6204219aa088}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 16.7917002500672, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {4845e96d-6c76-4f3a-991a-3dc885e1fff6}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Electric Equipment, !- Name + {bad8e7a8-5462-4e7d-ace9-6204219aa088}, !- Electric Equipment Definition Name + {739ff0de-ae0d-4fbd-9d06-6600b59b00c3}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {067b438c-2e92-4b93-b40b-05a426fb503f}, !- Handle + 189.1-2009 - Office - IT_Room - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {730f02cd-807e-46cf-ab84-cf4805cecfca}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3, !- Name + , !- Default Construction Set Name + {e30ae9c8-0594-4cc5-a802-b16fc2b94a59}, !- Default Schedule Set Name + {da8cad28-e4b8-4f78-ae6b-d2e51e79967b}, !- Group Rendering Name + {0e4c3b15-5c47-417c-8e67-eae410d8aabc}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Lobby; !- Standards Space Type + +OS:Rendering:Color, + {da8cad28-e4b8-4f78-ae6b-d2e51e79967b}, !- Handle + Rendering Color 7, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {e30ae9c8-0594-4cc5-a802-b16fc2b94a59}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {ba417993-ff31-45ec-88c1-7a00f38f6dc5}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 12.5937751875504, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {1fd71f05-0e26-402f-9977-f26c063d9362}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Lights, !- Name + {ba417993-ff31-45ec-88c1-7a00f38f6dc5}, !- Lights Definition Name + {730f02cd-807e-46cf-ab84-cf4805cecfca}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {0e4c3b15-5c47-417c-8e67-eae410d8aabc}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {95c2a721-9e5e-4279-8793-cf36e16b5f16}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {931129aa-6b3f-47f7-8f2c-cca4fed76dd8}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 People, !- Name + {95c2a721-9e5e-4279-8793-cf36e16b5f16}, !- People Definition Name + {730f02cd-807e-46cf-ab84-cf4805cecfca}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {9a652e1d-c8dc-4827-88fe-05c59beb39d5}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Infiltration, !- Name + {730f02cd-807e-46cf-ab84-cf4805cecfca}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {62d72097-b296-4c45-8f97-604556973bff}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 0.753473729169681, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {41afe87c-3ab2-496d-b3fb-940bb85f2030}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Electric Equipment, !- Name + {62d72097-b296-4c45-8f97-604556973bff}, !- Electric Equipment Definition Name + {730f02cd-807e-46cf-ab84-cf4805cecfca}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {e8a7ac63-4821-4f4c-bf91-c2c32e67a11f}, !- Handle + 189.1-2009 - Office - Lobby - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {d5d4ee91-09c9-4181-a36c-da48f14555e2}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3, !- Name + , !- Default Construction Set Name + {1089c56c-87d8-4c63-93b5-3e3e44f344b6}, !- Default Schedule Set Name + {58e99498-5d6c-474a-b43c-9abca4a2e677}, !- Group Rendering Name + {c085a5ec-ae1f-4b22-b142-c8fdfc8d0295}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + OpenOffice; !- Standards Space Type + +OS:Rendering:Color, + {58e99498-5d6c-474a-b43c-9abca4a2e677}, !- Handle + Rendering Color 8, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {1089c56c-87d8-4c63-93b5-3e3e44f344b6}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {06c89d51-b9fe-40cc-aca2-452c7c276c16}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {bf248cf5-b10d-4c9b-8133-62831dc82ba1}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {e20f04a3-4013-4d80-9194-f28706622ee2}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Lights, !- Name + {bf248cf5-b10d-4c9b-8133-62831dc82ba1}, !- Lights Definition Name + {d5d4ee91-09c9-4181-a36c-da48f14555e2}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {c085a5ec-ae1f-4b22-b142-c8fdfc8d0295}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {857615c7-3043-4f65-9103-c589086294ad}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.056510529687726, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {16fa34aa-abf2-4fe7-8fa4-7558ab98dbac}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 People, !- Name + {857615c7-3043-4f65-9103-c589086294ad}, !- People Definition Name + {d5d4ee91-09c9-4181-a36c-da48f14555e2}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {6a2a003c-41b6-4467-a709-81a61d4e0948}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Infiltration, !- Name + {d5d4ee91-09c9-4181-a36c-da48f14555e2}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {01d3e14a-e8d8-4bfc-bee7-182ee482f75f}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.6423763958639, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {986181a6-82bc-45e7-8e11-9d29ac4fabd8}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Electric Equipment, !- Name + {01d3e14a-e8d8-4bfc-bee7-182ee482f75f}, !- Electric Equipment Definition Name + {d5d4ee91-09c9-4181-a36c-da48f14555e2}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {aff6cde0-a897-4501-9289-ca687d855d65}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:Building, + {f4a67b66-f0a5-4b2c-bca4-69a5dbb58990}, !- Handle + Building 1, !- Name + , !- Building Sector Type + , !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + {e8ef8f2d-6317-445d-9ad5-3a1252f745a0}, !- Space Type Name + {165d4f31-9c07-48d7-91d3-a5e774c5bdf3}, !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Standards Number of Stories + , !- Standards Number of Above Ground Stories + , !- Standards Template + ; !- Standards Building Type + +OS:SpaceType, + {8e358c32-fae7-48cc-b2b2-645cbff42de9}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3, !- Name + , !- Default Construction Set Name + {a5448bdd-c707-4ea3-812a-e6067eb2904f}, !- Default Schedule Set Name + {e73a4ff2-efd0-4b33-81d6-f69afbc0856f}, !- Group Rendering Name + {f525f8e8-564b-440a-903f-a5c726954c2a}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + PrintRoom; !- Standards Space Type + +OS:Rendering:Color, + {e73a4ff2-efd0-4b33-81d6-f69afbc0856f}, !- Handle + Rendering Color 9, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {a5448bdd-c707-4ea3-812a-e6067eb2904f}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {43f0d416-d521-4578-afe0-31f9cd08aecd}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {82ba9b4a-5162-47cb-b29b-9883c1cbaaab}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Lights, !- Name + {43f0d416-d521-4578-afe0-31f9cd08aecd}, !- Lights Definition Name + {8e358c32-fae7-48cc-b2b2-645cbff42de9}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {f525f8e8-564b-440a-903f-a5c726954c2a}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {85099678-665b-4346-b3b4-12f672645e16}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {a0ea48a8-b727-4edb-a577-a571727c6191}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 People, !- Name + {85099678-665b-4346-b3b4-12f672645e16}, !- People Definition Name + {8e358c32-fae7-48cc-b2b2-645cbff42de9}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {b00aa8df-a3c3-4d10-a3fb-56402fe8f1cd}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Infiltration, !- Name + {8e358c32-fae7-48cc-b2b2-645cbff42de9}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {8afc7115-aa40-4ab6-a3ff-d0453d4142b6}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 30.0313100626201, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {8ec56145-6ea2-4e97-90ea-a023f1b40c4f}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Electric Equipment, !- Name + {8afc7115-aa40-4ab6-a3ff-d0453d4142b6}, !- Electric Equipment Definition Name + {8e358c32-fae7-48cc-b2b2-645cbff42de9}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {1d11fb1b-0129-4587-baef-51acb13b1183}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {1d9ad654-74f4-4631-99e4-2ff206bfc67c}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3, !- Name + , !- Default Construction Set Name + {844d8367-5a6f-4622-9c54-e25fe5ebd582}, !- Default Schedule Set Name + {3f3d879e-e78f-46d5-9daf-bda68c4a3214}, !- Group Rendering Name + {26b0d4ce-a9b6-4ff0-88d9-7ea214941ee0}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Restroom; !- Standards Space Type + +OS:Rendering:Color, + {3f3d879e-e78f-46d5-9daf-bda68c4a3214}, !- Handle + Rendering Color 10, !- Name + 169, !- Rendering Red Value + 169, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {844d8367-5a6f-4622-9c54-e25fe5ebd582}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {7e01d191-3c4d-4506-9448-ac4cf5d29b01}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.71876743753488, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {5efde2c8-8d3c-46ad-8472-f706de049cac}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Lights, !- Name + {7e01d191-3c4d-4506-9448-ac4cf5d29b01}, !- Lights Definition Name + {1d9ad654-74f4-4631-99e4-2ff206bfc67c}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {26b0d4ce-a9b6-4ff0-88d9-7ea214941ee0}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.0048768, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {feb4fb04-daba-43c2-8f3c-72551e77192e}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {a503ce3c-87d0-4b70-965a-13dc79b7856d}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 People, !- Name + {feb4fb04-daba-43c2-8f3c-72551e77192e}, !- People Definition Name + {1d9ad654-74f4-4631-99e4-2ff206bfc67c}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {1358cd4d-d956-4d2e-b63d-10cd28421aa8}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Infiltration, !- Name + {1d9ad654-74f4-4631-99e4-2ff206bfc67c}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {d350e793-7a6a-455b-9b73-7580bde40198}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 0.753473729169681, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {a1b502ac-31cb-4226-b9b5-ee1ecdd0e550}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Electric Equipment, !- Name + {d350e793-7a6a-455b-9b73-7580bde40198}, !- Electric Equipment Definition Name + {1d9ad654-74f4-4631-99e4-2ff206bfc67c}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {b876bf8c-8e41-4396-8ead-6cd1396b061d}, !- Handle + 189.1-2009 - Office - Restroom - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {08a6649f-78e6-42be-aadb-6f92e0a548d2}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3, !- Name + , !- Default Construction Set Name + {0b357cc1-803e-412d-9824-87c08ccbf4be}, !- Default Schedule Set Name + {65353fb0-1556-4600-9922-385c4aea48e2}, !- Group Rendering Name + {79835238-f652-4d44-8d64-91ea48ecc686}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Stair; !- Standards Space Type + +OS:Rendering:Color, + {65353fb0-1556-4600-9922-385c4aea48e2}, !- Handle + Rendering Color 11, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {0b357cc1-803e-412d-9824-87c08ccbf4be}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + , !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {cfd0a9e7-38de-41c6-a837-e35fefffe4b7}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 5.81251162502325, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {040fa4ea-20a5-4a7c-b72f-6b9683464143}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Lights, !- Name + {cfd0a9e7-38de-41c6-a837-e35fefffe4b7}, !- Lights Definition Name + {08a6649f-78e6-42be-aadb-6f92e0a548d2}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {79835238-f652-4d44-8d64-91ea48ecc686}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {5010cb25-60bf-4705-a727-cbb95fd10049}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Infiltration, !- Name + {08a6649f-78e6-42be-aadb-6f92e0a548d2}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ThermostatSetpoint:DualSetpoint, + {1456c7fd-3f2b-46c9-b23a-a6efba26eaeb}, !- Handle + 189.1-2009 - Office - Stair - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {81a10724-f03e-40f4-afa5-020a3981c1e8}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3, !- Name + , !- Default Construction Set Name + {0c9da9c8-40c9-4568-afc9-0d24265c87a3}, !- Default Schedule Set Name + {8b3df03d-960e-49e6-906c-be321b794859}, !- Group Rendering Name + {26a2d6e1-8619-481e-9f13-2cc3d855aa87}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Storage; !- Standards Space Type + +OS:Rendering:Color, + {8b3df03d-960e-49e6-906c-be321b794859}, !- Handle + Rendering Color 12, !- Name + 120, !- Rendering Red Value + 149, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {0c9da9c8-40c9-4568-afc9-0d24265c87a3}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + , !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {a5c1790a-8cac-4581-806f-ff71cfe4e298}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.750015500031, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {d3de2032-371f-47d1-9f80-43dcac4bcc84}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Lights, !- Name + {a5c1790a-8cac-4581-806f-ff71cfe4e298}, !- Lights Definition Name + {81a10724-f03e-40f4-afa5-020a3981c1e8}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {26a2d6e1-8619-481e-9f13-2cc3d855aa87}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {d560c84e-58a5-4ab1-ac08-a2ef8d1a8bf0}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Infiltration, !- Name + {81a10724-f03e-40f4-afa5-020a3981c1e8}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ThermostatSetpoint:DualSetpoint, + {92cae91d-3506-469b-8d3c-d00139ba1dd6}, !- Handle + 189.1-2009 - Office - Storage - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {f64e13a0-3315-4125-9655-d54ce3aca484}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3, !- Name + , !- Default Construction Set Name + {165bc6d5-9395-4333-8116-f5998ef5ad86}, !- Default Schedule Set Name + {09cc0781-bbca-4637-9eca-9827f127df22}, !- Group Rendering Name + {5ce9c1b6-04d6-4191-ac48-f9ea302836ff}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Vending; !- Standards Space Type + +OS:Rendering:Color, + {09cc0781-bbca-4637-9eca-9827f127df22}, !- Handle + Rendering Color 13, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {165bc6d5-9395-4333-8116-f5998ef5ad86}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {97ab429d-aa2e-40dd-8109-2cb1a827043b}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.84375968751938, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {76f947d0-eaea-4417-b23c-65185553a3c4}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Lights, !- Name + {97ab429d-aa2e-40dd-8109-2cb1a827043b}, !- Lights Definition Name + {f64e13a0-3315-4125-9655-d54ce3aca484}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {5ce9c1b6-04d6-4191-ac48-f9ea302836ff}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {ae6a296d-eb1e-43ac-9b21-4f0b263fed19}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {c5e05e2c-7d29-4883-ad02-df37ef3fe7d6}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 People, !- Name + {ae6a296d-eb1e-43ac-9b21-4f0b263fed19}, !- People Definition Name + {f64e13a0-3315-4125-9655-d54ce3aca484}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {db7c8f00-5c4a-4226-9516-060432eee960}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Infiltration, !- Name + {f64e13a0-3315-4125-9655-d54ce3aca484}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {1d16b0a4-76a4-47f0-b005-9e13be78a581}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 41.4410551043324, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {80c539b0-6277-43af-aabc-10b74a974e87}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Electric Equipment, !- Name + {1d16b0a4-76a4-47f0-b005-9e13be78a581}, !- Electric Equipment Definition Name + {f64e13a0-3315-4125-9655-d54ce3aca484}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {6d113f03-470f-4d06-b70d-ed7d0cee7e18}, !- Handle + 189.1-2009 - Office - Vending - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {f4e4051f-88bf-4876-bf67-240cbe471a53}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3, !- Name + , !- Default Construction Set Name + {e812d0f1-74a7-4137-9f96-dd86ba2553b1}, !- Default Schedule Set Name + {c3dbe6dc-f0a9-420f-b189-763ce52d2510}, !- Group Rendering Name + {313980d4-d49b-46bf-aa05-340c5e35ffae}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + WholeBuilding - Lg Office; !- Standards Space Type + +OS:Rendering:Color, + {c3dbe6dc-f0a9-420f-b189-763ce52d2510}, !- Handle + Rendering Color 14, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {e812d0f1-74a7-4137-9f96-dd86ba2553b1}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {ab9e1b4f-ae68-45a9-9970-3cd6b5ead515}, !- Number of People Schedule Name + {aa917ef6-d643-4b6c-bec1-917d22f9b0a3}, !- People Activity Level Schedule Name + {f2a09368-6e07-4787-9b2b-48b4dcdc0076}, !- Lighting Schedule Name + {4e439ed3-c35b-4a6d-91e2-7f7179301d96}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {95101b62-7348-470f-ae62-1ee04d837e69}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {e10a14ed-e630-4f34-8a98-7948b5a91e0f}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {98cd8def-c4a8-4c90-90e5-60613ddadfa9}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Lights, !- Name + {e10a14ed-e630-4f34-8a98-7948b5a91e0f}, !- Lights Definition Name + {f4e4051f-88bf-4876-bf67-240cbe471a53}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {f2a09368-6e07-4787-9b2b-48b4dcdc0076}, ! Handle + Large Office Bldg Light, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + {e73240b3-a1e1-43bc-bff0-c7e79825d4d8}, ! Default Day Schedule Name + {fb88a426-83a8-4dd2-96d3-32f7c05a9e75}, ! Summer Design Day Schedule Name + {3b5f270d-fa82-4916-81a0-4ce0514e9454}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, !- Handle + Fractional, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + +OS:Schedule:Day, + {e73240b3-a1e1-43bc-bff0-c7e79825d4d8}, ! Handle + Large Office Bldg Light Default Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.3, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.7, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.5, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.3, !- Value Until Time 7 + 23, !- Hour 8 + 0, !- Minute 8 + 0.1, !- Value Until Time 8 + 24, !- Hour 9 + 0, !- Minute 9 + 0.05; !- Value Until Time 9 + +OS:Schedule:Day, + {fb88a426-83a8-4dd2-96d3-32f7c05a9e75}, ! Handle + Large Office Bldg Light Summer Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {3b5f270d-fa82-4916-81a0-4ce0514e9454}, ! Handle + Large Office Bldg Light Winter Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {127466d9-2f40-4274-8451-dcfe0125e51e}, ! Handle + Large Office Bldg Light Rule 1, ! Name + {f2a09368-6e07-4787-9b2b-48b4dcdc0076}, ! Schedule Ruleset Name + 0, ! Rule Order + {a7472d93-7cce-46df-8cf1-7a4ece21c9f4}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {a7472d93-7cce-46df-8cf1-7a4ece21c9f4}, ! Handle + Large Office Bldg Light Rule 1 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.050000000000000003; ! Value Until Time 1 + +OS:Schedule:Rule, + {a4269ab0-17d3-4887-bea4-6f3961948238}, ! Handle + Large Office Bldg Light Rule 2, ! Name + {f2a09368-6e07-4787-9b2b-48b4dcdc0076}, ! Schedule Ruleset Name + 1, ! Rule Order + {c956fee2-ba89-4905-a96d-a4d5b0c12d8e}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {c956fee2-ba89-4905-a96d-a4d5b0c12d8e}, ! Handle + Large Office Bldg Light Rule 2 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.050000000000000003, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.14999999999999999, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.050000000000000003; ! Value Until Time 5 + +OS:DesignSpecification:OutdoorAir, + {313980d4-d49b-46bf-aa05-340c5e35ffae}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {b0e5b452-5693-434a-b62d-7559036b73dd}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {36ccc951-e082-4ec1-9cf0-12ec2c024b15}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 People, !- Name + {b0e5b452-5693-434a-b62d-7559036b73dd}, !- People Definition Name + {f4e4051f-88bf-4876-bf67-240cbe471a53}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {ab9e1b4f-ae68-45a9-9970-3cd6b5ead515}, ! Handle + Large Office Bldg Occ, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + {108d07db-6b0a-42d6-bbce-3325876a4ae4}, ! Default Day Schedule Name + {73007f42-49a4-4ed7-a0fc-b2001b8a49cb}, ! Summer Design Day Schedule Name + {7bc43826-17a4-4467-9c6d-9fb99a19c1fa}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {108d07db-6b0a-42d6-bbce-3325876a4ae4}, ! Handle + Large Office Bldg Occ Default Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.2, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.95, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.95, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.7, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.4, !- Value Until Time 8 + 22, !- Hour 9 + 0, !- Minute 9 + 0.1, !- Value Until Time 9 + 24, !- Hour 10 + 0, !- Minute 10 + 0.05; !- Value Until Time 10 + +OS:Schedule:Day, + {73007f42-49a4-4ed7-a0fc-b2001b8a49cb}, ! Handle + Large Office Bldg Occ Summer Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003; ! Value Until Time 3 + +OS:Schedule:Day, + {7bc43826-17a4-4467-9c6d-9fb99a19c1fa}, ! Handle + Large Office Bldg Occ Winter Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {8dde373c-db81-43ec-b13f-6fbbf538852b}, ! Handle + Large Office Bldg Occ Rule 1, ! Name + {ab9e1b4f-ae68-45a9-9970-3cd6b5ead515}, ! Schedule Ruleset Name + 0, ! Rule Order + {ef4a79bf-f489-4154-b725-717e03aad099}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {ef4a79bf-f489-4154-b725-717e03aad099}, ! Handle + Large Office Bldg Occ Rule 1 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {1161cc30-bc2f-4853-972b-163e053c18d3}, ! Handle + Large Office Bldg Occ Rule 2, ! Name + {ab9e1b4f-ae68-45a9-9970-3cd6b5ead515}, ! Schedule Ruleset Name + 1, ! Rule Order + {8ce58b85-87c7-4792-95f8-2ff5b4b6198e}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {8ce58b85-87c7-4792-95f8-2ff5b4b6198e}, ! Handle + Large Office Bldg Occ Rule 2 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0; ! Value Until Time 5 + +OS:Schedule:Ruleset, + {aa917ef6-d643-4b6c-bec1-917d22f9b0a3}, ! Handle + Large Office Activity, ! Name + {cb9330d2-e37e-4f84-8347-6276682d5791}, ! Schedule Type Limits Name + {b69fb598-913f-40ff-b9b5-b4d3e44aecb9}, ! Default Day Schedule Name + {045eaf72-bd9c-454d-a666-7c28685008f9}, ! Summer Design Day Schedule Name + {c496d24c-6734-422b-8a13-5e33f0230e26}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {cb9330d2-e37e-4f84-8347-6276682d5791}, !- Handle + ActivityLevel 5, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:Schedule:Day, + {b69fb598-913f-40ff-b9b5-b4d3e44aecb9}, ! Handle + Large Office Activity Default Schedule, ! Name + {cb9330d2-e37e-4f84-8347-6276682d5791}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {045eaf72-bd9c-454d-a666-7c28685008f9}, ! Handle + Large Office Activity Summer Design Day, ! Name + {cb9330d2-e37e-4f84-8347-6276682d5791}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:Schedule:Day, + {c496d24c-6734-422b-8a13-5e33f0230e26}, ! Handle + Large Office Activity Winter Design Day, ! Name + {cb9330d2-e37e-4f84-8347-6276682d5791}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:SpaceInfiltration:DesignFlowRate, + {c2f30963-61f9-4236-81ce-49b16b407ca6}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Infiltration, !- Name + {f4e4051f-88bf-4876-bf67-240cbe471a53}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:Schedule:Ruleset, + {95101b62-7348-470f-ae62-1ee04d837e69}, ! Handle + Large Office Infil Quarter On, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + {65e20520-f68b-4538-91e0-60a92b014496}, ! Default Day Schedule Name + {749a742e-92db-4b3d-87ea-6ff88d2dab54}, ! Summer Design Day Schedule Name + {5d7d1c92-ba26-44dd-80e4-e9fc2768fbe9}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {65e20520-f68b-4538-91e0-60a92b014496}, ! Handle + Large Office Infil Quarter On Default Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {749a742e-92db-4b3d-87ea-6ff88d2dab54}, ! Handle + Large Office Infil Quarter On Summer Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Day, + {5d7d1c92-ba26-44dd-80e4-e9fc2768fbe9}, ! Handle + Large Office Infil Quarter On Winter Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Rule, + {847d2101-281f-4ac8-81e9-6f896a734e6c}, ! Handle + Large Office Infil Quarter On Rule 1, ! Name + {95101b62-7348-470f-ae62-1ee04d837e69}, ! Schedule Ruleset Name + 0, ! Rule Order + {3490fa68-c583-4821-ab7b-2cdc56b1f4b2}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {3490fa68-c583-4821-ab7b-2cdc56b1f4b2}, ! Handle + Large Office Infil Quarter On Rule 1 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Rule, + {7d5a1883-1d05-4fde-a0b3-445df00d623c}, ! Handle + Large Office Infil Quarter On Rule 2, ! Name + {95101b62-7348-470f-ae62-1ee04d837e69}, ! Schedule Ruleset Name + 1, ! Rule Order + {4abc8748-f64e-467c-9fea-d84e2a549449}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {4abc8748-f64e-467c-9fea-d84e2a549449}, ! Handle + Large Office Infil Quarter On Rule 2 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:ElectricEquipment:Definition, + {7b07c951-e085-46cd-b5c8-b378176a9868}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.8125141276385, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {47454c46-ee46-4187-8dfd-3633cb288817}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Electric Equipment, !- Name + {7b07c951-e085-46cd-b5c8-b378176a9868}, !- Electric Equipment Definition Name + {f4e4051f-88bf-4876-bf67-240cbe471a53}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {4e439ed3-c35b-4a6d-91e2-7f7179301d96}, ! Handle + Large Office Bldg Equip, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + {ce927cae-b56c-45e2-84ed-a11551755813}, ! Default Day Schedule Name + {3ee4ded5-e614-476a-919d-96a329d002d5}, ! Summer Design Day Schedule Name + {c869c1bb-6c4a-4e7b-899a-2d02a503b1bf}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {ce927cae-b56c-45e2-84ed-a11551755813}, ! Handle + Large Office Bldg Equip Default Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.4, !- Value Until Time 1 + 12, !- Hour 2 + 0, !- Minute 2 + 0.9, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.8, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.8, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.6, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.5, !- Value Until Time 7 + 24, !- Hour 8 + 0, !- Minute 8 + 0.4; !- Value Until Time 8 + +OS:Schedule:Day, + {3ee4ded5-e614-476a-919d-96a329d002d5}, ! Handle + Large Office Bldg Equip Summer Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {c869c1bb-6c4a-4e7b-899a-2d02a503b1bf}, ! Handle + Large Office Bldg Equip Winter Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {5fb05642-2cb0-4f77-8237-66dd147f18f3}, ! Handle + Large Office Bldg Equip Rule 1, ! Name + {4e439ed3-c35b-4a6d-91e2-7f7179301d96}, ! Schedule Ruleset Name + 0, ! Rule Order + {31f2d527-9c83-46da-8b56-1655252efecf}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {31f2d527-9c83-46da-8b56-1655252efecf}, ! Handle + Large Office Bldg Equip Rule 1 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {fdf67c28-cffa-4377-bc02-2ad134e938df}, ! Handle + Large Office Bldg Equip Rule 2, ! Name + {4e439ed3-c35b-4a6d-91e2-7f7179301d96}, ! Schedule Ruleset Name + 1, ! Rule Order + {c251014a-2a04-4067-b0da-a42d33ce32cf}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {c251014a-2a04-4067-b0da-a42d33ce32cf}, ! Handle + Large Office Bldg Equip Rule 2 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.40000000000000002, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.34999999999999998, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.29999999999999999; ! Value Until Time 5 + +OS:ThermostatSetpoint:DualSetpoint, + {4336fb95-6c45-4c96-a1c8-f3cd2c207799}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Thermostat, !- Name + {3ef2d679-3d3e-4dce-b623-1d95853d8bfe}, !- Heating Setpoint Temperature Schedule Name + {369b94fe-c642-4e2e-9da3-0a5d7741a6cd}; !- Cooling Setpoint Temperature Schedule Name + +OS:Schedule:Ruleset, + {3ef2d679-3d3e-4dce-b623-1d95853d8bfe}, ! Handle + Large Office HtgSetp, ! Name + {e6bd7042-6dde-4ac7-9a33-6cfa958e6594}, ! Schedule Type Limits Name + {e8c51a0f-8d85-41ba-9cb7-79d1f8a1adf4}, ! Default Day Schedule Name + {e2432601-5168-4163-9121-44f7fa2d054e}, ! Summer Design Day Schedule Name + {ca52a76b-57cd-4aab-9534-a36821915745}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {e6bd7042-6dde-4ac7-9a33-6cfa958e6594}, !- Handle + Temperature 3, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {e8c51a0f-8d85-41ba-9cb7-79d1f8a1adf4}, ! Handle + Large Office HtgSetp Default Schedule, ! Name + {e6bd7042-6dde-4ac7-9a33-6cfa958e6594}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 15.6, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 21, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 15.6; !- Value Until Time 3 + +OS:Schedule:Day, + {e2432601-5168-4163-9121-44f7fa2d054e}, ! Handle + Large Office HtgSetp Summer Design Day, ! Name + {e6bd7042-6dde-4ac7-9a33-6cfa958e6594}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Day, + {ca52a76b-57cd-4aab-9534-a36821915745}, ! Handle + Large Office HtgSetp Winter Design Day, ! Name + {e6bd7042-6dde-4ac7-9a33-6cfa958e6594}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 21; ! Value Until Time 1 + +OS:Schedule:Rule, + {454b3b53-cedb-496a-8430-5052b455b4ba}, ! Handle + Large Office HtgSetp Rule 1, ! Name + {3ef2d679-3d3e-4dce-b623-1d95853d8bfe}, ! Schedule Ruleset Name + 0, ! Rule Order + {180321d7-37f5-4dc6-850d-0555974e0e52}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {180321d7-37f5-4dc6-850d-0555974e0e52}, ! Handle + Large Office HtgSetp Rule 1 Day Schedule, ! Name + {e6bd7042-6dde-4ac7-9a33-6cfa958e6594}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Rule, + {e3aa88cc-e955-4f6d-9309-b134ff73e6a5}, ! Handle + Large Office HtgSetp Rule 2, ! Name + {3ef2d679-3d3e-4dce-b623-1d95853d8bfe}, ! Schedule Ruleset Name + 1, ! Rule Order + {977344e9-bb1d-4fd6-98de-988f878f0bcf}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {977344e9-bb1d-4fd6-98de-988f878f0bcf}, ! Handle + Large Office HtgSetp Rule 2 Day Schedule, ! Name + {e6bd7042-6dde-4ac7-9a33-6cfa958e6594}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 15.6, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 15.6; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {369b94fe-c642-4e2e-9da3-0a5d7741a6cd}, ! Handle + Large Office ClgSetp, ! Name + {59eab45e-d90b-4ae8-a3c2-85c03d4f6329}, ! Schedule Type Limits Name + {1959699a-9f3e-4e3a-8f40-10844808ff15}, ! Default Day Schedule Name + {a45115cc-b85e-48ac-905a-0467a8a9134c}, ! Summer Design Day Schedule Name + {4e34d500-43ca-474e-a42a-b7a766087f54}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {59eab45e-d90b-4ae8-a3c2-85c03d4f6329}, !- Handle + Temperature 5, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {1959699a-9f3e-4e3a-8f40-10844808ff15}, ! Handle + Large Office ClgSetp Default Schedule, ! Name + {59eab45e-d90b-4ae8-a3c2-85c03d4f6329}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 26.7, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 26.7; !- Value Until Time 3 + +OS:Schedule:Day, + {a45115cc-b85e-48ac-905a-0467a8a9134c}, ! Handle + Large Office ClgSetp Summer Design Day, ! Name + {59eab45e-d90b-4ae8-a3c2-85c03d4f6329}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:Schedule:Day, + {4e34d500-43ca-474e-a42a-b7a766087f54}, ! Handle + Large Office ClgSetp Winter Design Day, ! Name + {59eab45e-d90b-4ae8-a3c2-85c03d4f6329}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {35711f58-d0b0-4216-8fba-0aaaba8f595c}, ! Handle + Large Office ClgSetp Rule 1, ! Name + {369b94fe-c642-4e2e-9da3-0a5d7741a6cd}, ! Schedule Ruleset Name + 0, ! Rule Order + {92f1cdb9-ae2a-47ab-8c7d-ac59fca70559}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {92f1cdb9-ae2a-47ab-8c7d-ac59fca70559}, ! Handle + Large Office ClgSetp Rule 1 Day Schedule, ! Name + {59eab45e-d90b-4ae8-a3c2-85c03d4f6329}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {de67f783-5af8-41a3-93ab-92f82ec5f493}, ! Handle + Large Office ClgSetp Rule 2, ! Name + {369b94fe-c642-4e2e-9da3-0a5d7741a6cd}, ! Schedule Ruleset Name + 1, ! Rule Order + {26577c71-e1b6-4e3f-8792-dc49e39526be}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {26577c71-e1b6-4e3f-8792-dc49e39526be}, ! Handle + Large Office ClgSetp Rule 2 Day Schedule, ! Name + {59eab45e-d90b-4ae8-a3c2-85c03d4f6329}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:SpaceType, + {c09653ef-7dac-4ec0-902b-9927d0d1eb16}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3, !- Name + , !- Default Construction Set Name + {fb07cd45-380c-41e2-a44f-701ffc98a11f}, !- Default Schedule Set Name + {14629168-435c-481c-9579-3dfe6e5181ea}, !- Group Rendering Name + {dc25a95f-ec59-48b2-ab14-5ab284017eaf}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + WholeBuilding - Md Office; !- Standards Space Type + +OS:Rendering:Color, + {14629168-435c-481c-9579-3dfe6e5181ea}, !- Handle + Rendering Color 15, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {fb07cd45-380c-41e2-a44f-701ffc98a11f}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {b9bf0186-3cf1-4366-a634-04d1937d2de5}, !- Number of People Schedule Name + {e34169f9-a4fd-44bb-864a-dfac9ae9c322}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {5769dd07-2885-4ddc-bf01-c5000a322689}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {6e3bf1c9-33d0-4fe5-9abf-3a9a920e9986}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {33459242-43dd-49b8-ad32-ceefb29a574b}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {eab99aa6-817c-45ed-99af-fb6b526c713b}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Lights, !- Name + {33459242-43dd-49b8-ad32-ceefb29a574b}, !- Lights Definition Name + {c09653ef-7dac-4ec0-902b-9927d0d1eb16}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {dc25a95f-ec59-48b2-ab14-5ab284017eaf}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {2c7d3054-832d-47a4-9f13-a16c3816af40}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {5dc33e43-8ecb-47a2-8068-e9bfebfb81b8}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 People, !- Name + {2c7d3054-832d-47a4-9f13-a16c3816af40}, !- People Definition Name + {c09653ef-7dac-4ec0-902b-9927d0d1eb16}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {b9bf0186-3cf1-4366-a634-04d1937d2de5}, ! Handle + Medium Office Bldg Occ, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + {8e9cb904-a566-4f67-8e0d-64bc4a153ed7}, ! Default Day Schedule Name + {716ca4cb-dfa7-4615-9c58-9b41b88a8c68}, ! Summer Design Day Schedule Name + {1bb83388-5774-4117-ab2e-c8a7f8fc4538}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {8e9cb904-a566-4f67-8e0d-64bc4a153ed7}, ! Handle + Medium Office Bldg Occ Default Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.2, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.95, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.95, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.7, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.4, !- Value Until Time 8 + 22, !- Hour 9 + 0, !- Minute 9 + 0.1, !- Value Until Time 9 + 24, !- Hour 10 + 0, !- Minute 10 + 0.05; !- Value Until Time 10 + +OS:Schedule:Day, + {716ca4cb-dfa7-4615-9c58-9b41b88a8c68}, ! Handle + Medium Office Bldg Occ Summer Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003; ! Value Until Time 3 + +OS:Schedule:Day, + {1bb83388-5774-4117-ab2e-c8a7f8fc4538}, ! Handle + Medium Office Bldg Occ Winter Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {5300ce58-f51e-42f5-b7f2-a3857824daf0}, ! Handle + Medium Office Bldg Occ Rule 1, ! Name + {b9bf0186-3cf1-4366-a634-04d1937d2de5}, ! Schedule Ruleset Name + 0, ! Rule Order + {ea36134e-4fe2-46c6-9330-94ae7127f9bb}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {ea36134e-4fe2-46c6-9330-94ae7127f9bb}, ! Handle + Medium Office Bldg Occ Rule 1 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {8450148f-bc1e-42d5-b3d4-9a0c3b695e74}, ! Handle + Medium Office Bldg Occ Rule 2, ! Name + {b9bf0186-3cf1-4366-a634-04d1937d2de5}, ! Schedule Ruleset Name + 1, ! Rule Order + {29347714-3b90-4f83-a1b2-1f94b3cb3a2f}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {29347714-3b90-4f83-a1b2-1f94b3cb3a2f}, ! Handle + Medium Office Bldg Occ Rule 2 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0; ! Value Until Time 5 + +OS:Schedule:Ruleset, + {e34169f9-a4fd-44bb-864a-dfac9ae9c322}, ! Handle + Medium Office Activity, ! Name + {0b673adf-19e2-4554-a2dd-d94a0b9f9312}, ! Schedule Type Limits Name + {3173bc13-e2b9-4529-91c6-c816183e6cb2}, ! Default Day Schedule Name + {ef2782ea-db3c-43a9-9e74-56a4e4635b75}, ! Summer Design Day Schedule Name + {ae748519-ce44-4664-a210-64be86ca4e35}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {0b673adf-19e2-4554-a2dd-d94a0b9f9312}, !- Handle + ActivityLevel 13, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:Schedule:Day, + {3173bc13-e2b9-4529-91c6-c816183e6cb2}, ! Handle + Medium Office Activity Default Schedule, ! Name + {0b673adf-19e2-4554-a2dd-d94a0b9f9312}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {ef2782ea-db3c-43a9-9e74-56a4e4635b75}, ! Handle + Medium Office Activity Summer Design Day, ! Name + {0b673adf-19e2-4554-a2dd-d94a0b9f9312}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:Schedule:Day, + {ae748519-ce44-4664-a210-64be86ca4e35}, ! Handle + Medium Office Activity Winter Design Day, ! Name + {0b673adf-19e2-4554-a2dd-d94a0b9f9312}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:SpaceInfiltration:DesignFlowRate, + {8794f00f-cb5f-4ba7-b5f0-2f1e898a2563}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Infiltration, !- Name + {c09653ef-7dac-4ec0-902b-9927d0d1eb16}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:Schedule:Ruleset, + {6e3bf1c9-33d0-4fe5-9abf-3a9a920e9986}, ! Handle + Medium Office Infil Quarter On, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + {2e7d681d-3760-4ecd-9c14-f1cc63c2ffc7}, ! Default Day Schedule Name + {ef7f36ce-3033-473e-8ef2-72f9350fc605}, ! Summer Design Day Schedule Name + {11ced42a-c377-4c21-a0f4-4f22f1b824a0}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {2e7d681d-3760-4ecd-9c14-f1cc63c2ffc7}, ! Handle + Medium Office Infil Quarter On Default Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {ef7f36ce-3033-473e-8ef2-72f9350fc605}, ! Handle + Medium Office Infil Quarter On Summer Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Day, + {11ced42a-c377-4c21-a0f4-4f22f1b824a0}, ! Handle + Medium Office Infil Quarter On Winter Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Rule, + {c66c551d-8908-4add-b058-5d42fcc407d1}, ! Handle + Medium Office Infil Quarter On Rule 1, ! Name + {6e3bf1c9-33d0-4fe5-9abf-3a9a920e9986}, ! Schedule Ruleset Name + 0, ! Rule Order + {04b699d6-fe0d-4fbc-be41-4ee6a8631709}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {04b699d6-fe0d-4fbc-be41-4ee6a8631709}, ! Handle + Medium Office Infil Quarter On Rule 1 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Rule, + {e2a720ca-37b1-4ce9-b9c6-004268fe9d28}, ! Handle + Medium Office Infil Quarter On Rule 2, ! Name + {6e3bf1c9-33d0-4fe5-9abf-3a9a920e9986}, ! Schedule Ruleset Name + 1, ! Rule Order + {c949b38c-919f-4a88-896c-a00b8d2cb83e}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {c949b38c-919f-4a88-896c-a00b8d2cb83e}, ! Handle + Medium Office Infil Quarter On Rule 2 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:ElectricEquipment:Definition, + {15f1a9a7-e8f6-4ca7-b808-6cae554fd1be}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.81251162502325, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {4cb973d5-c689-4000-a47a-069ab24a7d67}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Electric Equipment, !- Name + {15f1a9a7-e8f6-4ca7-b808-6cae554fd1be}, !- Electric Equipment Definition Name + {c09653ef-7dac-4ec0-902b-9927d0d1eb16}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {5769dd07-2885-4ddc-bf01-c5000a322689}, ! Handle + Medium Office Bldg Equip, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + {50824415-087f-42ea-b45b-73ab2258fec9}, ! Default Day Schedule Name + {7d4fa186-e9ee-47cf-9408-0fff9a69f726}, ! Summer Design Day Schedule Name + {cf319548-3d82-4b22-9263-0f730ffe9915}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {50824415-087f-42ea-b45b-73ab2258fec9}, ! Handle + Medium Office Bldg Equip Default Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.4, !- Value Until Time 1 + 12, !- Hour 2 + 0, !- Minute 2 + 0.9, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.8, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.8, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.6, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.5, !- Value Until Time 7 + 24, !- Hour 8 + 0, !- Minute 8 + 0.4; !- Value Until Time 8 + +OS:Schedule:Day, + {7d4fa186-e9ee-47cf-9408-0fff9a69f726}, ! Handle + Medium Office Bldg Equip Summer Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {cf319548-3d82-4b22-9263-0f730ffe9915}, ! Handle + Medium Office Bldg Equip Winter Design Day, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {47554ed1-adc4-42e9-aae8-999f80e734ff}, ! Handle + Medium Office Bldg Equip Rule 1, ! Name + {5769dd07-2885-4ddc-bf01-c5000a322689}, ! Schedule Ruleset Name + 0, ! Rule Order + {34f7d919-cd41-4a82-871d-1c5bed6164e4}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {34f7d919-cd41-4a82-871d-1c5bed6164e4}, ! Handle + Medium Office Bldg Equip Rule 1 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {2b2b2668-fc4d-4da9-8ef1-747ce7312819}, ! Handle + Medium Office Bldg Equip Rule 2, ! Name + {5769dd07-2885-4ddc-bf01-c5000a322689}, ! Schedule Ruleset Name + 1, ! Rule Order + {6db7906f-fec0-436b-8fff-837554a1da15}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {6db7906f-fec0-436b-8fff-837554a1da15}, ! Handle + Medium Office Bldg Equip Rule 2 Day Schedule, ! Name + {0b42bea1-8c7a-4e73-984a-0ba085295e9b}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.40000000000000002, ! Value Until Time 2 + 14, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.34999999999999998, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.29999999999999999; ! Value Until Time 5 + +OS:ThermostatSetpoint:DualSetpoint, + {8f63e15b-9327-4e6d-b14b-fceeec1babee}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {a0ae7d7d-792b-4e89-b241-9bf3e2cd6df3}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3, !- Name + , !- Default Construction Set Name + {9dfd423c-cbb5-49ad-a38e-3e5d5dae7b00}, !- Default Schedule Set Name + {33027e3f-9faa-4b6e-a562-d264440a8710}, !- Group Rendering Name + {5d2c9d6c-512b-4c0c-943d-0e88b95e2d99}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + WholeBuilding - Sm Office; !- Standards Space Type + +OS:Rendering:Color, + {33027e3f-9faa-4b6e-a562-d264440a8710}, !- Handle + Rendering Color 16, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {9dfd423c-cbb5-49ad-a38e-3e5d5dae7b00}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {2e6fbfb8-e19f-4b60-abba-9f958f491f3e}, !- Number of People Schedule Name + {c56440f2-af22-435f-ae1f-57a65b72b4e4}, !- People Activity Level Schedule Name + {0060f352-35d9-4ce1-a1f3-90212f182600}, !- Lighting Schedule Name + {69cd6240-7f2d-4bb0-93a5-a4f03bd4650e}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {57928d9e-e370-407c-a326-ea5edf8b98bd}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {cb1008af-d6f8-4c8d-b47f-6044f7b6232d}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {a6055e5d-9505-42c5-8b3b-ad8d1aa39c37}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Lights, !- Name + {cb1008af-d6f8-4c8d-b47f-6044f7b6232d}, !- Lights Definition Name + {a0ae7d7d-792b-4e89-b241-9bf3e2cd6df3}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {0060f352-35d9-4ce1-a1f3-90212f182600}, ! Handle + Small Office Bldg Light, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + {5124924a-7c18-4954-90ff-235ba4f50a25}, ! Default Day Schedule Name + {3c284833-4d7b-4820-8b33-ed067c1d3225}, ! Summer Design Day Schedule Name + {876f7e40-5da3-487a-a888-fb05ed3028a2}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {5124924a-7c18-4954-90ff-235ba4f50a25}, ! Handle + Small Office Bldg Light Default Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.3, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.3, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.2, !- Value Until Time 7 + 23, !- Hour 8 + 0, !- Minute 8 + 0.1, !- Value Until Time 8 + 24, !- Hour 9 + 0, !- Minute 9 + 0.05; !- Value Until Time 9 + +OS:Schedule:Day, + {3c284833-4d7b-4820-8b33-ed067c1d3225}, ! Handle + Small Office Bldg Light Summer Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {876f7e40-5da3-487a-a888-fb05ed3028a2}, ! Handle + Small Office Bldg Light Winter Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {fdca0c91-8f91-4138-82a8-276ab0a46948}, ! Handle + Small Office Bldg Light Rule 1, ! Name + {0060f352-35d9-4ce1-a1f3-90212f182600}, ! Schedule Ruleset Name + 0, ! Rule Order + {20621a89-a34e-4e79-ac2f-02e326d4e98d}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {20621a89-a34e-4e79-ac2f-02e326d4e98d}, ! Handle + Small Office Bldg Light Rule 1 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.050000000000000003; ! Value Until Time 1 + +OS:Schedule:Rule, + {ddefeb43-137c-4544-9005-0400701ac8d4}, ! Handle + Small Office Bldg Light Rule 2, ! Name + {0060f352-35d9-4ce1-a1f3-90212f182600}, ! Schedule Ruleset Name + 1, ! Rule Order + {0451e91c-e3b3-4b46-ad8f-f486843fc799}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {0451e91c-e3b3-4b46-ad8f-f486843fc799}, ! Handle + Small Office Bldg Light Rule 2 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.050000000000000003, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 12, ! Hour 3 + 0, ! Minute 3 + 0.29999999999999999, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.14999999999999999, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.050000000000000003; ! Value Until Time 5 + +OS:DesignSpecification:OutdoorAir, + {5d2c9d6c-512b-4c0c-943d-0e88b95e2d99}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {460c6c84-5675-4d87-8a67-ba2f1fa1048a}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {718dac52-6013-4424-b469-47eacba02919}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 People, !- Name + {460c6c84-5675-4d87-8a67-ba2f1fa1048a}, !- People Definition Name + {a0ae7d7d-792b-4e89-b241-9bf3e2cd6df3}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {2e6fbfb8-e19f-4b60-abba-9f958f491f3e}, ! Handle + Small Office Bldg Occ, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + {c9029045-da87-4d80-8594-767f30f9e5e5}, ! Default Day Schedule Name + {de2c29e7-d5e9-491a-b3fc-7e48a5aeaa99}, ! Summer Design Day Schedule Name + {c514b4f4-7c13-40e0-9a5d-37155835fa37}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {c9029045-da87-4d80-8594-767f30f9e5e5}, ! Handle + Small Office Bldg Occ Default Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.2, !- Value Until Time 3 + 12, !- Hour 4 + 0, !- Minute 4 + 0.95, !- Value Until Time 4 + 13, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 + 0, !- Minute 6 + 0.95, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.3, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.1, !- Value Until Time 8 + 24, !- Hour 9 + 0, !- Minute 9 + 0.05; !- Value Until Time 9 + +OS:Schedule:Day, + {de2c29e7-d5e9-491a-b3fc-7e48a5aeaa99}, ! Handle + Small Office Bldg Occ Summer Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 1, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 0.050000000000000003; ! Value Until Time 3 + +OS:Schedule:Day, + {c514b4f4-7c13-40e0-9a5d-37155835fa37}, ! Handle + Small Office Bldg Occ Winter Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {539fe181-f0e6-4d18-98f0-04a76207e8a0}, ! Handle + Small Office Bldg Occ Rule 1, ! Name + {2e6fbfb8-e19f-4b60-abba-9f958f491f3e}, ! Schedule Ruleset Name + 0, ! Rule Order + {78b72719-50d6-4674-9375-db988487fdb9}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {78b72719-50d6-4674-9375-db988487fdb9}, ! Handle + Small Office Bldg Occ Rule 1 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {438485de-d214-4ae9-bc54-730d98918962}, ! Handle + Small Office Bldg Occ Rule 2, ! Name + {2e6fbfb8-e19f-4b60-abba-9f958f491f3e}, ! Schedule Ruleset Name + 1, ! Rule Order + {633f6683-5d4d-4b59-b4ce-b7516b7910ae}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {633f6683-5d4d-4b59-b4ce-b7516b7910ae}, ! Handle + Small Office Bldg Occ Rule 2 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.10000000000000001, ! Value Until Time 2 + 12, ! Hour 3 + 0, ! Minute 3 + 0.29999999999999999, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.10000000000000001, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0; ! Value Until Time 5 + +OS:Schedule:Ruleset, + {c56440f2-af22-435f-ae1f-57a65b72b4e4}, ! Handle + Small Office Activity, ! Name + {01bc3079-ffe7-451c-ae38-beb0d7071a1d}, ! Schedule Type Limits Name + {c9ad496d-64ae-4e80-8939-6be0ec729efc}, ! Default Day Schedule Name + {21ba4e47-ca4a-4980-b1c2-3ce1ba96e9e3}, ! Summer Design Day Schedule Name + {111bd4ec-ec2e-4841-b71f-05396b102492}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {01bc3079-ffe7-451c-ae38-beb0d7071a1d}, !- Handle + ActivityLevel 12, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:Schedule:Day, + {c9ad496d-64ae-4e80-8939-6be0ec729efc}, ! Handle + Small Office Activity Default Schedule, ! Name + {01bc3079-ffe7-451c-ae38-beb0d7071a1d}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {21ba4e47-ca4a-4980-b1c2-3ce1ba96e9e3}, ! Handle + Small Office Activity Summer Design Day, ! Name + {01bc3079-ffe7-451c-ae38-beb0d7071a1d}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:Schedule:Day, + {111bd4ec-ec2e-4841-b71f-05396b102492}, ! Handle + Small Office Activity Winter Design Day, ! Name + {01bc3079-ffe7-451c-ae38-beb0d7071a1d}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 120; ! Value Until Time 1 + +OS:SpaceInfiltration:DesignFlowRate, + {6ec72d49-a8d7-488c-8932-c990ad9411f4}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Infiltration, !- Name + {a0ae7d7d-792b-4e89-b241-9bf3e2cd6df3}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:Schedule:Ruleset, + {57928d9e-e370-407c-a326-ea5edf8b98bd}, ! Handle + Small Office Infil Quarter On, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + {9982ad3a-ba9e-40a6-b2c9-4b0e125b6b38}, ! Default Day Schedule Name + {84409f6c-0009-4b3c-a4ec-b52074dd6851}, ! Summer Design Day Schedule Name + {6e51125c-0ea5-4df1-8e8e-97ca22b07284}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {9982ad3a-ba9e-40a6-b2c9-4b0e125b6b38}, ! Handle + Small Office Infil Quarter On Default Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {84409f6c-0009-4b3c-a4ec-b52074dd6851}, ! Handle + Small Office Infil Quarter On Summer Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Day, + {6e51125c-0ea5-4df1-8e8e-97ca22b07284}, ! Handle + Small Office Infil Quarter On Winter Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:Schedule:Rule, + {7470e98e-97e7-4d29-936a-effe44de3309}, ! Handle + Small Office Infil Quarter On Rule 1, ! Name + {57928d9e-e370-407c-a326-ea5edf8b98bd}, ! Schedule Ruleset Name + 0, ! Rule Order + {bebf69f0-8b01-4002-88b1-e4809081038a}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {bebf69f0-8b01-4002-88b1-e4809081038a}, ! Handle + Small Office Infil Quarter On Rule 1 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Rule, + {49d87e99-b517-44d3-a37e-a0ae8526d978}, ! Handle + Small Office Infil Quarter On Rule 2, ! Name + {57928d9e-e370-407c-a326-ea5edf8b98bd}, ! Schedule Ruleset Name + 1, ! Rule Order + {f1447155-905f-44ce-8d37-3fd03887f191}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {f1447155-905f-44ce-8d37-3fd03887f191}, ! Handle + Small Office Infil Quarter On Rule 2 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 1, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 0.25, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 1; ! Value Until Time 3 + +OS:ElectricEquipment:Definition, + {5429fcde-94ff-4a72-b7ba-1197f830058f}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.8125141276385, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {ddb85ef3-5db2-4be5-9b04-778816ed18b8}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Electric Equipment, !- Name + {5429fcde-94ff-4a72-b7ba-1197f830058f}, !- Electric Equipment Definition Name + {a0ae7d7d-792b-4e89-b241-9bf3e2cd6df3}; !- Space or SpaceType Name + +OS:Schedule:Ruleset, + {69cd6240-7f2d-4bb0-93a5-a4f03bd4650e}, ! Handle + Small Office Bldg Equip, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + {7ed88f6f-9d2a-476d-b19d-55d6d15538d6}, ! Default Day Schedule Name + {bae4357c-71df-47d5-bfb9-52127cef616c}, ! Summer Design Day Schedule Name + {2b60c868-a8f5-4754-ae93-f46198eade82}; ! Winter Design Day Schedule Name + +OS:Schedule:Day, + {7ed88f6f-9d2a-476d-b19d-55d6d15538d6}, ! Handle + Small Office Bldg Equip Default Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.4, !- Value Until Time 1 + 12, !- Hour 2 + 0, !- Minute 2 + 0.9, !- Value Until Time 2 + 13, !- Hour 3 + 0, !- Minute 3 + 0.8, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 24, !- Hour 6 + 0, !- Minute 6 + 0.4; !- Value Until Time 6 + +OS:Schedule:Day, + {bae4357c-71df-47d5-bfb9-52127cef616c}, ! Handle + Small Office Bldg Equip Summer Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 1; ! Value Until Time 1 + +OS:Schedule:Day, + {2b60c868-a8f5-4754-ae93-f46198eade82}, ! Handle + Small Office Bldg Equip Winter Design Day, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0; ! Value Until Time 1 + +OS:Schedule:Rule, + {ea8bdeb8-d163-4062-ae91-adb0f5ae6d02}, ! Handle + Small Office Bldg Equip Rule 1, ! Name + {69cd6240-7f2d-4bb0-93a5-a4f03bd4650e}, ! Schedule Ruleset Name + 0, ! Rule Order + {4a4a06d9-31fb-4e58-a7b1-f10f19310fc6}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {4a4a06d9-31fb-4e58-a7b1-f10f19310fc6}, ! Handle + Small Office Bldg Equip Rule 1 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {3b1e2406-5a5d-455e-afe4-641866327310}, ! Handle + Small Office Bldg Equip Rule 2, ! Name + {69cd6240-7f2d-4bb0-93a5-a4f03bd4650e}, ! Schedule Ruleset Name + 1, ! Rule Order + {7e40001e-2514-4ee8-a50d-0b8105958d25}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {7e40001e-2514-4ee8-a50d-0b8105958d25}, ! Handle + Small Office Bldg Equip Rule 2 Day Schedule, ! Name + {8c20be8f-2c3b-4970-bd69-008a9c7394ea}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 0.29999999999999999, ! Value Until Time 1 + 8, ! Hour 2 + 0, ! Minute 2 + 0.40000000000000002, ! Value Until Time 2 + 12, ! Hour 3 + 0, ! Minute 3 + 0.5, ! Value Until Time 3 + 17, ! Hour 4 + 0, ! Minute 4 + 0.34999999999999998, ! Value Until Time 4 + 24, ! Hour 5 + 0, ! Minute 5 + 0.29999999999999999; ! Value Until Time 5 + +OS:ThermostatSetpoint:DualSetpoint, + {c4c3c4c6-1906-4b56-b82e-64eb1d62fc45}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Thermostat, !- Name + {efde20d4-3bc5-4cd5-807d-6d19629e2aa9}, !- Heating Setpoint Temperature Schedule Name + {3aaf7ee5-7466-4853-8da8-0112159ffa03}; !- Cooling Setpoint Temperature Schedule Name + +OS:Schedule:Ruleset, + {efde20d4-3bc5-4cd5-807d-6d19629e2aa9}, ! Handle + Small Office HtgSetp, ! Name + {f83b46b4-4e1d-488a-803e-2cc53e952213}, ! Schedule Type Limits Name + {ac394ec9-b719-4c60-b656-15dff0e4c72b}, ! Default Day Schedule Name + {a655650a-c39d-4ffd-8524-a0382e460f46}, ! Summer Design Day Schedule Name + {f1a46922-96e4-4a3d-b67f-885b8bbdc9d3}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {f83b46b4-4e1d-488a-803e-2cc53e952213}, !- Handle + Temperature 11, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {ac394ec9-b719-4c60-b656-15dff0e4c72b}, ! Handle + Small Office HtgSetp Default Schedule, ! Name + {f83b46b4-4e1d-488a-803e-2cc53e952213}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 15.6, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 21, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 15.6; !- Value Until Time 3 + +OS:Schedule:Day, + {a655650a-c39d-4ffd-8524-a0382e460f46}, ! Handle + Small Office HtgSetp Summer Design Day, ! Name + {f83b46b4-4e1d-488a-803e-2cc53e952213}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Day, + {f1a46922-96e4-4a3d-b67f-885b8bbdc9d3}, ! Handle + Small Office HtgSetp Winter Design Day, ! Name + {f83b46b4-4e1d-488a-803e-2cc53e952213}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 21; ! Value Until Time 1 + +OS:Schedule:Rule, + {8a974b16-91cc-4101-bb28-b1c74a8dba1d}, ! Handle + Small Office HtgSetp Rule 1, ! Name + {efde20d4-3bc5-4cd5-807d-6d19629e2aa9}, ! Schedule Ruleset Name + 0, ! Rule Order + {636637d0-8309-4d87-858e-0f87f6a029bc}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {636637d0-8309-4d87-858e-0f87f6a029bc}, ! Handle + Small Office HtgSetp Rule 1 Day Schedule, ! Name + {f83b46b4-4e1d-488a-803e-2cc53e952213}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 15.6; ! Value Until Time 1 + +OS:Schedule:Rule, + {235bd604-7013-4425-92d9-c33c59c59c6b}, ! Handle + Small Office HtgSetp Rule 2, ! Name + {efde20d4-3bc5-4cd5-807d-6d19629e2aa9}, ! Schedule Ruleset Name + 1, ! Rule Order + {390ba50d-662b-41b1-a009-5c7501f05a65}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {390ba50d-662b-41b1-a009-5c7501f05a65}, ! Handle + Small Office HtgSetp Rule 2 Day Schedule, ! Name + {f83b46b4-4e1d-488a-803e-2cc53e952213}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 15.6, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 21, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 15.6; ! Value Until Time 3 + +OS:Schedule:Ruleset, + {3aaf7ee5-7466-4853-8da8-0112159ffa03}, ! Handle + Small Office ClgSetp, ! Name + {33a9233d-d776-418a-b755-072f0542d5c3}, ! Schedule Type Limits Name + {bcdb0e50-90f6-4ed1-93c1-510d6c597327}, ! Default Day Schedule Name + {c92520b9-b54d-4fd6-afec-7e88bb7aff66}, ! Summer Design Day Schedule Name + {a05ca5ca-7ed7-4d09-85e5-c90a3aa53395}; ! Winter Design Day Schedule Name + +OS:ScheduleTypeLimits, + {33a9233d-d776-418a-b755-072f0542d5c3}, !- Handle + Temperature 4, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Day, + {bcdb0e50-90f6-4ed1-93c1-510d6c597327}, ! Handle + Small Office ClgSetp Default Schedule, ! Name + {33a9233d-d776-418a-b755-072f0542d5c3}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 26.7, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 26.7; !- Value Until Time 3 + +OS:Schedule:Day, + {c92520b9-b54d-4fd6-afec-7e88bb7aff66}, ! Handle + Small Office ClgSetp Summer Design Day, ! Name + {33a9233d-d776-418a-b755-072f0542d5c3}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 22, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:Schedule:Day, + {a05ca5ca-7ed7-4d09-85e5-c90a3aa53395}, ! Handle + Small Office ClgSetp Winter Design Day, ! Name + {33a9233d-d776-418a-b755-072f0542d5c3}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {c178c39c-3c08-43cc-8ea7-9d98e09de7b8}, ! Handle + Small Office ClgSetp Rule 1, ! Name + {3aaf7ee5-7466-4853-8da8-0112159ffa03}, ! Schedule Ruleset Name + 0, ! Rule Order + {2d6f8d50-a831-4340-a1ab-1414af155f4d}, ! Day Schedule Name + Yes, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + No, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {2d6f8d50-a831-4340-a1ab-1414af155f4d}, ! Handle + Small Office ClgSetp Rule 1 Day Schedule, ! Name + {33a9233d-d776-418a-b755-072f0542d5c3}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 24, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999; ! Value Until Time 1 + +OS:Schedule:Rule, + {38d80e33-50c8-4ecf-8366-a215472d94d3}, ! Handle + Small Office ClgSetp Rule 2, ! Name + {3aaf7ee5-7466-4853-8da8-0112159ffa03}, ! Schedule Ruleset Name + 1, ! Rule Order + {238795a3-7696-44ef-8f50-467038483853}, ! Day Schedule Name + No, ! Apply Sunday + No, ! Apply Monday + No, ! Apply Tuesday + No, ! Apply Wednesday + No, ! Apply Thursday + No, ! Apply Friday + Yes, ! Apply Saturday + , ! Apply Holiday + DateRange, ! Date Specification Type + 1, ! Start Month + 1, ! Start Day + 12, ! End Month + 31; ! End Day + +OS:Schedule:Day, + {238795a3-7696-44ef-8f50-467038483853}, ! Handle + Small Office ClgSetp Rule 2 Day Schedule, ! Name + {33a9233d-d776-418a-b755-072f0542d5c3}, ! Schedule Type Limits Name + , ! Interpolate to Timestep + 6, ! Hour 1 + 0, ! Minute 1 + 26.699999999999999, ! Value Until Time 1 + 18, ! Hour 2 + 0, ! Minute 2 + 24, ! Value Until Time 2 + 24, ! Hour 3 + 0, ! Minute 3 + 26.699999999999999; ! Value Until Time 3 + +OS:SpaceType, + {590bdfef-05a0-45d3-9bff-7fb207f6e02d}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8, !- Name + , !- Default Construction Set Name + {d5299877-c301-4f2c-be3d-0bf639afcf61}, !- Default Schedule Set Name + {e120f6bd-bb26-4855-ae30-37001f810687}, !- Group Rendering Name + {af6b751d-b75c-4de9-92ed-2f57dd437605}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + BreakRoom; !- Standards Space Type + +OS:Rendering:Color, + {e120f6bd-bb26-4855-ae30-37001f810687}, !- Handle + Rendering Color 17, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {d5299877-c301-4f2c-be3d-0bf639afcf61}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {dddcde27-b1ef-4883-9fbe-cdb6c24bbdce}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 11.6250232500465, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {a00242c6-de69-4994-a513-d9770fbc333a}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Lights, !- Name + {dddcde27-b1ef-4883-9fbe-cdb6c24bbdce}, !- Lights Definition Name + {590bdfef-05a0-45d3-9bff-7fb207f6e02d}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {af6b751d-b75c-4de9-92ed-2f57dd437605}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {ca59bf3e-4685-49f1-b570-ff61c1620ed3}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {8c9918da-56f1-4c46-9191-4893a3c310e9}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 People, !- Name + {ca59bf3e-4685-49f1-b570-ff61c1620ed3}, !- People Definition Name + {590bdfef-05a0-45d3-9bff-7fb207f6e02d}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {6df7550f-553e-48b2-a935-1efdc617ee02}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Infiltration, !- Name + {590bdfef-05a0-45d3-9bff-7fb207f6e02d}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {d4623c22-5946-4b3a-ba2b-a6ed95623485}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 48.0070404585254, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {521d33ff-b545-4529-a3c0-d441d9e24cbc}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Electric Equipment, !- Name + {d4623c22-5946-4b3a-ba2b-a6ed95623485}, !- Electric Equipment Definition Name + {590bdfef-05a0-45d3-9bff-7fb207f6e02d}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {e7652d18-a7c0-41e2-b533-845249595c70}, !- Handle + 189.1-2009 - Office - BreakRoom - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {02a2d6b1-b588-455a-9a2d-33c373b689e5}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8, !- Name + , !- Default Construction Set Name + {f66fb2b2-ea44-4a0a-b084-021eede99706}, !- Default Schedule Set Name + {dbeb0e15-64ad-4062-83ab-e9dab8a95e54}, !- Group Rendering Name + {602c604b-4910-4abd-a19c-d30d4af29d96}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + ClosedOffice; !- Standards Space Type + +OS:Rendering:Color, + {dbeb0e15-64ad-4062-83ab-e9dab8a95e54}, !- Handle + Rendering Color 18, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {f66fb2b2-ea44-4a0a-b084-021eede99706}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {06c89d51-b9fe-40cc-aca2-452c7c276c16}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {17bde7aa-697b-4e20-966f-1a9d6f2dd6bf}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {308a927f-b672-499a-8548-1cbe6e0cc3b4}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Lights, !- Name + {17bde7aa-697b-4e20-966f-1a9d6f2dd6bf}, !- Lights Definition Name + {02a2d6b1-b588-455a-9a2d-33c373b689e5}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {602c604b-4910-4abd-a19c-d30d4af29d96}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {158438e8-086e-4280-a396-42beca143b70}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0511285744793712, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {0db265d4-07f0-409c-a282-d60ba8cdd299}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 People, !- Name + {158438e8-086e-4280-a396-42beca143b70}, !- People Definition Name + {02a2d6b1-b588-455a-9a2d-33c373b689e5}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {cb71c9f4-f220-4dca-8585-e7e546751ab6}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Infiltration, !- Name + {02a2d6b1-b588-455a-9a2d-33c373b689e5}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {70a62845-9f40-4afd-8675-407885ed8c9d}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 6.88890266669422, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {a3fb414b-4a0c-404c-a3bf-f6c6f4994fc3}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Electric Equipment, !- Name + {70a62845-9f40-4afd-8675-407885ed8c9d}, !- Electric Equipment Definition Name + {02a2d6b1-b588-455a-9a2d-33c373b689e5}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {61b65269-b1fa-4da5-99a2-2bda3a5e9990}, !- Handle + 189.1-2009 - Office - ClosedOffice - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {a8fd6f58-e298-4848-9417-ed0ce0021d6e}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8, !- Name + , !- Default Construction Set Name + {f330262e-a11d-428e-9522-840eaaef7998}, !- Default Schedule Set Name + {1b228dcb-b1e5-44c4-8d76-5f0989814e3e}, !- Group Rendering Name + {44102f6b-808a-470c-92b7-4f6f2a4f4632}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Conference; !- Standards Space Type + +OS:Rendering:Color, + {1b228dcb-b1e5-44c4-8d76-5f0989814e3e}, !- Handle + Rendering Color 19, !- Name + 230, !- Rendering Red Value + 196, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {f330262e-a11d-428e-9522-840eaaef7998}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {cd680e50-f745-4db2-93ac-67b28ac19d3c}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 12.5937751875504, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {2f8ee731-2ef7-43ff-ba1b-8f86d461e7f7}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Lights, !- Name + {cd680e50-f745-4db2-93ac-67b28ac19d3c}, !- Lights Definition Name + {a8fd6f58-e298-4848-9417-ed0ce0021d6e}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {44102f6b-808a-470c-92b7-4f6f2a4f4632}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {c876150e-ad56-4134-9f57-43f3a99f6747}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {dd46fd27-aa85-4774-a265-3c2b561fba27}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 People, !- Name + {c876150e-ad56-4134-9f57-43f3a99f6747}, !- People Definition Name + {a8fd6f58-e298-4848-9417-ed0ce0021d6e}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {ed42174e-e2b9-4abc-bac2-808f7c34effc}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Infiltration, !- Name + {a8fd6f58-e298-4848-9417-ed0ce0021d6e}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {0c3da362-ed8e-40c0-826e-82b2ff925dd3}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 3.9826468541826, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {b6874db5-a5af-4543-a1c4-80583445caf2}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Electric Equipment, !- Name + {0c3da362-ed8e-40c0-826e-82b2ff925dd3}, !- Electric Equipment Definition Name + {a8fd6f58-e298-4848-9417-ed0ce0021d6e}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {0df6b152-bbb3-4e26-a971-7f94039bbe1c}, !- Handle + 189.1-2009 - Office - Conference - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {2f5aeb50-b139-4a64-9a6f-351f9d4bbb0a}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8, !- Name + , !- Default Construction Set Name + {85788d2f-09fc-4dda-ab92-976cde8afae9}, !- Default Schedule Set Name + {719a73ae-16db-4e24-a53b-472d29785e32}, !- Group Rendering Name + {397c7718-336e-4ab3-b90a-fb97ed68076b}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Corridor; !- Standards Space Type + +OS:Rendering:Color, + {719a73ae-16db-4e24-a53b-472d29785e32}, !- Handle + Rendering Color 20, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {85788d2f-09fc-4dda-ab92-976cde8afae9}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {06c89d51-b9fe-40cc-aca2-452c7c276c16}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {ba3763ec-98d1-46a3-91ed-6f4ffee3b361}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.84375968751938, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {d09f6096-0924-4aa1-a5cc-398ad47796fb}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Lights, !- Name + {ba3763ec-98d1-46a3-91ed-6f4ffee3b361}, !- Lights Definition Name + {2f5aeb50-b139-4a64-9a6f-351f9d4bbb0a}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {397c7718-336e-4ab3-b90a-fb97ed68076b}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {6f559b27-5279-4c4b-8499-5d7fdc5f5f06}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {faa275be-8ed3-4bf2-b661-bbe402cabd5c}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 People, !- Name + {6f559b27-5279-4c4b-8499-5d7fdc5f5f06}, !- People Definition Name + {2f5aeb50-b139-4a64-9a6f-351f9d4bbb0a}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {f56152fa-4334-4225-adb5-a8419727803d}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Infiltration, !- Name + {2f5aeb50-b139-4a64-9a6f-351f9d4bbb0a}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {12858875-8761-4b80-9b34-82229bc7f03d}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 1.72222566667356, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {1f55f9c5-3406-4d27-8830-737e432ee15e}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Electric Equipment, !- Name + {12858875-8761-4b80-9b34-82229bc7f03d}, !- Electric Equipment Definition Name + {2f5aeb50-b139-4a64-9a6f-351f9d4bbb0a}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {24c9e30a-a13b-4c2b-9f9a-07b8b104fd14}, !- Handle + 189.1-2009 - Office - Corridor - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {64b733e9-d6fc-44ae-b4a8-1ad99c789a56}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8, !- Name + , !- Default Construction Set Name + {8dff747a-6304-4d5c-bbaa-17e8ef5f2a98}, !- Default Schedule Set Name + {ff40b903-665e-4411-8a0d-284a6decce66}, !- Group Rendering Name + {36672a28-7bbe-4aba-81a7-c142b1a53f89}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Elec/MechRoom; !- Standards Space Type + +OS:Rendering:Color, + {ff40b903-665e-4411-8a0d-284a6decce66}, !- Handle + Rendering Color 21, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {8dff747a-6304-4d5c-bbaa-17e8ef5f2a98}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {f9fc89ba-9f94-4d8f-90d0-dd43a23f0997}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 14.5312790625581, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {27016dbd-5e50-4620-b180-defd6e7454a5}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Lights, !- Name + {f9fc89ba-9f94-4d8f-90d0-dd43a23f0997}, !- Lights Definition Name + {64b733e9-d6fc-44ae-b4a8-1ad99c789a56}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {36672a28-7bbe-4aba-81a7-c142b1a53f89}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {fdfd2af5-7fc2-4b36-8575-2f68232dbb74}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Infiltration, !- Name + {64b733e9-d6fc-44ae-b4a8-1ad99c789a56}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {bfce6f03-3c30-4463-a306-1a3ac5e271fc}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 2.90625581251162, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {075bb987-3fb4-4799-9a19-fed5f553e7d7}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Electric Equipment, !- Name + {bfce6f03-3c30-4463-a306-1a3ac5e271fc}, !- Electric Equipment Definition Name + {64b733e9-d6fc-44ae-b4a8-1ad99c789a56}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {d9ac220c-9cd7-4344-8578-4d0cb26de2d5}, !- Handle + 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {db0977f2-ff0b-431b-a86b-bf170012ebdf}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8, !- Name + , !- Default Construction Set Name + {7339d5e4-8152-4767-b52b-732afa1f481f}, !- Default Schedule Set Name + {4427a426-a2d3-4885-80cf-8fa6cf10a2b7}, !- Group Rendering Name + {7d95e0b8-961c-432a-b01b-b6d9c9225d2e}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + IT_Room; !- Standards Space Type + +OS:Rendering:Color, + {4427a426-a2d3-4885-80cf-8fa6cf10a2b7}, !- Handle + Rendering Color 22, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {7339d5e4-8152-4767-b52b-732afa1f481f}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {665d754e-b0d3-4148-a503-2cc6b163afcc}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {2af392dd-a5ba-47ab-bb80-b86539070197}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Lights, !- Name + {665d754e-b0d3-4148-a503-2cc6b163afcc}, !- Lights Definition Name + {db0977f2-ff0b-431b-a86b-bf170012ebdf}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {7d95e0b8-961c-432a-b01b-b6d9c9225d2e}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {9a31b3dc-ecfb-4a7d-8d56-bab23dedeebc}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {262a0f2f-1b5d-4951-96c4-c08f928558e3}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 People, !- Name + {9a31b3dc-ecfb-4a7d-8d56-bab23dedeebc}, !- People Definition Name + {db0977f2-ff0b-431b-a86b-bf170012ebdf}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {9d271356-ae68-43ba-93c7-e70facddda2a}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Infiltration, !- Name + {db0977f2-ff0b-431b-a86b-bf170012ebdf}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {aaf152b7-354c-4fd9-b77c-e509bb2ffd1e}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 16.7917002500672, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {cf2c81dc-44f5-4153-b26d-fc50cb4f9dac}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Electric Equipment, !- Name + {aaf152b7-354c-4fd9-b77c-e509bb2ffd1e}, !- Electric Equipment Definition Name + {db0977f2-ff0b-431b-a86b-bf170012ebdf}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {5b159641-dcf7-4c8d-91b7-e102cef7b039}, !- Handle + 189.1-2009 - Office - IT_Room - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {aa6f1750-3fee-4ceb-b19b-34b93d20c822}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8, !- Name + , !- Default Construction Set Name + {b2ff273a-7574-46da-987a-dc5b38f41c22}, !- Default Schedule Set Name + {e36fb1ca-f9f6-4588-bfdf-dcef2cc57f00}, !- Group Rendering Name + {7d375220-b6a9-4639-af84-f9ef871d7b10}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Lobby; !- Standards Space Type + +OS:Rendering:Color, + {e36fb1ca-f9f6-4588-bfdf-dcef2cc57f00}, !- Handle + Rendering Color 23, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {b2ff273a-7574-46da-987a-dc5b38f41c22}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {2ec8be97-bb35-40fe-8168-6a60b9538f05}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 12.5937751875504, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {14fbccf4-0cdc-464d-b504-7b370812b802}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Lights, !- Name + {2ec8be97-bb35-40fe-8168-6a60b9538f05}, !- Lights Definition Name + {aa6f1750-3fee-4ceb-b19b-34b93d20c822}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {7d375220-b6a9-4639-af84-f9ef871d7b10}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {4d115ba5-937f-47fd-9ec0-0803083bd76f}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {0f1c33ef-642b-4a33-9c1e-38b89ea5c922}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 People, !- Name + {4d115ba5-937f-47fd-9ec0-0803083bd76f}, !- People Definition Name + {aa6f1750-3fee-4ceb-b19b-34b93d20c822}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {b4ff6fe2-086a-486e-b14c-f560011b70a5}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Infiltration, !- Name + {aa6f1750-3fee-4ceb-b19b-34b93d20c822}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {6e1efd3e-88ef-4d45-b62c-2db1bc6765df}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 0.753473729169681, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {41491e29-981c-4eca-83b0-9a914dae9892}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Electric Equipment, !- Name + {6e1efd3e-88ef-4d45-b62c-2db1bc6765df}, !- Electric Equipment Definition Name + {aa6f1750-3fee-4ceb-b19b-34b93d20c822}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {84c616af-5264-4000-8c62-aa122c73f821}, !- Handle + 189.1-2009 - Office - Lobby - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {e8ef8f2d-6317-445d-9ad5-3a1252f745a0}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8, !- Name + , !- Default Construction Set Name + {caf0218e-6d17-4398-8642-0df0525bc8c7}, !- Default Schedule Set Name + {4488423c-7aa7-487b-9e4b-6a55383afedd}, !- Group Rendering Name + {8760cca6-077b-4208-9145-46da45e270e9}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + OpenOffice; !- Standards Space Type + +OS:Rendering:Color, + {4488423c-7aa7-487b-9e4b-6a55383afedd}, !- Handle + Rendering Color 24, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {caf0218e-6d17-4398-8642-0df0525bc8c7}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {06c89d51-b9fe-40cc-aca2-452c7c276c16}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {1505e7af-5f27-4f37-a0ce-921e6efc3bd0}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {3f4fab84-340e-4114-b75c-6ba7af4a4ff0}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Lights, !- Name + {1505e7af-5f27-4f37-a0ce-921e6efc3bd0}, !- Lights Definition Name + {e8ef8f2d-6317-445d-9ad5-3a1252f745a0}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {8760cca6-077b-4208-9145-46da45e270e9}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {d3734148-c3cd-4083-91c6-4aa71dabd34b}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.056510529687726, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {109a3838-1af5-476c-a1fb-16eb8d5f51fc}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 People, !- Name + {d3734148-c3cd-4083-91c6-4aa71dabd34b}, !- People Definition Name + {e8ef8f2d-6317-445d-9ad5-3a1252f745a0}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {221a5c6a-d199-4fb4-83bb-246d133d7a0b}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Infiltration, !- Name + {e8ef8f2d-6317-445d-9ad5-3a1252f745a0}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {0ffb3de0-639a-4111-8640-76b472ba6009}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.6423763958639, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {bf984bf3-1284-423a-8258-b18ffd2062d7}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Electric Equipment, !- Name + {0ffb3de0-639a-4111-8640-76b472ba6009}, !- Electric Equipment Definition Name + {e8ef8f2d-6317-445d-9ad5-3a1252f745a0}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {1dee02f8-dafe-45db-990a-7cab2909e60f}, !- Handle + 189.1-2009 - Office - OpenOffice - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {7acb442c-da5c-43e0-b8ff-8595b719a7c9}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8, !- Name + , !- Default Construction Set Name + {78ab2dc0-fb9c-494a-91f4-eb386b8057af}, !- Default Schedule Set Name + {5f76be35-a6d0-413b-9149-6fd98a06da80}, !- Group Rendering Name + {92ea255f-a556-46bc-b469-d5c2d3c32608}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + PrintRoom; !- Standards Space Type + +OS:Rendering:Color, + {5f76be35-a6d0-413b-9149-6fd98a06da80}, !- Handle + Rendering Color 25, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {78ab2dc0-fb9c-494a-91f4-eb386b8057af}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {9ad818b6-7bbc-415f-a608-29e20dd67d5f}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.6562713125426, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {364fc0e0-c823-4d30-b986-9089edf27a68}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Lights, !- Name + {9ad818b6-7bbc-415f-a608-29e20dd67d5f}, !- Lights Definition Name + {7acb442c-da5c-43e0-b8ff-8595b719a7c9}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {92ea255f-a556-46bc-b469-d5c2d3c32608}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {fa1e929a-804b-4f21-a781-3e2b1a1cdaa3}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {e5e7fa04-55c4-494d-9d7e-725cc9e03bf0}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 People, !- Name + {fa1e929a-804b-4f21-a781-3e2b1a1cdaa3}, !- People Definition Name + {7acb442c-da5c-43e0-b8ff-8595b719a7c9}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {e0767508-990b-43bb-a5fa-9083ea04ccce}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Infiltration, !- Name + {7acb442c-da5c-43e0-b8ff-8595b719a7c9}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {32118eca-7d6b-4846-966a-f9d71a231462}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 30.0313100626201, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {53b4c780-74fe-4ecf-8a0e-5305b2bd9872}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Electric Equipment, !- Name + {32118eca-7d6b-4846-966a-f9d71a231462}, !- Electric Equipment Definition Name + {7acb442c-da5c-43e0-b8ff-8595b719a7c9}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {8858a38f-e5dd-43c1-b8e4-f4116cc71278}, !- Handle + 189.1-2009 - Office - PrintRoom - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {abcbab3f-effe-4622-bc44-723140acd446}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8, !- Name + , !- Default Construction Set Name + {b77a5d3e-664c-4622-bd46-6887cf16d7a7}, !- Default Schedule Set Name + {1fb8c356-fa17-463d-b456-93050b76c74d}, !- Group Rendering Name + {a6150f4b-d7a2-495e-858d-878623a15984}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Restroom; !- Standards Space Type + +OS:Rendering:Color, + {1fb8c356-fa17-463d-b456-93050b76c74d}, !- Handle + Rendering Color 26, !- Name + 169, !- Rendering Red Value + 169, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {b77a5d3e-664c-4622-bd46-6887cf16d7a7}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {a21135a0-1238-4d79-82c9-bce028c28f18}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.71876743753488, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {a91016e5-618a-4cef-a8b0-ec2ed8f9b818}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Lights, !- Name + {a21135a0-1238-4d79-82c9-bce028c28f18}, !- Lights Definition Name + {abcbab3f-effe-4622-bc44-723140acd446}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {a6150f4b-d7a2-495e-858d-878623a15984}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.0048768, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {5e3e0e52-ce76-4b80-9a90-5d1d024598df}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {cf338cd9-9dd1-4f6d-b11d-cac19968472a}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 People, !- Name + {5e3e0e52-ce76-4b80-9a90-5d1d024598df}, !- People Definition Name + {abcbab3f-effe-4622-bc44-723140acd446}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {c0198afd-0ed1-426b-8e86-d8dfbfb8ea0f}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Infiltration, !- Name + {abcbab3f-effe-4622-bc44-723140acd446}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {b89352f6-b8b7-4bac-9f1f-c5aebbc7c9e0}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 0.753473729169681, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {11713562-1d3c-45cd-b27e-109acb4e7259}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Electric Equipment, !- Name + {b89352f6-b8b7-4bac-9f1f-c5aebbc7c9e0}, !- Electric Equipment Definition Name + {abcbab3f-effe-4622-bc44-723140acd446}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {61363e1f-cb1b-4d62-8e43-3d6fa6a70cdf}, !- Handle + 189.1-2009 - Office - Restroom - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {0b0d329f-3143-46a9-860b-f866fb11ffa3}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8, !- Name + , !- Default Construction Set Name + {05cac606-f938-4ba1-a2a2-b6a16deff425}, !- Default Schedule Set Name + {62a15a04-6f25-42f9-9150-a496f6625e77}, !- Group Rendering Name + {cf47e3a4-6ad3-40fa-8019-fa7ea9bed82d}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Stair; !- Standards Space Type + +OS:Rendering:Color, + {62a15a04-6f25-42f9-9150-a496f6625e77}, !- Handle + Rendering Color 27, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {05cac606-f938-4ba1-a2a2-b6a16deff425}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + , !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {f1ccbe9a-64a9-4758-b085-00b929d68aa8}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 5.81251162502325, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {a62ec5e7-58f7-42e7-ba49-d2f327520f6f}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Lights, !- Name + {f1ccbe9a-64a9-4758-b085-00b929d68aa8}, !- Lights Definition Name + {0b0d329f-3143-46a9-860b-f866fb11ffa3}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {cf47e3a4-6ad3-40fa-8019-fa7ea9bed82d}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {122ee967-b011-403d-a9d7-d641df4d4c25}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Infiltration, !- Name + {0b0d329f-3143-46a9-860b-f866fb11ffa3}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ThermostatSetpoint:DualSetpoint, + {2895e9e4-0808-4645-98cf-bfd09da04ebb}, !- Handle + 189.1-2009 - Office - Stair - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {ea92bf36-9925-46c2-b823-e7020f4f149c}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8, !- Name + , !- Default Construction Set Name + {b296e50e-92d6-453d-86e6-64702a9991f3}, !- Default Schedule Set Name + {8e9d5c41-6ef5-46be-aca6-44b63eaab072}, !- Group Rendering Name + {f0de3ade-94e5-4db7-891a-05d444e6269f}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Storage; !- Standards Space Type + +OS:Rendering:Color, + {8e9d5c41-6ef5-46be-aca6-44b63eaab072}, !- Handle + Rendering Color 28, !- Name + 120, !- Rendering Red Value + 149, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {b296e50e-92d6-453d-86e6-64702a9991f3}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + , !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {dfad78a8-f481-4d1e-b7a0-65c53ced2508}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.750015500031, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {fce496db-26dd-44e6-9f69-d5f17feabd76}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Lights, !- Name + {dfad78a8-f481-4d1e-b7a0-65c53ced2508}, !- Lights Definition Name + {ea92bf36-9925-46c2-b823-e7020f4f149c}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {f0de3ade-94e5-4db7-891a-05d444e6269f}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:SpaceInfiltration:DesignFlowRate, + {43f926af-b5ea-4852-b876-dfec28b5712f}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Infiltration, !- Name + {ea92bf36-9925-46c2-b823-e7020f4f149c}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ThermostatSetpoint:DualSetpoint, + {61ff46e9-7d17-443b-a652-c8f739577509}, !- Handle + 189.1-2009 - Office - Storage - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {53df7fb8-e412-4c19-b7a8-06e612579eaf}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8, !- Name + , !- Default Construction Set Name + {cf92ef93-0b8b-4143-a1fa-625cda3cdce4}, !- Default Schedule Set Name + {64cab260-41b5-474f-bf06-6a70c27d1aa3}, !- Group Rendering Name + {57e63508-51ff-435e-b187-981ef91f4ed5}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + Vending; !- Standards Space Type + +OS:Rendering:Color, + {64cab260-41b5-474f-bf06-6a70c27d1aa3}, !- Handle + Rendering Color 29, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {cf92ef93-0b8b-4143-a1fa-625cda3cdce4}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {e36a6f68-77fa-4384-a5fb-9463bee9cce5}, !- Number of People Schedule Name + {97b80d99-3e51-4fed-a4d0-0d1fba4cc07e}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {fb9fe5ff-d281-4574-8420-8b2edf947775}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {17feeb54-bb8d-40c8-9a0c-c34c0f941425}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {8820fd77-1468-46bf-a862-d9c1f6082563}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.84375968751938, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {eb4977db-fe49-45ae-a81a-38adc3161824}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Lights, !- Name + {8820fd77-1468-46bf-a862-d9c1f6082563}, !- Lights Definition Name + {53df7fb8-e412-4c19-b7a8-06e612579eaf}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {57e63508-51ff-435e-b187-981ef91f4ed5}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {cb944bd8-494f-4ca6-939c-923d68def8a3}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0107639104167097, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {f501a67b-3304-4990-a16d-2b7c6a462e22}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 People, !- Name + {cb944bd8-494f-4ca6-939c-923d68def8a3}, !- People Definition Name + {53df7fb8-e412-4c19-b7a8-06e612579eaf}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {e5d44b64-f965-4ef2-ab1b-621fd9d39857}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Infiltration, !- Name + {53df7fb8-e412-4c19-b7a8-06e612579eaf}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {09bac2e0-6a26-4718-881c-eba647e419f6}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 41.4410551043324, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {91421bf7-95e0-4beb-b08c-337450119507}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Electric Equipment, !- Name + {09bac2e0-6a26-4718-881c-eba647e419f6}, !- Electric Equipment Definition Name + {53df7fb8-e412-4c19-b7a8-06e612579eaf}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {11b6c080-67e1-4bbf-b2ef-d07ee3abcd9e}, !- Handle + 189.1-2009 - Office - Vending - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {c1cd5361-eb1d-4ef8-aac9-9d81db31bc8d}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8, !- Name + , !- Default Construction Set Name + {884321b1-971a-4c37-b925-df4be86aa0fe}, !- Default Schedule Set Name + {29c5a107-3366-4e82-bf53-a469524abc1a}, !- Group Rendering Name + {e6b208ad-7b07-4427-ad0f-b649b2e8a3e1}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + WholeBuilding - Lg Office; !- Standards Space Type + +OS:Rendering:Color, + {29c5a107-3366-4e82-bf53-a469524abc1a}, !- Handle + Rendering Color 30, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {884321b1-971a-4c37-b925-df4be86aa0fe}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {ab9e1b4f-ae68-45a9-9970-3cd6b5ead515}, !- Number of People Schedule Name + {aa917ef6-d643-4b6c-bec1-917d22f9b0a3}, !- People Activity Level Schedule Name + {f2a09368-6e07-4787-9b2b-48b4dcdc0076}, !- Lighting Schedule Name + {4e439ed3-c35b-4a6d-91e2-7f7179301d96}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {95101b62-7348-470f-ae62-1ee04d837e69}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {640b72c0-5fba-4e4d-b163-136981977456}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {9b7940be-dee2-45cd-bbce-edf3a87f76ac}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Lights, !- Name + {640b72c0-5fba-4e4d-b163-136981977456}, !- Lights Definition Name + {c1cd5361-eb1d-4ef8-aac9-9d81db31bc8d}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {e6b208ad-7b07-4427-ad0f-b649b2e8a3e1}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {256c7dca-cd94-415a-9ecf-42264783f2c5}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {b978d773-0b83-4b61-a6a2-20c3029770f0}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 People, !- Name + {256c7dca-cd94-415a-9ecf-42264783f2c5}, !- People Definition Name + {c1cd5361-eb1d-4ef8-aac9-9d81db31bc8d}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {1f5ce3fe-1cbf-4bb2-997f-02515304de6e}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Infiltration, !- Name + {c1cd5361-eb1d-4ef8-aac9-9d81db31bc8d}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {856442a5-87f2-4829-becd-20943e771e1b}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.8125141276385, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {a0bd7deb-0f1f-4ab1-a061-bf58b283b1e0}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Electric Equipment, !- Name + {856442a5-87f2-4829-becd-20943e771e1b}, !- Electric Equipment Definition Name + {c1cd5361-eb1d-4ef8-aac9-9d81db31bc8d}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {c365ae8e-9ca7-4684-b578-53133eeaff35}, !- Handle + 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Thermostat, !- Name + {3ef2d679-3d3e-4dce-b623-1d95853d8bfe}, !- Heating Setpoint Temperature Schedule Name + {369b94fe-c642-4e2e-9da3-0a5d7741a6cd}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {2ef085c3-7718-442c-b475-9df4d7b0cf36}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8, !- Name + , !- Default Construction Set Name + {b9ed4614-f6fd-432f-8f96-e26b4f28c441}, !- Default Schedule Set Name + {3325861b-32a7-4b40-aa40-3ea285a995e2}, !- Group Rendering Name + {542454fc-5333-4873-8aa7-751337efda85}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + WholeBuilding - Md Office; !- Standards Space Type + +OS:Rendering:Color, + {3325861b-32a7-4b40-aa40-3ea285a995e2}, !- Handle + Rendering Color 31, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {b9ed4614-f6fd-432f-8f96-e26b4f28c441}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {b9bf0186-3cf1-4366-a634-04d1937d2de5}, !- Number of People Schedule Name + {e34169f9-a4fd-44bb-864a-dfac9ae9c322}, !- People Activity Level Schedule Name + {7b66e4f3-335b-4b36-8fb5-51c057e9db33}, !- Lighting Schedule Name + {5769dd07-2885-4ddc-bf01-c5000a322689}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {6e3bf1c9-33d0-4fe5-9abf-3a9a920e9986}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {2753a52c-590e-4644-8d53-c95d8b06f064}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {7f78c74a-26f4-4529-8a60-b9f5ee8cd608}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Lights, !- Name + {2753a52c-590e-4644-8d53-c95d8b06f064}, !- Lights Definition Name + {2ef085c3-7718-442c-b475-9df4d7b0cf36}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {542454fc-5333-4873-8aa7-751337efda85}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {b33d1139-b8cf-4351-a956-3cb9c42af3fe}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {0987b9b6-e6da-43aa-86a9-13661bea8f03}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 People, !- Name + {b33d1139-b8cf-4351-a956-3cb9c42af3fe}, !- People Definition Name + {2ef085c3-7718-442c-b475-9df4d7b0cf36}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {a5ae30dd-3d59-4dce-9d39-892ba6f1628d}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Infiltration, !- Name + {2ef085c3-7718-442c-b475-9df4d7b0cf36}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {d1cae569-4c19-4277-a436-ae360bca5900}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.81251162502325, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {11a620f9-7f24-4740-b1bd-87e9a800302e}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Electric Equipment, !- Name + {d1cae569-4c19-4277-a436-ae360bca5900}, !- Electric Equipment Definition Name + {2ef085c3-7718-442c-b475-9df4d7b0cf36}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {1ee8002a-0c8f-4b6d-b825-8b1a34f8a884}, !- Handle + 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Thermostat, !- Name + {ee9e14ad-1069-46ff-b551-35505654cf78}, !- Heating Setpoint Temperature Schedule Name + {97ee2088-5aed-4e81-a741-5150f445aa2d}; !- Cooling Setpoint Temperature Schedule Name + +OS:SpaceType, + {275f82a7-1dd3-4b1f-a54a-ac887e190608}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8, !- Name + , !- Default Construction Set Name + {34d7e0ea-bdfc-4598-b6c4-701502ea53f9}, !- Default Schedule Set Name + {b099a3fe-eb59-4b69-97fb-b1828c06881c}, !- Group Rendering Name + {5dccd5bf-5dd8-4dba-acb0-2ba15cc5cdda}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Office, !- Standards Building Type + WholeBuilding - Sm Office; !- Standards Space Type + +OS:Rendering:Color, + {b099a3fe-eb59-4b69-97fb-b1828c06881c}, !- Handle + Rendering Color 32, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:DefaultScheduleSet, + {34d7e0ea-bdfc-4598-b6c4-701502ea53f9}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {2e6fbfb8-e19f-4b60-abba-9f958f491f3e}, !- Number of People Schedule Name + {c56440f2-af22-435f-ae1f-57a65b72b4e4}, !- People Activity Level Schedule Name + {0060f352-35d9-4ce1-a1f3-90212f182600}, !- Lighting Schedule Name + {69cd6240-7f2d-4bb0-93a5-a4f03bd4650e}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {57928d9e-e370-407c-a326-ea5edf8b98bd}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {3179e64a-50d0-4d01-a45e-669696e0e361}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:Lights, + {f76fd83b-86ff-44d7-ad4a-3792b346c340}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Lights, !- Name + {3179e64a-50d0-4d01-a45e-669696e0e361}, !- Lights Definition Name + {275f82a7-1dd3-4b1f-a54a-ac887e190608}; !- Space or SpaceType Name + +OS:DesignSpecification:OutdoorAir, + {5dccd5bf-5dd8-4dba-acb0-2ba15cc5cdda}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:People:Definition, + {41dc6992-de9d-4687-a5c9-23023f9a5c4c}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0538195520835486, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {2e09674a-8dbf-4a18-a371-0e2ea53c0b18}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 People, !- Name + {41dc6992-de9d-4687-a5c9-23023f9a5c4c}, !- People Definition Name + {275f82a7-1dd3-4b1f-a54a-ac887e190608}; !- Space or SpaceType Name + +OS:SpaceInfiltration:DesignFlowRate, + {e51297a2-bf6f-46a4-a7b4-96853021e017}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Infiltration, !- Name + {275f82a7-1dd3-4b1f-a54a-ac887e190608}, !- Space or SpaceType Name + , !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + , !- Constant Term Coefficient + , !- Temperature Term Coefficient + , !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +OS:ElectricEquipment:Definition, + {f3b6b9ac-eb85-4945-8113-a4d9dd36863c}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Electric Equipment Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5.8125141276385, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} + +OS:ElectricEquipment, + {de724033-36a2-419f-a2f2-2d40fae15377}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Electric Equipment, !- Name + {f3b6b9ac-eb85-4945-8113-a4d9dd36863c}, !- Electric Equipment Definition Name + {275f82a7-1dd3-4b1f-a54a-ac887e190608}; !- Space or SpaceType Name + +OS:ThermostatSetpoint:DualSetpoint, + {16f3c8c9-544e-4cbe-b202-7a7e96b509d9}, !- Handle + 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Thermostat, !- Name + {efde20d4-3bc5-4cd5-807d-6d19629e2aa9}, !- Heating Setpoint Temperature Schedule Name + {3aaf7ee5-7466-4853-8da8-0112159ffa03}; !- Cooling Setpoint Temperature Schedule Name + +OS:DefaultConstructionSet, + {d616e38c-4f5b-4868-9d45-041a3a61e3aa}, !- Handle + 189.1-2009 - CZ1 - Office, !- Name + {c77992c2-2af7-4d30-b55e-bcfd019d8093}, !- Default Exterior Surface Constructions Name + {da6e1c6c-a0ba-4137-8de2-36bca37b4d8c}, !- Default Interior Surface Constructions Name + {53d12c2c-42f0-4f35-b064-feae124f5db4}, !- Default Ground Contact Surface Constructions Name + {b3b3f4cf-101d-4a90-a5fb-5edd8fa60a5b}, !- Default Exterior SubSurface Constructions Name + {6a77a8e3-c6d6-4e4c-9893-ebc4a8632c60}, !- Default Interior SubSurface Constructions Name + {5c827314-7a18-44b4-826d-01cd1dd48194}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {c77992c2-2af7-4d30-b55e-bcfd019d8093}, !- Handle + Default Surface Constructions 1, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {c1ab8b34-f42e-4b79-9fbf-966591f9d0f0}, !- Wall Construction Name + {77321178-c48d-4f24-a1da-29db558f7f64}; !- Roof Ceiling Construction Name + +OS:Construction, + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Handle + ExtSlabCarpet 4in ClimateZone 1-8, !- Name + {365a08b6-23e3-407f-8f17-10bb296a2961}, !- Surface Rendering Name + {523bab10-8364-43ff-b71b-dcd4f8195dbb}, !- Layer 1 + {817ab445-5772-4092-9509-242c81e82d80}; !- Layer 2 + +OS:StandardsInformation:Construction, + {01dc48e0-c802-42f1-b4e5-24e7a089eef4}, !- Handle + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Construction Name + ExteriorFloor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {523bab10-8364-43ff-b71b-dcd4f8195dbb}, !- Handle + MAT-CC05 4 HW CONCRETE, !- Name + Rough, !- Roughness + 0.1016, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {817ab445-5772-4092-9509-242c81e82d80}, !- Handle + CP02 CARPET PAD, !- Name + Smooth, !- Roughness + 0.1, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:Construction, + {c1ab8b34-f42e-4b79-9fbf-966591f9d0f0}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1, !- Name + {cfaec352-fda3-4c13-a21a-6910ed43345f}, !- Surface Rendering Name + {c773b4b4-2d03-4ec0-9c1b-92eb3bebecb9}, !- Layer 1 + {9f7bc973-4cb1-4404-bdf2-e45797184361}, !- Layer 2 + {893cc4d2-1e91-45cc-93c8-a3137fbb807c}, !- Layer 3 + {2e551d36-44f5-4926-8fb1-89c4acc21871}; !- Layer 4 + +OS:StandardsInformation:Construction, + {b9599fd2-290e-48c1-a9be-8936ab6c1108}, !- Handle + {c1ab8b34-f42e-4b79-9fbf-966591f9d0f0}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {c773b4b4-2d03-4ec0-9c1b-92eb3bebecb9}, !- Handle + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.92, !- Solar Absorptance + 0.92; !- Visible Absorptance + +OS:Material, + {9f7bc973-4cb1-4404-bdf2-e45797184361}, !- Handle + 8IN Concrete HW, !- Name + MediumRough, !- Roughness + 0.2033, !- Thickness {m} + 1.72959999999999, !- Conductivity {W/m-K} + 2242.99999999999, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.65, !- Solar Absorptance + 0.65; !- Visible Absorptance + +OS:Material, + {893cc4d2-1e91-45cc-93c8-a3137fbb807c}, !- Handle + Wall Insulation [31], !- Name + MediumRough, !- Roughness + 0.0337000000000001, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Material, + {2e551d36-44f5-4926-8fb1-89c4acc21871}, !- Handle + 1/2IN Gypsum, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 784.9, !- Density {kg/m3} + 830.000000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.92, !- Solar Absorptance + 0.92; !- Visible Absorptance + +OS:Construction, + {77321178-c48d-4f24-a1da-29db558f7f64}, !- Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1, !- Name + {79f27325-6307-4982-bc89-25befbafefcb}, !- Surface Rendering Name + {8c100f6e-0f22-4b73-aa04-a314b4a95386}, !- Layer 1 + {080f2b93-f5e3-4cdd-bad0-b0656e5215ad}, !- Layer 2 + {18037c88-0e2c-45cb-8ef4-fe77e5930ec0}; !- Layer 3 + +OS:StandardsInformation:Construction, + {125e5601-03f1-4073-ab8c-425a2ef76c5e}, !- Handle + {77321178-c48d-4f24-a1da-29db558f7f64}, !- Construction Name + ExteriorRoof, !- Intended Surface Type + IEAD; !- Standards Construction Type + +OS:Material, + {8c100f6e-0f22-4b73-aa04-a314b4a95386}, !- Handle + Roof Membrane, !- Name + VeryRough, !- Roughness + 0.0095, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 1121.29, !- Density {kg/m3} + 1460, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {080f2b93-f5e3-4cdd-bad0-b0656e5215ad}, !- Handle + Roof Insulation [18], !- Name + MediumRough, !- Roughness + 0.1693, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {18037c88-0e2c-45cb-8ef4-fe77e5930ec0}, !- Handle + Metal Decking, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness {m} + 45.006, !- Conductivity {W/m-K} + 7680, !- Density {kg/m3} + 418.4, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.3; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {da6e1c6c-a0ba-4137-8de2-36bca37b4d8c}, !- Handle + Default Surface Constructions 2, !- Name + {6d472f21-47a1-4aa2-a8f8-3003161ab4c4}, !- Floor Construction Name + {c4ee431b-7008-4f6f-9c02-fd76676328a5}, !- Wall Construction Name + {b59e63fb-30df-4d9f-b5f5-0c38a268b158}; !- Roof Ceiling Construction Name + +OS:Construction, + {6d472f21-47a1-4aa2-a8f8-3003161ab4c4}, !- Handle + Interior Floor, !- Name + {aa1ecb8a-3b85-4d6c-9439-f4fd58e38e8c}, !- Surface Rendering Name + {04c16f98-8695-4273-a210-15d50daee2b7}, !- Layer 1 + {55cba50d-1cdf-4358-9ca8-3933c7dc3f28}, !- Layer 2 + {cad6069c-50e0-4445-a17e-efd50c5b2655}; !- Layer 3 + +OS:StandardsInformation:Construction, + {cb3368bc-1081-4640-9f9c-a868dc96d082}, !- Handle + {6d472f21-47a1-4aa2-a8f8-3003161ab4c4}, !- Construction Name + InteriorFloor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {04c16f98-8695-4273-a210-15d50daee2b7}, !- Handle + F16 Acoustic tile, !- Name + MediumSmooth, !- Roughness + 0.0191, !- Thickness {m} + 0.06, !- Conductivity {W/m-K} + 368, !- Density {kg/m3} + 590.000000000002, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:AirGap, + {55cba50d-1cdf-4358-9ca8-3933c7dc3f28}, !- Handle + F05 Ceiling air space resistance, !- Name + 0.18; !- Thermal Resistance {m2-K/W} + +OS:Material, + {cad6069c-50e0-4445-a17e-efd50c5b2655}, !- Handle + M11 100mm lightweight concrete, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 0.53, !- Conductivity {W/m-K} + 1280, !- Density {kg/m3} + 840.000000000002, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {c4ee431b-7008-4f6f-9c02-fd76676328a5}, !- Handle + Interior Wall, !- Name + {16ca900a-839a-4aaf-9674-677d89bbdd9d}, !- Surface Rendering Name + {91305a91-e336-41ab-8f58-0728060166c7}, !- Layer 1 + {e1837eb1-f159-439f-8f2a-51bdaa330cbb}, !- Layer 2 + {91305a91-e336-41ab-8f58-0728060166c7}; !- Layer 3 + +OS:StandardsInformation:Construction, + {a183fdc2-10e1-4a06-9cbf-1ecadf975ac5}, !- Handle + {c4ee431b-7008-4f6f-9c02-fd76676328a5}, !- Construction Name + InteriorWall, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {91305a91-e336-41ab-8f58-0728060166c7}, !- Handle + G01a 19mm gypsum board, !- Name + MediumSmooth, !- Roughness + 0.019, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:AirGap, + {e1837eb1-f159-439f-8f2a-51bdaa330cbb}, !- Handle + F04 Wall air space resistance, !- Name + 0.15; !- Thermal Resistance {m2-K/W} + +OS:Construction, + {b59e63fb-30df-4d9f-b5f5-0c38a268b158}, !- Handle + Interior Ceiling, !- Name + {4d0fc315-31d4-44ea-8480-8ab8b664d2cc}, !- Surface Rendering Name + {cad6069c-50e0-4445-a17e-efd50c5b2655}, !- Layer 1 + {55cba50d-1cdf-4358-9ca8-3933c7dc3f28}, !- Layer 2 + {04c16f98-8695-4273-a210-15d50daee2b7}; !- Layer 3 + +OS:StandardsInformation:Construction, + {cffc2a89-8670-447f-94df-c14ae3c43945}, !- Handle + {b59e63fb-30df-4d9f-b5f5-0c38a268b158}, !- Construction Name + InteriorCeiling, !- Intended Surface Type + ; !- Standards Construction Type + +OS:DefaultSurfaceConstructions, + {53d12c2c-42f0-4f35-b064-feae124f5db4}, !- Handle + Default Surface Constructions 3, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Wall Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {b3b3f4cf-101d-4a90-a5fb-5edd8fa60a5b}, !- Handle + Default Sub Surface Constructions 1, !- Name + {578dbd18-33b7-4023-9583-0e94ae2074dc}, !- Fixed Window Construction Name + {578dbd18-33b7-4023-9583-0e94ae2074dc}, !- Operable Window Construction Name + {30291c04-9a15-47d2-a6bd-310b3cbdd809}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Tubular Daylight Dome Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {578dbd18-33b7-4023-9583-0e94ae2074dc}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 1, !- Name + {e7c1575f-c124-419f-a773-2b73a5ba2902}, !- Surface Rendering Name + {59873ec8-f973-493f-b3f9-f6d65404d66d}; !- Layer 1 + +OS:StandardsInformation:Construction, + {f67a0246-6a29-4cd8-80c0-7e51a3a53725}, !- Handle + {578dbd18-33b7-4023-9583-0e94ae2074dc}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {59873ec8-f973-493f-b3f9-f6d65404d66d}, !- Handle + Theoretical Glass [167], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.2374, !- Solar Transmittance at Normal Incidence + 0.7126, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.2512, !- Visible Transmittance at Normal Incidence + 0.6988, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.985, !- Front Side Infrared Hemispherical Emissivity + 0.985, !- Back Side Infrared Hemispherical Emissivity + 2.1073, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + Yes; !- Solar Diffusing + +OS:Construction, + {30291c04-9a15-47d2-a6bd-310b3cbdd809}, !- Handle + Exterior Door, !- Name + {43fe155b-8355-446c-9a42-f5495ac9ba9e}, !- Surface Rendering Name + {0cab1586-509b-43bc-8648-96545e6a7a20}, !- Layer 1 + {28752eca-e107-477c-8984-9a3943c061db}; !- Layer 2 + +OS:StandardsInformation:Construction, + {46725f49-aa62-4c1b-b4ac-1ecb9c5c4395}, !- Handle + {30291c04-9a15-47d2-a6bd-310b3cbdd809}, !- Construction Name + ExteriorDoor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {0cab1586-509b-43bc-8648-96545e6a7a20}, !- Handle + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness {m} + 45.2800000000001, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 500, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {28752eca-e107-477c-8984-9a3943c061db}, !- Handle + I01 25mm insulation board, !- Name + MediumRough, !- Roughness + 0.0254, !- Thickness {m} + 0.03, !- Conductivity {W/m-K} + 43, !- Density {kg/m3} + 1210, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Handle + Interior Window, !- Name + {98fa500f-6841-47c2-9438-7a9b2933294c}, !- Surface Rendering Name + {aaf2174c-a4af-4b20-91a4-441520b152d6}; !- Layer 1 + +OS:StandardsInformation:Construction, + {1e23ee98-9650-4ca3-9979-69174d3ee58d}, !- Handle + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Construction Name + InteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {aaf2174c-a4af-4b20-91a4-441520b152d6}, !- Handle + Clear 3mm, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.837, !- Solar Transmittance at Normal Incidence + 0.075, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.898, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + Yes; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {6a77a8e3-c6d6-4e4c-9893-ebc4a8632c60}, !- Handle + Default Sub Surface Constructions 2, !- Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Fixed Window Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Operable Window Construction Name + {9415fd35-ea6a-49f7-a9c4-e376f9d41daa}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {9415fd35-ea6a-49f7-a9c4-e376f9d41daa}, !- Handle + Interior Door, !- Name + {4997b42b-e37c-47b6-a69c-1c54ed1a45fa}, !- Surface Rendering Name + {8737c9ae-954c-4e1a-97e2-fac431a3253f}; !- Layer 1 + +OS:StandardsInformation:Construction, + {66d806ab-cd5c-4850-b55c-9eff91c21fe2}, !- Handle + {9415fd35-ea6a-49f7-a9c4-e376f9d41daa}, !- Construction Name + InteriorDoor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Material, + {8737c9ae-954c-4e1a-97e2-fac431a3253f}, !- Handle + G05 25mm wood, !- Name + MediumSmooth, !- Roughness + 0.0254, !- Thickness {m} + 0.15, !- Conductivity {W/m-K} + 608, !- Density {kg/m3} + 1630, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {5c827314-7a18-44b4-826d-01cd1dd48194}, !- Handle + Interior Partition, !- Name + {630c22a7-a59f-4c15-b235-84eefafc8187}, !- Surface Rendering Name + {8737c9ae-954c-4e1a-97e2-fac431a3253f}; !- Layer 1 + +OS:StandardsInformation:Construction, + {ede9aaa6-cd09-458d-b3c7-f20c2413318c}, !- Handle + {5c827314-7a18-44b4-826d-01cd1dd48194}, !- Construction Name + InteriorPartition, !- Intended Surface Type + ; !- Standards Construction Type + +OS:DefaultConstructionSet, + {ac967427-e467-455b-8b90-4681de67984e}, !- Handle + 189.1-2009 - CZ2 - Office, !- Name + {0d570249-53b3-44d2-be77-4b6ba56bf36a}, !- Default Exterior Surface Constructions Name + {ba3b3022-70ce-41eb-8619-a2ad1dfd8623}, !- Default Interior Surface Constructions Name + {112922ab-77fc-46c5-a1ef-d2afb662d4cd}, !- Default Ground Contact Surface Constructions Name + {8a932290-9a71-44a8-8894-3f29e461b31e}, !- Default Exterior SubSurface Constructions Name + {0e68b392-6c30-49b1-97dd-175c6e9c89ba}, !- Default Interior SubSurface Constructions Name + {5c827314-7a18-44b4-826d-01cd1dd48194}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {0d570249-53b3-44d2-be77-4b6ba56bf36a}, !- Handle + Default Surface Constructions 4, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {9e6ff8a7-85d4-4ee9-ad9d-14dcfdce0e74}, !- Wall Construction Name + {a1a7a88d-4ed7-4daf-af94-eb7eaeffb3db}; !- Roof Ceiling Construction Name + +OS:Construction, + {9e6ff8a7-85d4-4ee9-ad9d-14dcfdce0e74}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2, !- Name + {07480670-5e79-45b9-b9f1-450b459b04b3}, !- Surface Rendering Name + {c773b4b4-2d03-4ec0-9c1b-92eb3bebecb9}, !- Layer 1 + {9f7bc973-4cb1-4404-bdf2-e45797184361}, !- Layer 2 + {96148114-810b-4ae6-8316-294a83f630b6}, !- Layer 3 + {2e551d36-44f5-4926-8fb1-89c4acc21871}; !- Layer 4 + +OS:StandardsInformation:Construction, + {fe2ce8a4-4b1c-4b72-8401-4c7743a57e02}, !- Handle + {9e6ff8a7-85d4-4ee9-ad9d-14dcfdce0e74}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {96148114-810b-4ae6-8316-294a83f630b6}, !- Handle + Wall Insulation [35], !- Name + MediumRough, !- Roughness + 0.0452, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Construction, + {a1a7a88d-4ed7-4daf-af94-eb7eaeffb3db}, !- Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5, !- Name + {118472e8-64a6-4f32-903d-529407b610dc}, !- Surface Rendering Name + {8c100f6e-0f22-4b73-aa04-a314b4a95386}, !- Layer 1 + {d8a27782-0734-4db0-a71c-ee511588824a}, !- Layer 2 + {18037c88-0e2c-45cb-8ef4-fe77e5930ec0}; !- Layer 3 + +OS:StandardsInformation:Construction, + {589a88d1-8955-4203-83ae-20cb19e6aa39}, !- Handle + {a1a7a88d-4ed7-4daf-af94-eb7eaeffb3db}, !- Construction Name + ExteriorRoof, !- Intended Surface Type + IEAD; !- Standards Construction Type + +OS:Material, + {d8a27782-0734-4db0-a71c-ee511588824a}, !- Handle + Roof Insulation [21], !- Name + MediumRough, !- Roughness + 0.2105, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {ba3b3022-70ce-41eb-8619-a2ad1dfd8623}, !- Handle + Default Surface Constructions 5, !- Name + {6d472f21-47a1-4aa2-a8f8-3003161ab4c4}, !- Floor Construction Name + {c4ee431b-7008-4f6f-9c02-fd76676328a5}, !- Wall Construction Name + {b59e63fb-30df-4d9f-b5f5-0c38a268b158}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {112922ab-77fc-46c5-a1ef-d2afb662d4cd}, !- Handle + Default Surface Constructions 6, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Wall Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {8a932290-9a71-44a8-8894-3f29e461b31e}, !- Handle + Default Sub Surface Constructions 3, !- Name + {5782d77f-4033-4ded-b8db-690b6f34e43e}, !- Fixed Window Construction Name + {5782d77f-4033-4ded-b8db-690b6f34e43e}, !- Operable Window Construction Name + {30291c04-9a15-47d2-a6bd-310b3cbdd809}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Tubular Daylight Dome Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {5782d77f-4033-4ded-b8db-690b6f34e43e}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 2, !- Name + {83879ac4-0aa4-4f03-aa8e-2c9b24e488cf}, !- Surface Rendering Name + {c19ba1d7-584c-4965-890b-b7642c602d31}; !- Layer 1 + +OS:StandardsInformation:Construction, + {3b76a329-4d56-4613-986e-92e3bd14a47c}, !- Handle + {5782d77f-4033-4ded-b8db-690b6f34e43e}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {c19ba1d7-584c-4965-890b-b7642c602d31}, !- Handle + Theoretical Glass [197], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.2349, !- Solar Transmittance at Normal Incidence + 0.7151, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.2512, !- Visible Transmittance at Normal Incidence + 0.6988, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0415, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + Yes; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {0e68b392-6c30-49b1-97dd-175c6e9c89ba}, !- Handle + Default Sub Surface Constructions 4, !- Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Fixed Window Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Operable Window Construction Name + {9415fd35-ea6a-49f7-a9c4-e376f9d41daa}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultConstructionSet, + {b07be924-0c85-428f-b443-77a080641c35}, !- Handle + 189.1-2009 - CZ3 - Office, !- Name + {9f6597ad-c770-4eee-9366-7615deaf750c}, !- Default Exterior Surface Constructions Name + {01f4b168-5598-4476-90bd-dfaf022ca040}, !- Default Interior Surface Constructions Name + {05e515e5-13a3-4bb5-b1b9-55bbf625e064}, !- Default Ground Contact Surface Constructions Name + {48b41f83-0a5b-4161-981a-3ee1b1792dd2}, !- Default Exterior SubSurface Constructions Name + {aa7b96f0-09f0-4279-b0d2-6d6a1a258494}, !- Default Interior SubSurface Constructions Name + {5c827314-7a18-44b4-826d-01cd1dd48194}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {9f6597ad-c770-4eee-9366-7615deaf750c}, !- Handle + Default Surface Constructions 7, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {8b985714-e98f-4f6d-97b4-459d31cf6fd4}, !- Wall Construction Name + {a1a7a88d-4ed7-4daf-af94-eb7eaeffb3db}; !- Roof Ceiling Construction Name + +OS:Construction, + {8b985714-e98f-4f6d-97b4-459d31cf6fd4}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3, !- Name + {7d4720b3-455b-41bc-bc49-b2243da9d410}, !- Surface Rendering Name + {c773b4b4-2d03-4ec0-9c1b-92eb3bebecb9}, !- Layer 1 + {9f7bc973-4cb1-4404-bdf2-e45797184361}, !- Layer 2 + {e1c93642-3d33-4fa2-a6c3-3294cd2726c1}, !- Layer 3 + {2e551d36-44f5-4926-8fb1-89c4acc21871}; !- Layer 4 + +OS:StandardsInformation:Construction, + {42719118-a860-46ab-8800-eb016674cafa}, !- Handle + {8b985714-e98f-4f6d-97b4-459d31cf6fd4}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {e1c93642-3d33-4fa2-a6c3-3294cd2726c1}, !- Handle + Wall Insulation [36], !- Name + MediumRough, !- Roughness + 0.0565999999999999, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {01f4b168-5598-4476-90bd-dfaf022ca040}, !- Handle + Default Surface Constructions 8, !- Name + {6d472f21-47a1-4aa2-a8f8-3003161ab4c4}, !- Floor Construction Name + {c4ee431b-7008-4f6f-9c02-fd76676328a5}, !- Wall Construction Name + {b59e63fb-30df-4d9f-b5f5-0c38a268b158}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {05e515e5-13a3-4bb5-b1b9-55bbf625e064}, !- Handle + Default Surface Constructions 9, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Wall Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {48b41f83-0a5b-4161-981a-3ee1b1792dd2}, !- Handle + Default Sub Surface Constructions 5, !- Name + {1fdb75a0-97b4-477d-b208-e7e3b784d56d}, !- Fixed Window Construction Name + {1fdb75a0-97b4-477d-b208-e7e3b784d56d}, !- Operable Window Construction Name + {30291c04-9a15-47d2-a6bd-310b3cbdd809}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Tubular Daylight Dome Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {1fdb75a0-97b4-477d-b208-e7e3b784d56d}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 3, !- Name + {f3cd3ba2-b7c8-4932-82bd-2305d83d4fc1}, !- Surface Rendering Name + {ac44d20c-d08e-460c-b849-66511a53aea5}; !- Layer 1 + +OS:StandardsInformation:Construction, + {3f19bd2b-df14-4bea-8f48-5aec496844c9}, !- Handle + {1fdb75a0-97b4-477d-b208-e7e3b784d56d}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {ac44d20c-d08e-460c-b849-66511a53aea5}, !- Handle + Theoretical Glass [202], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.2325, !- Solar Transmittance at Normal Incidence + 0.7175, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.3192, !- Visible Transmittance at Normal Incidence + 0.6308, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0192, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + Yes; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {aa7b96f0-09f0-4279-b0d2-6d6a1a258494}, !- Handle + Default Sub Surface Constructions 6, !- Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Fixed Window Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Operable Window Construction Name + {9415fd35-ea6a-49f7-a9c4-e376f9d41daa}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultConstructionSet, + {4fd71662-2a04-4cb9-862f-e8bac55dddcd}, !- Handle + 189.1-2009 - CZ4 - Office, !- Name + {e488e2ad-fc39-4e3b-82b9-0cfb991ae8f9}, !- Default Exterior Surface Constructions Name + {04dad2be-4931-4475-956f-e698459e1c3e}, !- Default Interior Surface Constructions Name + {18d18c6d-32ea-445a-8da0-34e7e6e3e65f}, !- Default Ground Contact Surface Constructions Name + {c4ac4c13-8309-4a8d-9949-33e5c60b9b98}, !- Default Exterior SubSurface Constructions Name + {503323ab-a0a4-464c-8a51-488900df323b}, !- Default Interior SubSurface Constructions Name + {5c827314-7a18-44b4-826d-01cd1dd48194}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {e488e2ad-fc39-4e3b-82b9-0cfb991ae8f9}, !- Handle + Default Surface Constructions 10, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {a485274f-ad05-43d2-97a8-f87f5023f59f}, !- Wall Construction Name + {a1a7a88d-4ed7-4daf-af94-eb7eaeffb3db}; !- Roof Ceiling Construction Name + +OS:Construction, + {a485274f-ad05-43d2-97a8-f87f5023f59f}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4, !- Name + {e8ee8b25-e7e2-487d-b0e0-b0bc04064dbe}, !- Surface Rendering Name + {c773b4b4-2d03-4ec0-9c1b-92eb3bebecb9}, !- Layer 1 + {9f7bc973-4cb1-4404-bdf2-e45797184361}, !- Layer 2 + {030c0ffb-35d5-4880-a64f-327f1e3542cb}, !- Layer 3 + {2e551d36-44f5-4926-8fb1-89c4acc21871}; !- Layer 4 + +OS:StandardsInformation:Construction, + {7a778758-220e-45bc-82f8-9441720dcba9}, !- Handle + {a485274f-ad05-43d2-97a8-f87f5023f59f}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {030c0ffb-35d5-4880-a64f-327f1e3542cb}, !- Handle + Wall Insulation [37], !- Name + MediumRough, !- Roughness + 0.0680999999999999, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {04dad2be-4931-4475-956f-e698459e1c3e}, !- Handle + Default Surface Constructions 11, !- Name + {6d472f21-47a1-4aa2-a8f8-3003161ab4c4}, !- Floor Construction Name + {c4ee431b-7008-4f6f-9c02-fd76676328a5}, !- Wall Construction Name + {b59e63fb-30df-4d9f-b5f5-0c38a268b158}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {18d18c6d-32ea-445a-8da0-34e7e6e3e65f}, !- Handle + Default Surface Constructions 12, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Wall Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {c4ac4c13-8309-4a8d-9949-33e5c60b9b98}, !- Handle + Default Sub Surface Constructions 7, !- Name + {b900fc8c-2e1c-4d71-a37b-21ba83fa88ec}, !- Fixed Window Construction Name + {b900fc8c-2e1c-4d71-a37b-21ba83fa88ec}, !- Operable Window Construction Name + {30291c04-9a15-47d2-a6bd-310b3cbdd809}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Tubular Daylight Dome Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {b900fc8c-2e1c-4d71-a37b-21ba83fa88ec}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5, !- Name + {6c9e1ce4-5eb9-467c-8eea-cd40a124d86f}, !- Surface Rendering Name + {729a27f4-ed55-42da-ae00-a1423dec1fe0}; !- Layer 1 + +OS:StandardsInformation:Construction, + {e9a2afdc-dc47-47ce-b6b5-f892e6a7a537}, !- Handle + {b900fc8c-2e1c-4d71-a37b-21ba83fa88ec}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {729a27f4-ed55-42da-ae00-a1423dec1fe0}, !- Handle + Theoretical Glass [207], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.3311, !- Solar Transmittance at Normal Incidence + 0.6189, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.44, !- Visible Transmittance at Normal Incidence + 0.51, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0133, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + Yes; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {503323ab-a0a4-464c-8a51-488900df323b}, !- Handle + Default Sub Surface Constructions 8, !- Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Fixed Window Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Operable Window Construction Name + {9415fd35-ea6a-49f7-a9c4-e376f9d41daa}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultConstructionSet, + {165d4f31-9c07-48d7-91d3-a5e774c5bdf3}, !- Handle + 189.1-2009 - CZ5 - Office, !- Name + {531e011b-8196-4255-ac4d-13bee1a9dd60}, !- Default Exterior Surface Constructions Name + {ddb8f241-2b06-4d63-8b83-161b26758968}, !- Default Interior Surface Constructions Name + {4f9f6cc5-7176-453e-a526-7c3bb51c1159}, !- Default Ground Contact Surface Constructions Name + {698f5876-9f15-4cf0-b0cd-415b221aec10}, !- Default Exterior SubSurface Constructions Name + {12f35d55-9fbd-4620-9fdd-bf7bd48b5daf}, !- Default Interior SubSurface Constructions Name + {5c827314-7a18-44b4-826d-01cd1dd48194}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {531e011b-8196-4255-ac4d-13bee1a9dd60}, !- Handle + Default Surface Constructions 13, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {c989f811-a67d-48eb-8b1a-5dbb327489cc}, !- Wall Construction Name + {a1a7a88d-4ed7-4daf-af94-eb7eaeffb3db}; !- Roof Ceiling Construction Name + +OS:Construction, + {c989f811-a67d-48eb-8b1a-5dbb327489cc}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5, !- Name + {61c4f89f-a448-4cfe-b7c3-234f8c4cf4e2}, !- Surface Rendering Name + {c773b4b4-2d03-4ec0-9c1b-92eb3bebecb9}, !- Layer 1 + {9f7bc973-4cb1-4404-bdf2-e45797184361}, !- Layer 2 + {e3b0a2fb-4e34-4708-b361-184703f7ffb5}, !- Layer 3 + {2e551d36-44f5-4926-8fb1-89c4acc21871}; !- Layer 4 + +OS:StandardsInformation:Construction, + {89e22bba-8765-4ed4-823f-e7e11e43422d}, !- Handle + {c989f811-a67d-48eb-8b1a-5dbb327489cc}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {e3b0a2fb-4e34-4708-b361-184703f7ffb5}, !- Handle + Wall Insulation [40], !- Name + MediumRough, !- Roughness + 0.0793999999999999, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {ddb8f241-2b06-4d63-8b83-161b26758968}, !- Handle + Default Surface Constructions 14, !- Name + {6d472f21-47a1-4aa2-a8f8-3003161ab4c4}, !- Floor Construction Name + {c4ee431b-7008-4f6f-9c02-fd76676328a5}, !- Wall Construction Name + {b59e63fb-30df-4d9f-b5f5-0c38a268b158}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {4f9f6cc5-7176-453e-a526-7c3bb51c1159}, !- Handle + Default Surface Constructions 15, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Wall Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {698f5876-9f15-4cf0-b0cd-415b221aec10}, !- Handle + Default Sub Surface Constructions 9, !- Name + {b900fc8c-2e1c-4d71-a37b-21ba83fa88ec}, !- Fixed Window Construction Name + {b900fc8c-2e1c-4d71-a37b-21ba83fa88ec}, !- Operable Window Construction Name + {30291c04-9a15-47d2-a6bd-310b3cbdd809}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Tubular Daylight Dome Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultSubSurfaceConstructions, + {12f35d55-9fbd-4620-9fdd-bf7bd48b5daf}, !- Handle + Default Sub Surface Constructions 10, !- Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Fixed Window Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Operable Window Construction Name + {9415fd35-ea6a-49f7-a9c4-e376f9d41daa}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultConstructionSet, + {d835d0ba-07c8-4cd5-90c2-008323bc3282}, !- Handle + 189.1-2009 - CZ6 - Office, !- Name + {a79709a1-1f18-4736-a511-7dce1e8326f9}, !- Default Exterior Surface Constructions Name + {47b419b9-5502-4649-bca9-1e1620cf6bca}, !- Default Interior Surface Constructions Name + {9a179cf7-43ff-4b05-8f57-524a2f980b23}, !- Default Ground Contact Surface Constructions Name + {fce1d5b9-81a8-4e8b-95e5-00028b2eccee}, !- Default Exterior SubSurface Constructions Name + {83b1c2ad-03a4-4c66-bb02-7cd152a135b0}, !- Default Interior SubSurface Constructions Name + {5c827314-7a18-44b4-826d-01cd1dd48194}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {a79709a1-1f18-4736-a511-7dce1e8326f9}, !- Handle + Default Surface Constructions 16, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {042632df-9d76-44aa-b8fc-08efc1ae0d64}, !- Wall Construction Name + {1e2465dd-e0f8-47a0-a3a3-caf6f5fe2813}; !- Roof Ceiling Construction Name + +OS:Construction, + {042632df-9d76-44aa-b8fc-08efc1ae0d64}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6, !- Name + {c6160f4a-2455-453b-9aeb-b4d7640e429c}, !- Surface Rendering Name + {c773b4b4-2d03-4ec0-9c1b-92eb3bebecb9}, !- Layer 1 + {9f7bc973-4cb1-4404-bdf2-e45797184361}, !- Layer 2 + {f8e45cc2-312b-4e98-a7e0-a00eee0cabdc}, !- Layer 3 + {2e551d36-44f5-4926-8fb1-89c4acc21871}; !- Layer 4 + +OS:StandardsInformation:Construction, + {ed502338-123f-4631-98ca-5bba18317c3b}, !- Handle + {042632df-9d76-44aa-b8fc-08efc1ae0d64}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {f8e45cc2-312b-4e98-a7e0-a00eee0cabdc}, !- Handle + Wall Insulation [42], !- Name + MediumRough, !- Roughness + 0.0913999999999999, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Construction, + {1e2465dd-e0f8-47a0-a3a3-caf6f5fe2813}, !- Handle + ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6, !- Name + {e5722df8-f2af-4c17-ab92-0b2e997a7ffe}, !- Surface Rendering Name + {c98e2f43-db67-4d50-8f99-e21ea9223bbc}, !- Layer 1 + {d6d7ab19-7b36-4783-86a3-ccf307d1465b}; !- Layer 2 + +OS:StandardsInformation:Construction, + {258ae309-7ff6-4c60-addd-710722657f32}, !- Handle + {1e2465dd-e0f8-47a0-a3a3-caf6f5fe2813}, !- Construction Name + ExteriorRoof, !- Intended Surface Type + Metal; !- Standards Construction Type + +OS:Material, + {c98e2f43-db67-4d50-8f99-e21ea9223bbc}, !- Handle + Metal Roofing, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness {m} + 45.006, !- Conductivity {W/m-K} + 7680, !- Density {kg/m3} + 418.4, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.3, !- Solar Absorptance + 0.3; !- Visible Absorptance + +OS:Material, + {d6d7ab19-7b36-4783-86a3-ccf307d1465b}, !- Handle + Roof Insulation [25], !- Name + MediumRough, !- Roughness + 0.263, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {47b419b9-5502-4649-bca9-1e1620cf6bca}, !- Handle + Default Surface Constructions 17, !- Name + {6d472f21-47a1-4aa2-a8f8-3003161ab4c4}, !- Floor Construction Name + {c4ee431b-7008-4f6f-9c02-fd76676328a5}, !- Wall Construction Name + {b59e63fb-30df-4d9f-b5f5-0c38a268b158}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {9a179cf7-43ff-4b05-8f57-524a2f980b23}, !- Handle + Default Surface Constructions 18, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Wall Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {fce1d5b9-81a8-4e8b-95e5-00028b2eccee}, !- Handle + Default Sub Surface Constructions 11, !- Name + {bc68d1c8-8445-4c12-8d67-777fb180c2db}, !- Fixed Window Construction Name + {bc68d1c8-8445-4c12-8d67-777fb180c2db}, !- Operable Window Construction Name + {30291c04-9a15-47d2-a6bd-310b3cbdd809}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Tubular Daylight Dome Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {bc68d1c8-8445-4c12-8d67-777fb180c2db}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 6, !- Name + {4572727b-058a-4c6c-a8de-d57831040a86}, !- Surface Rendering Name + {96ccf4a1-4c7b-4799-ab7a-1d083dfb87f7}; !- Layer 1 + +OS:StandardsInformation:Construction, + {a81106fd-5414-4fa1-838c-a2160ae7f561}, !- Handle + {bc68d1c8-8445-4c12-8d67-777fb180c2db}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {96ccf4a1-4c7b-4799-ab7a-1d083dfb87f7}, !- Handle + Theoretical Glass [216], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.3801, !- Solar Transmittance at Normal Incidence + 0.5699, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.5079, !- Visible Transmittance at Normal Incidence + 0.4421, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0133, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + Yes; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {83b1c2ad-03a4-4c66-bb02-7cd152a135b0}, !- Handle + Default Sub Surface Constructions 12, !- Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Fixed Window Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Operable Window Construction Name + {9415fd35-ea6a-49f7-a9c4-e376f9d41daa}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:DefaultConstructionSet, + {bdb47a2d-393b-4b72-8cb9-c12af9560dcf}, !- Handle + 189.1-2009 - CZ7-8 - Office, !- Name + {ca09d247-6a02-4c4c-90e1-79ce22e2bc83}, !- Default Exterior Surface Constructions Name + {5b18010d-35fb-49bf-9248-1c0b3747475c}, !- Default Interior Surface Constructions Name + {a3cf757a-20b5-49e6-a9c0-269b5d327646}, !- Default Ground Contact Surface Constructions Name + {fb67b9fb-3b71-4ea9-9d0b-a91fd41c5000}, !- Default Exterior SubSurface Constructions Name + {c1c4cbaa-836f-4484-a621-c4e0496261a1}, !- Default Interior SubSurface Constructions Name + {5c827314-7a18-44b4-826d-01cd1dd48194}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {ca09d247-6a02-4c4c-90e1-79ce22e2bc83}, !- Handle + Default Surface Constructions 19, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {3ed4bacc-78a4-4a75-b21f-f4dbbcf785d0}, !- Wall Construction Name + {746dec07-d4bd-4ff8-83c0-3ca8289291bc}; !- Roof Ceiling Construction Name + +OS:Construction, + {3ed4bacc-78a4-4a75-b21f-f4dbbcf785d0}, !- Handle + ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8, !- Name + {0fa1cba1-0e4c-4e92-841e-db58de719a5e}, !- Surface Rendering Name + {c773b4b4-2d03-4ec0-9c1b-92eb3bebecb9}, !- Layer 1 + {9f7bc973-4cb1-4404-bdf2-e45797184361}, !- Layer 2 + {ee012fc6-1c7f-4569-9612-71eed70b09d7}, !- Layer 3 + {2e551d36-44f5-4926-8fb1-89c4acc21871}; !- Layer 4 + +OS:StandardsInformation:Construction, + {a5ce894b-66f7-442d-ab8e-38d4db7bb4a7}, !- Handle + {3ed4bacc-78a4-4a75-b21f-f4dbbcf785d0}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Material, + {ee012fc6-1c7f-4569-9612-71eed70b09d7}, !- Handle + Wall Insulation [44], !- Name + MediumRough, !- Roughness + 0.1104, !- Thickness {m} + 0.0432, !- Conductivity {W/m-K} + 91, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:Construction, + {746dec07-d4bd-4ff8-83c0-3ca8289291bc}, !- Handle + ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8, !- Name + {0a5a23f2-dc7d-4981-b7e6-ba28aabde643}, !- Surface Rendering Name + {8c100f6e-0f22-4b73-aa04-a314b4a95386}, !- Layer 1 + {e6c3956d-31ac-4148-9109-1865ca3eeba6}, !- Layer 2 + {18037c88-0e2c-45cb-8ef4-fe77e5930ec0}; !- Layer 3 + +OS:StandardsInformation:Construction, + {6fe7addf-e1b1-4230-a3d0-5a214aea08f5}, !- Handle + {746dec07-d4bd-4ff8-83c0-3ca8289291bc}, !- Construction Name + ExteriorRoof, !- Intended Surface Type + IEAD; !- Standards Construction Type + +OS:Material, + {e6c3956d-31ac-4148-9109-1865ca3eeba6}, !- Handle + Roof Insulation [26], !- Name + MediumRough, !- Roughness + 0.2941, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:DefaultSurfaceConstructions, + {5b18010d-35fb-49bf-9248-1c0b3747475c}, !- Handle + Default Surface Constructions 20, !- Name + {6d472f21-47a1-4aa2-a8f8-3003161ab4c4}, !- Floor Construction Name + {c4ee431b-7008-4f6f-9c02-fd76676328a5}, !- Wall Construction Name + {b59e63fb-30df-4d9f-b5f5-0c38a268b158}; !- Roof Ceiling Construction Name + +OS:DefaultSurfaceConstructions, + {a3cf757a-20b5-49e6-a9c0-269b5d327646}, !- Handle + Default Surface Constructions 21, !- Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Floor Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}, !- Wall Construction Name + {9023a49b-bc5d-439f-841a-d943642ed9c1}; !- Roof Ceiling Construction Name + +OS:DefaultSubSurfaceConstructions, + {fb67b9fb-3b71-4ea9-9d0b-a91fd41c5000}, !- Handle + Default Sub Surface Constructions 13, !- Name + {e939a120-c137-40f3-a2c4-cd3c7d8a0f9c}, !- Fixed Window Construction Name + {e939a120-c137-40f3-a2c4-cd3c7d8a0f9c}, !- Operable Window Construction Name + {30291c04-9a15-47d2-a6bd-310b3cbdd809}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Tubular Daylight Dome Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {e939a120-c137-40f3-a2c4-cd3c7d8a0f9c}, !- Handle + ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8, !- Name + {54c861cc-19a8-46ae-a24c-5826aaef5a2b}, !- Surface Rendering Name + {839235fd-41ba-4118-a8aa-c667e0995cf5}; !- Layer 1 + +OS:StandardsInformation:Construction, + {6e5fcad0-5e1b-4c4d-afcd-13a37a60d467}, !- Handle + {e939a120-c137-40f3-a2c4-cd3c7d8a0f9c}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:WindowMaterial:Glazing, + {839235fd-41ba-4118-a8aa-c667e0995cf5}, !- Handle + Theoretical Glass [221], !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.4296, !- Solar Transmittance at Normal Incidence + 0.5204, !- Front Side Solar Reflectance at Normal Incidence + 0, !- Back Side Solar Reflectance at Normal Incidence + 0.4503, !- Visible Transmittance at Normal Incidence + 0.4997, !- Front Side Visible Reflectance at Normal Incidence + 0, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0089, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + Yes; !- Solar Diffusing + +OS:DefaultSubSurfaceConstructions, + {c1c4cbaa-836f-4484-a621-c4e0496261a1}, !- Handle + Default Sub Surface Constructions 14, !- Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Fixed Window Construction Name + {799a5a2e-6187-482b-b2bc-657503d74541}, !- Operable Window Construction Name + {9415fd35-ea6a-49f7-a9c4-e376f9d41daa}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:Facility, + {f751fdc1-9a8b-4c77-97de-f24bc7347004}; !- Handle + +OS:Rendering:Color, + {98fa500f-6841-47c2-9438-7a9b2933294c}, !- Handle + Rendering Color 33, !- Name + 255, !- Rendering Red Value + 250, !- Rendering Green Value + 205; !- Rendering Blue Value + +OS:Rendering:Color, + {4997b42b-e37c-47b6-a69c-1c54ed1a45fa}, !- Handle + Rendering Color 34, !- Name + 47, !- Rendering Red Value + 79, !- Rendering Green Value + 79; !- Rendering Blue Value + +OS:Rendering:Color, + {43fe155b-8355-446c-9a42-f5495ac9ba9e}, !- Handle + Rendering Color 35, !- Name + 245, !- Rendering Red Value + 255, !- Rendering Green Value + 250; !- Rendering Blue Value + +OS:Rendering:Color, + {630c22a7-a59f-4c15-b235-84eefafc8187}, !- Handle + Rendering Color 36, !- Name + 85, !- Rendering Red Value + 107, !- Rendering Green Value + 47; !- Rendering Blue Value + +OS:Rendering:Color, + {e7c1575f-c124-419f-a773-2b73a5ba2902}, !- Handle + Rendering Color 37, !- Name + 50, !- Rendering Red Value + 205, !- Rendering Green Value + 50; !- Rendering Blue Value + +OS:Rendering:Color, + {07480670-5e79-45b9-b9f1-450b459b04b3}, !- Handle + Rendering Color 38, !- Name + 0, !- Rendering Red Value + 100, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:Rendering:Color, + {4d0fc315-31d4-44ea-8480-8ab8b664d2cc}, !- Handle + Rendering Color 39, !- Name + 255, !- Rendering Red Value + 182, !- Rendering Green Value + 193; !- Rendering Blue Value + +OS:Rendering:Color, + {118472e8-64a6-4f32-903d-529407b610dc}, !- Handle + Rendering Color 40, !- Name + 178, !- Rendering Red Value + 34, !- Rendering Green Value + 34; !- Rendering Blue Value + +OS:Rendering:Color, + {16ca900a-839a-4aaf-9674-677d89bbdd9d}, !- Handle + Rendering Color 41, !- Name + 248, !- Rendering Red Value + 248, !- Rendering Green Value + 255; !- Rendering Blue Value + +OS:Rendering:Color, + {83879ac4-0aa4-4f03-aa8e-2c9b24e488cf}, !- Handle + Rendering Color 42, !- Name + 139, !- Rendering Red Value + 0, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:Rendering:Color, + {aa1ecb8a-3b85-4d6c-9439-f4fd58e38e8c}, !- Handle + Rendering Color 43, !- Name + 0, !- Rendering Red Value + 255, !- Rendering Green Value + 255; !- Rendering Blue Value + +OS:Rendering:Color, + {7d4720b3-455b-41bc-bc49-b2243da9d410}, !- Handle + Rendering Color 44, !- Name + 50, !- Rendering Red Value + 205, !- Rendering Green Value + 50; !- Rendering Blue Value + +OS:Rendering:Color, + {f3cd3ba2-b7c8-4932-82bd-2305d83d4fc1}, !- Handle + Rendering Color 45, !- Name + 210, !- Rendering Red Value + 180, !- Rendering Green Value + 140; !- Rendering Blue Value + +OS:Rendering:Color, + {e8ee8b25-e7e2-487d-b0e0-b0bc04064dbe}, !- Handle + Rendering Color 46, !- Name + 250, !- Rendering Red Value + 250, !- Rendering Green Value + 210; !- Rendering Blue Value + +OS:Rendering:Color, + {cfaec352-fda3-4c13-a21a-6910ed43345f}, !- Handle + Rendering Color 47, !- Name + 0, !- Rendering Red Value + 206, !- Rendering Green Value + 209; !- Rendering Blue Value + +OS:Rendering:Color, + {6c9e1ce4-5eb9-467c-8eea-cd40a124d86f}, !- Handle + Rendering Color 48, !- Name + 255, !- Rendering Red Value + 255, !- Rendering Green Value + 240; !- Rendering Blue Value + +OS:Rendering:Color, + {365a08b6-23e3-407f-8f17-10bb296a2961}, !- Handle + Rendering Color 49, !- Name + 221, !- Rendering Red Value + 160, !- Rendering Green Value + 221; !- Rendering Blue Value + +OS:Rendering:Color, + {61c4f89f-a448-4cfe-b7c3-234f8c4cf4e2}, !- Handle + Rendering Color 50, !- Name + 192, !- Rendering Red Value + 192, !- Rendering Green Value + 192; !- Rendering Blue Value + +OS:Rendering:Color, + {c6160f4a-2455-453b-9aeb-b4d7640e429c}, !- Handle + Rendering Color 51, !- Name + 245, !- Rendering Red Value + 245, !- Rendering Green Value + 245; !- Rendering Blue Value + +OS:Rendering:Color, + {e5722df8-f2af-4c17-ab92-0b2e997a7ffe}, !- Handle + Rendering Color 52, !- Name + 255, !- Rendering Red Value + 228, !- Rendering Green Value + 225; !- Rendering Blue Value + +OS:Rendering:Color, + {4572727b-058a-4c6c-a8de-d57831040a86}, !- Handle + Rendering Color 53, !- Name + 0, !- Rendering Red Value + 0, !- Rendering Green Value + 139; !- Rendering Blue Value + +OS:Rendering:Color, + {0fa1cba1-0e4c-4e92-841e-db58de719a5e}, !- Handle + Rendering Color 54, !- Name + 32, !- Rendering Red Value + 178, !- Rendering Green Value + 170; !- Rendering Blue Value + +OS:Rendering:Color, + {0a5a23f2-dc7d-4981-b7e6-ba28aabde643}, !- Handle + Rendering Color 55, !- Name + 219, !- Rendering Red Value + 112, !- Rendering Green Value + 147; !- Rendering Blue Value + +OS:Rendering:Color, + {54c861cc-19a8-46ae-a24c-5826aaef5a2b}, !- Handle + Rendering Color 56, !- Name + 165, !- Rendering Red Value + 42, !- Rendering Green Value + 42; !- Rendering Blue Value + +OS:Rendering:Color, + {79f27325-6307-4982-bc89-25befbafefcb}, !- Handle + Rendering Color 57, !- Name + 0, !- Rendering Red Value + 0, !- Rendering Green Value + 0; !- Rendering Blue Value + +OS:BuildingStory, + {28395cc6-7541-4691-b0e4-9c79d1246faf}, !- Handle + Building Story 1, !- Name + 0, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {68311771-3b89-4fd8-8371-06011327e33f}; !- Group Rendering Name + +OS:Space, + {8dd689e5-9a3d-4258-b2f3-1278d1b010d7}, !- Handle + Space 101, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 1.09542863880637, !- X Origin {m} + 0.98500998425603, !- Y Origin {m} + -1.44382283906452e-015, !- Z Origin {m} + {28395cc6-7541-4691-b0e4-9c79d1246faf}; !- Building Story Name + +OS:Surface, + {02998960-a66f-4e3f-80a7-af7159bf4b8a}, !- Handle + Surface 1, !- Name + Floor, !- Surface Type + , !- Construction Name + {8dd689e5-9a3d-4258-b2f3-1278d1b010d7}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9b11ce6e-91d5-4e9b-a0cd-4952222f9051}, !- Handle + Surface 2, !- Name + Wall, !- Surface Type + , !- Construction Name + {8dd689e5-9a3d-4258-b2f3-1278d1b010d7}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9bde1795-cdc8-4784-a68e-214ad9a8436c}, !- Handle + Surface 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {8dd689e5-9a3d-4258-b2f3-1278d1b010d7}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0324a9d5-6abe-44ab-9890-d7ea5134ebe2}, !- Handle + Surface 4, !- Name + Wall, !- Surface Type + , !- Construction Name + {8dd689e5-9a3d-4258-b2f3-1278d1b010d7}, !- Space Name + Surface, !- Outside Boundary Condition + {f81e8bc0-d5e2-4331-8237-4d795236f59b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {54a74888-a3b6-405f-a126-66401ec491ac}, !- Handle + Surface 5, !- Name + Wall, !- Surface Type + , !- Construction Name + {8dd689e5-9a3d-4258-b2f3-1278d1b010d7}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b7be12ef-6b26-4550-be1b-aa0ecebeba6a}, !- Handle + Surface 6, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {8dd689e5-9a3d-4258-b2f3-1278d1b010d7}, !- Space Name + Surface, !- Outside Boundary Condition + {6e85197c-c40e-4248-aefd-37e82dbe74a8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.241675, 2.22044604925031e-016, 3.048, !- X,Y,Z Vertex 1 {m} + 3.241675, 5.01015, 3.048, !- X,Y,Z Vertex 2 {m} + -4.44089209850063e-016, 5.01015, 3.048, !- X,Y,Z Vertex 3 {m} + -4.44089209850063e-016, 2.22044604925031e-016, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {224ad611-73b4-44c4-af7e-a0fb627a8900}, !- Handle + Space 102, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 5.44359113880637, !- X Origin {m} + 0.98500998425603, !- Y Origin {m} + -1.44382283906452e-015, !- Z Origin {m} + {28395cc6-7541-4691-b0e4-9c79d1246faf}, !- Building Story Name + , !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {a08f6ada-cd7b-4162-825a-22fe65b508b1}, !- Handle + Surface 7, !- Name + Floor, !- Surface Type + , !- Construction Name + {224ad611-73b4-44c4-af7e-a0fb627a8900}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f81e8bc0-d5e2-4331-8237-4d795236f59b}, !- Handle + Surface 8, !- Name + Wall, !- Surface Type + , !- Construction Name + {224ad611-73b4-44c4-af7e-a0fb627a8900}, !- Space Name + Surface, !- Outside Boundary Condition + {0324a9d5-6abe-44ab-9890-d7ea5134ebe2}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2c26d299-b3fc-44d6-9537-84ffb0f4af0b}, !- Handle + Surface 9, !- Name + Wall, !- Surface Type + , !- Construction Name + {224ad611-73b4-44c4-af7e-a0fb627a8900}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {efe7bf62-ab92-4936-a949-458049f410a5}, !- Handle + Surface 10, !- Name + Wall, !- Surface Type + , !- Construction Name + {224ad611-73b4-44c4-af7e-a0fb627a8900}, !- Space Name + Surface, !- Outside Boundary Condition + {0df6b845-4c03-4556-9a85-60a69c4c7ef9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {817e1ac5-129f-41ed-a2de-14aae7d6c439}, !- Handle + Surface 11, !- Name + Wall, !- Surface Type + , !- Construction Name + {224ad611-73b4-44c4-af7e-a0fb627a8900}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7f1279d2-45fc-4a16-9e8b-3b3a4c6e43a7}, !- Handle + Surface 12, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {224ad611-73b4-44c4-af7e-a0fb627a8900}, !- Space Name + Surface, !- Outside Boundary Condition + {1a353121-11bf-46cf-895f-d9bd5728deff}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.241675, 2.22044604925031e-016, 3.048, !- X,Y,Z Vertex 1 {m} + 3.241675, 5.01015, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 2.22044604925031e-016, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {5fa514f0-1dd0-4771-ac2b-f0148dbd2a7d}, !- Handle + Space 103, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + , !- Direction of Relative North {deg} + 9.79175363880637, !- X Origin {m} + 0.98500998425603, !- Y Origin {m} + -1.44382283906452e-015, !- Z Origin {m} + {28395cc6-7541-4691-b0e4-9c79d1246faf}, !- Building Story Name + , !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {e5cae142-3647-461f-a191-6e2dd0b64d6e}, !- Handle + Surface 13, !- Name + Floor, !- Surface Type + , !- Construction Name + {5fa514f0-1dd0-4771-ac2b-f0148dbd2a7d}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0df6b845-4c03-4556-9a85-60a69c4c7ef9}, !- Handle + Surface 14, !- Name + Wall, !- Surface Type + , !- Construction Name + {5fa514f0-1dd0-4771-ac2b-f0148dbd2a7d}, !- Space Name + Surface, !- Outside Boundary Condition + {efe7bf62-ab92-4936-a949-458049f410a5}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {74d05569-8c1d-407d-ba11-d8c5988a3c4c}, !- Handle + Surface 15, !- Name + Wall, !- Surface Type + , !- Construction Name + {5fa514f0-1dd0-4771-ac2b-f0148dbd2a7d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {45c153b7-a889-4e1e-8718-2ce047528549}, !- Handle + Surface 16, !- Name + Wall, !- Surface Type + , !- Construction Name + {5fa514f0-1dd0-4771-ac2b-f0148dbd2a7d}, !- Space Name + Surface, !- Outside Boundary Condition + {86f7a772-0a90-4373-91f1-34bb15a70bfe}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.34816250000003, 1.27635, 3.048, !- X,Y,Z Vertex 1 {m} + 4.34816250000003, 1.27635, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {eea2338f-deff-4485-a32f-d6eb8fe6a70f}, !- Handle + Surface 17, !- Name + Wall, !- Surface Type + , !- Construction Name + {5fa514f0-1dd0-4771-ac2b-f0148dbd2a7d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {dc01cbaa-5f95-4c05-ab41-880d0ca298c2}, !- Handle + Surface 18, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {5fa514f0-1dd0-4771-ac2b-f0148dbd2a7d}, !- Space Name + Surface, !- Outside Boundary Condition + {dd7c902a-e6f1-41b1-ba45-384c0da8e5de}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 2 {m} + 3.24167500000003, 5.01015, 3.048, !- X,Y,Z Vertex 3 {m} + 3.24167500000003, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {659ae6d2-9800-47fd-9fbe-099a6b9a6faa}, !- Handle + Space 104, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 14.1399161388064, !- X Origin {m} + 2.26135998425603, !- Y Origin {m} + -1.44382283906452e-015, !- Z Origin {m} + {28395cc6-7541-4691-b0e4-9c79d1246faf}, !- Building Story Name + , !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {b0ebc8cf-531f-4860-95fe-8e0741890f23}, !- Handle + Surface 19, !- Name + Floor, !- Surface Type + , !- Construction Name + {659ae6d2-9800-47fd-9fbe-099a6b9a6faa}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {86f7a772-0a90-4373-91f1-34bb15a70bfe}, !- Handle + Surface 20, !- Name + Wall, !- Surface Type + , !- Construction Name + {659ae6d2-9800-47fd-9fbe-099a6b9a6faa}, !- Space Name + Surface, !- Outside Boundary Condition + {45c153b7-a889-4e1e-8718-2ce047528549}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.01980662698043e-014, 3.7338, 3.048, !- X,Y,Z Vertex 1 {m} + -3.01980662698043e-014, 3.7338, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {01e3840e-6c0a-4dac-abfb-b26659239861}, !- Handle + Surface 21, !- Name + Wall, !- Surface Type + , !- Construction Name + {659ae6d2-9800-47fd-9fbe-099a6b9a6faa}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ac9294f0-650f-4fe9-835d-bfb2bba50f89}, !- Handle + Surface 22, !- Name + Wall, !- Surface Type + , !- Construction Name + {659ae6d2-9800-47fd-9fbe-099a6b9a6faa}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {36c8fecd-cb6a-42f1-aa16-b874817f772c}, !- Handle + Surface 23, !- Name + Wall, !- Surface Type + , !- Construction Name + {659ae6d2-9800-47fd-9fbe-099a6b9a6faa}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8b046fba-ebb5-4ac7-93db-920d717366a9}, !- Handle + Surface 24, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {659ae6d2-9800-47fd-9fbe-099a6b9a6faa}, !- Space Name + Surface, !- Outside Boundary Condition + {1f917138-4f2a-4924-958c-2100973d7c0c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.241675, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 3.241675, 3.7338, 3.048, !- X,Y,Z Vertex 2 {m} + -2.8421709430404e-014, 3.7338, 3.048, !- X,Y,Z Vertex 3 {m} + 1.77635683940025e-015, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:BuildingStory, + {91b51f96-92b4-4872-96ad-c34483864e27}, !- Handle + Building Story 2, !- Name + 3.048, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + {50d78fdf-26a0-4d6c-8446-c2b9cae7d5b0}; !- Group Rendering Name + +OS:Space, + {cad804b0-80a6-434c-bef9-babf17e4a5ec}, !- Handle + Space 201, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + 90, !- Direction of Relative North {deg} + -0.0110588611936299, !- X Origin {m} + 0.98500998425603, !- Y Origin {m} + 3.048, !- Z Origin {m} + {91b51f96-92b4-4872-96ad-c34483864e27}, !- Building Story Name + , !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {6e85197c-c40e-4248-aefd-37e82dbe74a8}, !- Handle + Surface 25, !- Name + Floor, !- Surface Type + , !- Construction Name + {cad804b0-80a6-434c-bef9-babf17e4a5ec}, !- Space Name + Surface, !- Outside Boundary Condition + {b7be12ef-6b26-4550-be1b-aa0ecebeba6a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.3481625, 0, !- X,Y,Z Vertex 1 {m} + -1.11022302462516e-016, 1.1064875, -1.33226762955019e-015, !- X,Y,Z Vertex 2 {m} + -5.01015, 1.1064875, -1.33226762955019e-015, !- X,Y,Z Vertex 3 {m} + -5.01015, 4.3481625, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {abe63abc-f62e-4e32-afb2-0ac835154f7e}, !- Handle + Surface 28, !- Name + Wall, !- Surface Type + , !- Construction Name + {cad804b0-80a6-434c-bef9-babf17e4a5ec}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -5.01015, 3.1555424939711e-015, 3.048, !- X,Y,Z Vertex 1 {m} + -5.01015, 3.1555424939711e-015, 0, !- X,Y,Z Vertex 2 {m} + -3.60955709766131e-016, 1.85835791199906e-015, 0, !- X,Y,Z Vertex 3 {m} + -3.60955709766131e-016, 1.85835791199906e-015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {80e5df63-451a-4b6f-87a8-bbe61c341d97}, !- Handle + Surface 29, !- Name + Wall, !- Surface Type + , !- Construction Name + {cad804b0-80a6-434c-bef9-babf17e4a5ec}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -5.01015, 4.3481625, 3.048, !- X,Y,Z Vertex 1 {m} + -5.01015, 4.3481625, 0, !- X,Y,Z Vertex 2 {m} + -5.01015, 3.15695247721237e-015, 0, !- X,Y,Z Vertex 3 {m} + -5.01015, 3.15695247721237e-015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {d4280e79-a6c3-4453-9d66-91c33eb73ace}, !- Handle + Space 202, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 4.33710363880637, !- X Origin {m} + 0.98500998425603, !- Y Origin {m} + 3.048, !- Z Origin {m} + {91b51f96-92b4-4872-96ad-c34483864e27}; !- Building Story Name + +OS:Surface, + {1a353121-11bf-46cf-895f-d9bd5728deff}, !- Handle + Surface 31, !- Name + Floor, !- Surface Type + , !- Construction Name + {d4280e79-a6c3-4453-9d66-91c33eb73ace}, !- Space Name + Surface, !- Outside Boundary Condition + {7f1279d2-45fc-4a16-9e8b-3b3a4c6e43a7}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 1 {m} + 4.3481625, 2.22044604925031e-016, 0, !- X,Y,Z Vertex 2 {m} + 1.1064875, 2.22044604925031e-016, -1.33226762955019e-015, !- X,Y,Z Vertex 3 {m} + 1.1064875, 5.01015, -1.33226762955019e-015; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {47c57bf6-cb02-40e1-80fb-ea2e822cee95}, !- Handle + Surface 32, !- Name + Wall, !- Surface Type + , !- Construction Name + {d4280e79-a6c3-4453-9d66-91c33eb73ace}, !- Space Name + Surface, !- Outside Boundary Condition + {07128005-29b9-4386-99ba-b5f444a2fceb}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9e08bc3d-de9b-4b9d-93de-21800e7be76f}, !- Handle + Surface 33, !- Name + Wall, !- Surface Type + , !- Construction Name + {d4280e79-a6c3-4453-9d66-91c33eb73ace}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8b9eb6cc-0a48-4289-b2e4-e24de46ba051}, !- Handle + Surface 34, !- Name + Wall, !- Surface Type + , !- Construction Name + {d4280e79-a6c3-4453-9d66-91c33eb73ace}, !- Space Name + Surface, !- Outside Boundary Condition + {f5632aab-1e29-4ae0-b350-8bec473d58ab}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {773c2e7a-c7da-4763-ad9b-befdd4e501b0}, !- Handle + Surface 35, !- Name + Wall, !- Surface Type + , !- Construction Name + {d4280e79-a6c3-4453-9d66-91c33eb73ace}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {789f6ece-3c39-4fec-8291-b8c4ff545072}, !- Handle + Surface 36, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {d4280e79-a6c3-4453-9d66-91c33eb73ace}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {ff34a04e-0a85-4c5c-8750-38576e16ff95}, !- Handle + Space 203, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 8.68526613880637, !- X Origin {m} + 0.98500998425603, !- Y Origin {m} + 3.048, !- Z Origin {m} + {91b51f96-92b4-4872-96ad-c34483864e27}, !- Building Story Name + , !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {d824eb70-82be-4829-813d-1a3fd43d5344}, !- Handle + Surface 37, !- Name + Floor, !- Surface Type + , !- Construction Name + {ff34a04e-0a85-4c5c-8750-38576e16ff95}, !- Space Name + Surface, !- Outside Boundary Condition + {a4b23ea9-f099-4024-8543-9794d38fd929}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.1064875, 5.01015, -1.33226762955019e-015, !- X,Y,Z Vertex 1 {m} + 1.1064875, 2.22044604925031e-016, -1.33226762955019e-015, !- X,Y,Z Vertex 2 {m} + 0, 2.22044604925031e-016, -1.33226762955019e-015, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, -1.33226762955019e-015; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f5632aab-1e29-4ae0-b350-8bec473d58ab}, !- Handle + Surface 38, !- Name + Wall, !- Surface Type + , !- Construction Name + {ff34a04e-0a85-4c5c-8750-38576e16ff95}, !- Space Name + Surface, !- Outside Boundary Condition + {8b9eb6cc-0a48-4289-b2e4-e24de46ba051}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9985f1c1-8f49-485c-80e7-a3a312f5fd5b}, !- Handle + Surface 39, !- Name + Wall, !- Surface Type + , !- Construction Name + {ff34a04e-0a85-4c5c-8750-38576e16ff95}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7f5dd7a0-4fcb-45c4-947a-1e05eb7e4e7c}, !- Handle + Surface 40, !- Name + Wall, !- Surface Type + , !- Construction Name + {ff34a04e-0a85-4c5c-8750-38576e16ff95}, !- Space Name + Surface, !- Outside Boundary Condition + {3845a5f2-50e0-4a8c-bfb0-c67bac7cad53}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ca821397-99ab-4229-9d44-f0819add7af4}, !- Handle + Surface 41, !- Name + Wall, !- Surface Type + , !- Construction Name + {ff34a04e-0a85-4c5c-8750-38576e16ff95}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1ffff551-9e69-4aa0-8403-62991d44ba1b}, !- Handle + Surface 42, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {ff34a04e-0a85-4c5c-8750-38576e16ff95}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {3f04074d-c21e-46a8-b897-cd1aacf58b1b}, !- Handle + Space 204, !- Name + , !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 13.0334286388064, !- X Origin {m} + 0.98500998425603, !- Y Origin {m} + 3.048, !- Z Origin {m} + {91b51f96-92b4-4872-96ad-c34483864e27}, !- Building Story Name + , !- Thermal Zone Name + , !- Part of Total Floor Area + ; !- Design Specification Outdoor Air Object Name + +OS:Surface, + {dd7c902a-e6f1-41b1-ba45-384c0da8e5de}, !- Handle + Surface 43, !- Name + Floor, !- Surface Type + , !- Construction Name + {3f04074d-c21e-46a8-b897-cd1aacf58b1b}, !- Space Name + Surface, !- Outside Boundary Condition + {dc01cbaa-5f95-4c05-ab41-880d0ca298c2}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.10648749999997, 5.01015, -1.33226762955019e-015, !- X,Y,Z Vertex 1 {m} + 1.10648749999997, 0, -1.33226762955019e-015, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3845a5f2-50e0-4a8c-bfb0-c67bac7cad53}, !- Handle + Surface 44, !- Name + Wall, !- Surface Type + , !- Construction Name + {3f04074d-c21e-46a8-b897-cd1aacf58b1b}, !- Space Name + Surface, !- Outside Boundary Condition + {7f5dd7a0-4fcb-45c4-947a-1e05eb7e4e7c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {758f47c8-ed65-4cb6-a9ca-bab95233de98}, !- Handle + Surface 45, !- Name + Wall, !- Surface Type + , !- Construction Name + {3f04074d-c21e-46a8-b897-cd1aacf58b1b}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bb18e8a5-58a8-49ac-899e-ebdbdf7ddb89}, !- Handle + Surface 46, !- Name + Wall, !- Surface Type + , !- Construction Name + {3f04074d-c21e-46a8-b897-cd1aacf58b1b}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 5.01015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {da51e5f1-91ea-4b00-9315-454850b96a5c}, !- Handle + Surface 47, !- Name + Wall, !- Surface Type + , !- Construction Name + {3f04074d-c21e-46a8-b897-cd1aacf58b1b}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6de27080-ccef-4932-9ca8-1a8a260de9cb}, !- Handle + Surface 48, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {3f04074d-c21e-46a8-b897-cd1aacf58b1b}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Rendering:Color, + {68311771-3b89-4fd8-8371-06011327e33f}, !- Handle + Rendering Color 58, !- Name + 186, !- Rendering Red Value + 85, !- Rendering Green Value + 211; !- Rendering Blue Value + +OS:Rendering:Color, + {50d78fdf-26a0-4d6c-8446-c2b9cae7d5b0}, !- Handle + Rendering Color 59, !- Name + 147, !- Rendering Red Value + 112, !- Rendering Green Value + 219; !- Rendering Blue Value + +OS:SubSurface, + {83086c69-93cf-4c32-a459-848edfc9fe3f}, !- Handle + Sub Surface 1, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {7f5dd7a0-4fcb-45c4-947a-1e05eb7e4e7c}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 4.3481625, 0.878220146581713, 2.33283806929554, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0.878220146581713, 1.45971306929554, !- X,Y,Z Vertex 2 {m} + 4.3481625, 1.75134514658171, 1.45971306929554, !- X,Y,Z Vertex 3 {m} + 4.3481625, 1.75134514658171, 2.33283806929554; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {fddbe22c-76d1-4018-a1ed-bd88996946cf}, !- Handle + Sub Surface 2, !- Name + Door, !- Sub Surface Type + , !- Construction Name + {7f5dd7a0-4fcb-45c4-947a-1e05eb7e4e7c}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Shading Control Name + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 4.3481625, 3.0263747379345, 2.193925, !- X,Y,Z Vertex 1 {m} + 4.3481625, 3.0263747379345, 0, !- X,Y,Z Vertex 2 {m} + 4.3481625, 3.9502997379345, 0, !- X,Y,Z Vertex 3 {m} + 4.3481625, 3.9502997379345, 2.193925; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a2c14742-33e8-4699-87b3-43d2f8f6d1c6}, !- Handle + Surface 26, !- Name + Wall, !- Surface Type + , !- Construction Name + {cad804b0-80a6-434c-bef9-babf17e4a5ec}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.9631410092843e-016, 1.85835791199906e-015, 3.048, !- X,Y,Z Vertex 1 {m} + -2.25597318603832e-016, 1.85835791199906e-015, 1.20222401955682e-032, !- X,Y,Z Vertex 2 {m} + 4.5119463720766e-017, 4.3481625, -1.20222401955682e-032, !- X,Y,Z Vertex 3 {m} + -2.25597318603832e-016, 4.3481625, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cc8ac80d-4e89-4f65-bcf6-f7e164d629e0}, !- Handle + Surface 27, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {cad804b0-80a6-434c-bef9-babf17e4a5ec}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.60955709766131e-016, 1.85835791199906e-015, 3.048, !- X,Y,Z Vertex 1 {m} + -3.60955709766131e-016, 4.3481625, 3.048, !- X,Y,Z Vertex 2 {m} + -5.01015, 4.3481625, 3.048, !- X,Y,Z Vertex 3 {m} + -5.01015, 3.1555424939711e-015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {07128005-29b9-4386-99ba-b5f444a2fceb}, !- Handle + Surface 30, !- Name + Wall, !- Surface Type + , !- Construction Name + {cad804b0-80a6-434c-bef9-babf17e4a5ec}, !- Space Name + Surface, !- Outside Boundary Condition + {47c57bf6-cb02-40e1-80fb-ea2e822cee95}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.60955709766131e-016, 4.3481625, 3.048, !- X,Y,Z Vertex 1 {m} + 1.80477854883065e-016, 4.3481625, 0, !- X,Y,Z Vertex 2 {m} + -5.01015, 4.3481625, 0, !- X,Y,Z Vertex 3 {m} + -5.01015, 4.3481625, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a4b23ea9-f099-4024-8543-9794d38fd929}, !- Handle + Surface 49, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {224ad611-73b4-44c4-af7e-a0fb627a8900}, !- Space Name + Surface, !- Outside Boundary Condition + {d824eb70-82be-4829-813d-1a3fd43d5344}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 2.22044604925031e-016, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 2 {m} + 3.241675, 5.01015, 3.048, !- X,Y,Z Vertex 3 {m} + 3.241675, 2.22044604925031e-016, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {595c6b09-f395-4501-8e0b-7571d41c5dde}, !- Handle + Surface 50, !- Name + Floor, !- Surface Type + , !- Construction Name + {d4280e79-a6c3-4453-9d66-91c33eb73ace}, !- Space Name + Surface, !- Outside Boundary Condition + {d1b79c6a-be33-47af-87fd-aa9160e82c07}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.1064875, 5.01015, -1.33226762955019e-015, !- X,Y,Z Vertex 1 {m} + 1.1064875, 2.22044604925031e-016, -1.33226762955019e-015, !- X,Y,Z Vertex 2 {m} + 0, 2.22044604925031e-016, 0, !- X,Y,Z Vertex 3 {m} + 0, 5.01015, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8de131e7-64c9-44cd-aeb4-cb033128be57}, !- Handle + Surface 51, !- Name + Floor, !- Surface Type + , !- Construction Name + {ff34a04e-0a85-4c5c-8750-38576e16ff95}, !- Space Name + Surface, !- Outside Boundary Condition + {586b0bcb-21be-4497-989e-b15814dbba3b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 1 {m} + 4.3481625, 2.22044604925031e-016, 0, !- X,Y,Z Vertex 2 {m} + 1.1064875, 2.22044604925031e-016, -1.33226762955019e-015, !- X,Y,Z Vertex 3 {m} + 1.1064875, 5.01015, -1.33226762955019e-015; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1f917138-4f2a-4924-958c-2100973d7c0c}, !- Handle + Surface 52, !- Name + Floor, !- Surface Type + , !- Construction Name + {3f04074d-c21e-46a8-b897-cd1aacf58b1b}, !- Space Name + Surface, !- Outside Boundary Condition + {8b046fba-ebb5-4ac7-93db-920d717366a9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 5.01015, 0, !- X,Y,Z Vertex 1 {m} + 4.3481625, 1.27635, 0, !- X,Y,Z Vertex 2 {m} + 1.1064875, 1.27635, -1.33226762955019e-015, !- X,Y,Z Vertex 3 {m} + 1.10648749999997, 5.01015, -1.33226762955019e-015; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {586b0bcb-21be-4497-989e-b15814dbba3b}, !- Handle + Surface 53, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {5fa514f0-1dd0-4771-ac2b-f0148dbd2a7d}, !- Space Name + Surface, !- Outside Boundary Condition + {8de131e7-64c9-44cd-aeb4-cb033128be57}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.24167500000003, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 3.24167500000003, 5.01015, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 5.01015, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {95f4e830-088f-4ef7-80e0-821a7546c680}, !- Handle + Surface 54, !- Name + Floor, !- Surface Type + , !- Construction Name + {3f04074d-c21e-46a8-b897-cd1aacf58b1b}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 1.27635, 0, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 1.10648749999997, 0, -1.33226762955019e-015, !- X,Y,Z Vertex 3 {m} + 1.1064875, 1.27635, -1.33226762955019e-015; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {53c30b8b-595a-4162-836c-c45493c30ef1}, !- Handle + Surface 55, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {659ae6d2-9800-47fd-9fbe-099a6b9a6faa}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 2 {m} + 1.77635683940025e-015, 5.01015, 3.048, !- X,Y,Z Vertex 3 {m} + -2.8421709430404e-014, 3.7338, 3.048, !- X,Y,Z Vertex 4 {m} + 3.241675, 3.7338, 3.048, !- X,Y,Z Vertex 5 {m} + 3.241675, 0, 3.048; !- X,Y,Z Vertex 6 {m} + +OS:Surface, + {ad9327b4-b12c-4656-a3b0-f2964461dcf2}, !- Handle + Surface 56, !- Name + Wall, !- Surface Type + , !- Construction Name + {5fa514f0-1dd0-4771-ac2b-f0148dbd2a7d}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 0, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 0, 0, !- X,Y,Z Vertex 2 {m} + 4.34816250000003, 1.27635, 0, !- X,Y,Z Vertex 3 {m} + 4.34816250000003, 1.27635, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {acc4703f-7126-4431-acb0-5db5522e8588}, !- Handle + Surface 57, !- Name + Wall, !- Surface Type + , !- Construction Name + {659ae6d2-9800-47fd-9fbe-099a6b9a6faa}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.01015, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.01015, 0, !- X,Y,Z Vertex 2 {m} + -3.01980662698043e-014, 3.7338, 0, !- X,Y,Z Vertex 3 {m} + -3.01980662698043e-014, 3.7338, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d1b79c6a-be33-47af-87fd-aa9160e82c07}, !- Handle + Surface 58, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {8dd689e5-9a3d-4258-b2f3-1278d1b010d7}, !- Space Name + Surface, !- Outside Boundary Condition + {595c6b09-f395-4501-8e0b-7571d41c5dde}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.3481625, 2.22044604925031e-016, 3.048, !- X,Y,Z Vertex 1 {m} + 4.3481625, 5.01015, 3.048, !- X,Y,Z Vertex 2 {m} + 3.241675, 5.01015, 3.048, !- X,Y,Z Vertex 3 {m} + 3.241675, 2.22044604925031e-016, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ac877ec9-bcb4-46bb-a633-fef2e9d01268}, !- Handle + Surface 59, !- Name + Floor, !- Surface Type + , !- Construction Name + {cad804b0-80a6-434c-bef9-babf17e4a5ec}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -5.01015, 1.1064875, -1.33226762955019e-015, !- X,Y,Z Vertex 1 {m} + -1.11022302462516e-016, 1.1064875, -1.33226762955019e-015, !- X,Y,Z Vertex 2 {m} + -2.22044604925031e-016, 2.14411821630733e-015, 0, !- X,Y,Z Vertex 3 {m} + -5.01015, 3.33934269125535e-015, 0; !- X,Y,Z Vertex 4 {m} + +OS:WeatherFile, + {272295f5-0f23-431e-85ee-d7bf26781b13}, !- Handle + Boston Logan IntL Arpt, !- City + MA, !- State Province Region + USA, !- Country + TMY3, !- Data Source + 725090, !- WMO Number + 42.37, !- Latitude {deg} + -71.02, !- Longitude {deg} + -5, !- Time Zone {hr} + 6, !- Elevation {m} + USA_MA_Boston-Logan.Intl.AP.725090_TMY3.epw, !- Url + ; !- Checksum + +OS:Site, + {c059f274-7619-40cf-b6b6-44ce2552e94e}, !- Handle + Boston Logan IntL Arpt_MA_USA, !- Name + 42.37, !- Latitude {deg} + -71.02, !- Longitude {deg} + -5, !- Time Zone {hr} + 6, !- Elevation {m} + ; !- Terrain + +OS:YearDescription, + {eacc3166-3b9d-491c-bd81-5256323533b5}, !- Handle + 2012, !- Calendar Year + , !- Day of Week for Start Day + ; !- Is Leap Year + +OS:Site:WaterMainsTemperature, + {1161287c-d7de-4d7d-837a-fb871ecc7d3a}, !- Handle + Correlation, !- Calculation Method + , !- Temperature Schedule Name + 10.55, !- Annual Average Outdoor Air Temperature {C} + 26.4; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + +OS:SizingPeriod:DesignDay, + {8e78e571-1541-417c-9a77-85a427bc13d5}, !- Handle + Boston Logan IntL Arpt Ann Clg .4% Condns DB=>MWB, !- Name + 32.7, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {deltaC} + 22.9, !- Humidity Indicating Conditions at Maximum Dry-Bulb + 101253, !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Taub {dimensionless} + 1.95; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {bb893b4b-0a38-4283-b4bb-dc23a2c6ca8c}, !- Handle + Boston Logan IntL Arpt Ann Clg .4% Condns WB=>MDB, !- Name + 30.2, !- Maximum Dry-Bulb Temperature {C} + 8.4, !- Daily Dry-Bulb Temperature Range {deltaC} + 24.6, !- Humidity Indicating Conditions at Maximum Dry-Bulb + 101253, !- Barometric Pressure {Pa} + 6.3, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.488, !- ASHRAE Taub {dimensionless} + 1.95; !- ASHRAE Taud {dimensionless} + +OS:SizingPeriod:DesignDay, + {e940e27b-dc89-4400-9a1a-6376ab760d2e}, !- Handle + Boston Logan IntL Arpt Ann Htg 99.6% Condns DB, !- Name + -13.6, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + -13.6, !- Humidity Indicating Conditions at Maximum Dry-Bulb + 101253, !- Barometric Pressure {Pa} + 7.2, !- Wind Speed {m/s} + 320, !- Wind Direction {deg} + 0, !- Sky Clearness + 0, !- Rain Indicator + 0, !- Snow Indicator + 21, !- Day of Month + 1, !- Month + WinterDesignDay, !- Day Type + 0, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Indicating Type + , !- Humidity Indicating Day Schedule Name + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + ASHRAEClearSky; !- Solar Model Indicator + +OS:ClimateZones, + {c3883524-ce6a-4d23-938a-9c7b4cec6854}, !- Handle + , !- Active Institution + , !- Active Year + ASHRAE, !- Climate Zone Institution Name 1 + ANSI/ASHRAE Standard 169, !- Climate Zone Document Name 1 + 2006, !- Climate Zone Document Year 1 + ASHRAE 169-2006-2A; !- Climate Zone Value 1 + From 18f0d1d46eef54f59717ff8510b1d27f7094e4f2 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Thu, 27 Jun 2024 12:13:58 -0600 Subject: [PATCH 19/41] openstudio_results updates (still customized) --- measures/openstudio_results/measure.rb | 5 +- .../resources/os_lib_reporting.rb | 49 ++++--------------- 2 files changed, 13 insertions(+), 41 deletions(-) diff --git a/measures/openstudio_results/measure.rb b/measures/openstudio_results/measure.rb index cb3e4a8..a3402be 100644 --- a/measures/openstudio_results/measure.rb +++ b/measures/openstudio_results/measure.rb @@ -238,7 +238,8 @@ def run(runner, user_arguments) web_asset_path = setup[:web_asset_path] # assign the user inputs to variables - args = runner.getArgumentValues(arguments(model), user_arguments) + args = runner.getArgumentValues(arguments, user_arguments) + args = Hash[args.collect{ |k, v| [k.to_s, v] }] unless args return false end @@ -347,7 +348,7 @@ def run(runner, user_arguments) end # configure template with variable values - resources_path = File.join(runner.workflow.findMeasure('openstudio_results').get.to_s, 'resources/') + resources_path = File.join(runner.workflow.findMeasure('openstudio_results').get.to_s, 'resources/') # MAS needed for some reason, TODO add comment why renderer = ERB.new(html_in) html_out = renderer.result(binding) diff --git a/measures/openstudio_results/resources/os_lib_reporting.rb b/measures/openstudio_results/resources/os_lib_reporting.rb index 6c9ed63..43e1a52 100644 --- a/measures/openstudio_results/resources/os_lib_reporting.rb +++ b/measures/openstudio_results/resources/os_lib_reporting.rb @@ -1,36 +1,6 @@ # ******************************************************************************* -# OpenStudio(R), Copyright (c) 2008-2021, Alliance for Sustainable Energy, LLC. -# All rights reserved. -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# (1) Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# (2) Redistributions in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# (3) Neither the name of the copyright holder nor the names of any contributors -# may be used to endorse or promote products derived from this software without -# specific prior written permission from the respective party. -# -# (4) Other than as required in clauses (1) and (2), distributions in any form -# of modifications or other derivative works may not use the "OpenStudio" -# trademark, "OS", "os", or any other confusingly similar designation without -# specific prior written permission from Alliance for Sustainable Energy, LLC. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS -# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE -# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF -# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://openstudio.net/license # ******************************************************************************* require 'json' @@ -1011,7 +981,7 @@ def self.spm_logic(component, is_ip_units) # Constrol type and temperature range setpoint = component.to_SetpointManagerScheduled.get supply_air_temp_schedule = setpoint.schedule - schedule_values = OsLib_Schedules.getMinMaxAnnualProfileValue(component.model, supply_air_temp_schedule) + schedule_values = OpenstudioStandards::Schedules.schedule_get_min_max(supply_air_temp_schedule) if schedule_values.nil? schedule_values_pretty = "can't inspect schedule" target_units = '' @@ -1259,14 +1229,14 @@ def self.air_loops_detail_section(model, sqlFile, runner, name_only = false, is_ if thermal_zone.thermostatSetpointDualSetpoint.is_initialized thermostat = thermal_zone.thermostatSetpointDualSetpoint.get if thermostat.coolingSetpointTemperatureSchedule.is_initialized - schedule_values = OsLib_Schedules.getMinMaxAnnualProfileValue(model, thermostat.coolingSetpointTemperatureSchedule.get) + schedule_values = OpenstudioStandards::Schedules.schedule_get_min_max(thermostat.coolingSetpointTemperatureSchedule.get) unless schedule_values.nil? cooling_temp_ranges << schedule_values['min'] cooling_temp_ranges << schedule_values['max'] end end if thermostat.heatingSetpointTemperatureSchedule.is_initialized - schedule_values = OsLib_Schedules.getMinMaxAnnualProfileValue(model, thermostat.heatingSetpointTemperatureSchedule.get) + schedule_values = OpenstudioStandards::Schedules.schedule_get_min_max(thermostat.heatingSetpointTemperatureSchedule.get) unless schedule_values.nil? heating_temps_ranges << schedule_values['min'] heating_temps_ranges << schedule_values['max'] @@ -1746,19 +1716,20 @@ def self.envelope_section_section(model, sqlFile, runner, name_only = false, is_ if use_old_gem_code shgc = construction_root.calculated_solar_heat_gain_coefficient else - shgc = std.construction_calculated_solar_heat_gain_coefficient(construction_root) + shgc = OpenstudioStandards::Constructions.construction_get_solar_transmittance(construction_root) end shgc_neat = OpenStudio.toNeatString(shgc, n_decimals_rvalue, false) if use_old_gem_code vlt = construction_root.calculated_visible_transmittance else - vlt = std.construction_calculated_visible_transmittance(construction_root) + vlt = OpenstudioStandards::Constructions.construction_get_visible_transmittance(construction_root) end vlt_neat = OpenStudio.toNeatString(vlt, n_decimals_rvalue, false) if use_old_gem_code u_factor = construction_root.calculated_u_factor else - u_factor = std.construction_calculated_u_factor(construction_root) + surface_construction = construction_root.to_LayeredConstruction.get + u_factor = OpenstudioStandards::Constructions.construction_get_conductance(surface_construction) end ufactor_conv = OpenStudio.convert(u_factor, source_ufactor_units, target_ufactor_units).get ufactor_neat = OpenStudio.toNeatString(ufactor_conv, n_decimals_rvalue, false) @@ -1899,7 +1870,7 @@ def self.water_use_section(model, sqlFile, runner, name_only = false, is_ip_unit peak_flow_rate_neat = OpenStudio.toNeatString(peak_flow_rate_conv, n_decimals, true) if water_use_equipment_def.targetTemperatureSchedule.is_initialized target_temp_sch = water_use_equipment_def.targetTemperatureSchedule.get - schedule_values = OsLib_Schedules.getMinMaxAnnualProfileValue(model, target_temp_sch) + schedule_values = OpenstudioStandards::Schedules.schedule_get_min_max(target_temp_sch) if !schedule_values.nil? min_conv = OpenStudio.convert(schedule_values['min'], source_units_temp, target_units_temp).get max_conv = OpenStudio.convert(schedule_values['max'], source_units_temp, target_units_temp).get From 4bdd6d0a0ae8b62471a098d33d25a0b54a1b1099 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 10:00:57 -0600 Subject: [PATCH 20/41] rm empty docs/ and LICENSE.md files --- measures/advanced_import_gbxml/LICENSE.md | 1 - measures/advanced_import_gbxml/docs/.gitkeep | 0 measures/gbxml_hvac_import/LICENSE.md | 1 - measures/gbxml_hvac_import/docs/.gitkeep | 0 measures/set_simulation_control/LICENSE.md | 1 - measures/set_simulation_control/docs/.gitkeep | 0 measures/systems_analysis_report_generator/LICENSE.md | 1 - 7 files changed, 4 deletions(-) delete mode 100644 measures/advanced_import_gbxml/LICENSE.md delete mode 100644 measures/advanced_import_gbxml/docs/.gitkeep delete mode 100644 measures/gbxml_hvac_import/LICENSE.md delete mode 100644 measures/gbxml_hvac_import/docs/.gitkeep delete mode 100644 measures/set_simulation_control/LICENSE.md delete mode 100644 measures/set_simulation_control/docs/.gitkeep delete mode 100644 measures/systems_analysis_report_generator/LICENSE.md diff --git a/measures/advanced_import_gbxml/LICENSE.md b/measures/advanced_import_gbxml/LICENSE.md deleted file mode 100644 index d6a0c69..0000000 --- a/measures/advanced_import_gbxml/LICENSE.md +++ /dev/null @@ -1 +0,0 @@ -Insert your license here \ No newline at end of file diff --git a/measures/advanced_import_gbxml/docs/.gitkeep b/measures/advanced_import_gbxml/docs/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/measures/gbxml_hvac_import/LICENSE.md b/measures/gbxml_hvac_import/LICENSE.md deleted file mode 100644 index d6a0c69..0000000 --- a/measures/gbxml_hvac_import/LICENSE.md +++ /dev/null @@ -1 +0,0 @@ -Insert your license here \ No newline at end of file diff --git a/measures/gbxml_hvac_import/docs/.gitkeep b/measures/gbxml_hvac_import/docs/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/measures/set_simulation_control/LICENSE.md b/measures/set_simulation_control/LICENSE.md deleted file mode 100644 index d6a0c69..0000000 --- a/measures/set_simulation_control/LICENSE.md +++ /dev/null @@ -1 +0,0 @@ -Insert your license here \ No newline at end of file diff --git a/measures/set_simulation_control/docs/.gitkeep b/measures/set_simulation_control/docs/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/measures/systems_analysis_report_generator/LICENSE.md b/measures/systems_analysis_report_generator/LICENSE.md deleted file mode 100644 index d6a0c69..0000000 --- a/measures/systems_analysis_report_generator/LICENSE.md +++ /dev/null @@ -1 +0,0 @@ -Insert your license here \ No newline at end of file From 5b9045c378a3483d41444d24d0f0f25316a2e8e2 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 10:47:12 -0600 Subject: [PATCH 21/41] gbxml_import dir --- measures/{import_gbxml => gbxml_import}/measure.rb | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename measures/{import_gbxml => gbxml_import}/measure.rb (100%) diff --git a/measures/import_gbxml/measure.rb b/measures/gbxml_import/measure.rb similarity index 100% rename from measures/import_gbxml/measure.rb rename to measures/gbxml_import/measure.rb From bc93bb19de077ec6631d1c582fb300fd19708181 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 10:59:32 -0600 Subject: [PATCH 22/41] mv import_gbxml => gbxml_import --- measures/{import_gbxml => gbxml_import}/measure.xml | 0 .../tests/gbXMLStandard Test Model 2016.xml | 0 .../{import_gbxml => gbxml_import}/tests/import_gbxml_test.rb | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename measures/{import_gbxml => gbxml_import}/measure.xml (100%) rename measures/{import_gbxml => gbxml_import}/tests/gbXMLStandard Test Model 2016.xml (100%) rename measures/{import_gbxml => gbxml_import}/tests/import_gbxml_test.rb (100%) diff --git a/measures/import_gbxml/measure.xml b/measures/gbxml_import/measure.xml similarity index 100% rename from measures/import_gbxml/measure.xml rename to measures/gbxml_import/measure.xml diff --git a/measures/import_gbxml/tests/gbXMLStandard Test Model 2016.xml b/measures/gbxml_import/tests/gbXMLStandard Test Model 2016.xml similarity index 100% rename from measures/import_gbxml/tests/gbXMLStandard Test Model 2016.xml rename to measures/gbxml_import/tests/gbXMLStandard Test Model 2016.xml diff --git a/measures/import_gbxml/tests/import_gbxml_test.rb b/measures/gbxml_import/tests/import_gbxml_test.rb similarity index 100% rename from measures/import_gbxml/tests/import_gbxml_test.rb rename to measures/gbxml_import/tests/import_gbxml_test.rb From 965872f0e00cd62cd3ef4db906ebc242039babb8 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 11:20:29 -0600 Subject: [PATCH 23/41] mv advanced_import_gbxml => gbxml_import_advanced --- .../README.md | 0 .../README.md.erb | 0 .../measure.rb | 0 .../measure.xml | 0 .../resources/building_type_helper.rb | 0 .../resources/os_lib_adv_import.rb | 0 .../resources/os_lib_lighting_and_equipment.rb | 0 .../resources/os_lib_schedules.rb | 0 .../tests/200_SpacesOneZE.xml | Bin .../tests/25_SpacesOneZE.xml | Bin .../tests/AirSystemAllVariations.xml | Bin .../tests/Analytical Systems 01.xml | Bin .../tests/Test Villa Scenario 2_alt_a.xml | Bin .../tests/VentilationAndInfiltration.xml | Bin .../tests/adhoc_test.rb | 0 .../tests/advanced_import_gbxml_test.rb | 0 .../tests/gbXMLStandard Test Model 2016.xml | 0 .../tests/gbxml - on -peoplehalftime.xml | 0 18 files changed, 0 insertions(+), 0 deletions(-) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/README.md (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/README.md.erb (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/measure.rb (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/measure.xml (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/resources/building_type_helper.rb (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/resources/os_lib_adv_import.rb (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/resources/os_lib_lighting_and_equipment.rb (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/resources/os_lib_schedules.rb (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/tests/200_SpacesOneZE.xml (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/tests/25_SpacesOneZE.xml (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/tests/AirSystemAllVariations.xml (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/tests/Analytical Systems 01.xml (100%) mode change 100755 => 100644 rename measures/{advanced_import_gbxml => gbxml_import_advanced}/tests/Test Villa Scenario 2_alt_a.xml (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/tests/VentilationAndInfiltration.xml (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/tests/adhoc_test.rb (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/tests/advanced_import_gbxml_test.rb (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/tests/gbXMLStandard Test Model 2016.xml (100%) rename measures/{advanced_import_gbxml => gbxml_import_advanced}/tests/gbxml - on -peoplehalftime.xml (100%) diff --git a/measures/advanced_import_gbxml/README.md b/measures/gbxml_import_advanced/README.md similarity index 100% rename from measures/advanced_import_gbxml/README.md rename to measures/gbxml_import_advanced/README.md diff --git a/measures/advanced_import_gbxml/README.md.erb b/measures/gbxml_import_advanced/README.md.erb similarity index 100% rename from measures/advanced_import_gbxml/README.md.erb rename to measures/gbxml_import_advanced/README.md.erb diff --git a/measures/advanced_import_gbxml/measure.rb b/measures/gbxml_import_advanced/measure.rb similarity index 100% rename from measures/advanced_import_gbxml/measure.rb rename to measures/gbxml_import_advanced/measure.rb diff --git a/measures/advanced_import_gbxml/measure.xml b/measures/gbxml_import_advanced/measure.xml similarity index 100% rename from measures/advanced_import_gbxml/measure.xml rename to measures/gbxml_import_advanced/measure.xml diff --git a/measures/advanced_import_gbxml/resources/building_type_helper.rb b/measures/gbxml_import_advanced/resources/building_type_helper.rb similarity index 100% rename from measures/advanced_import_gbxml/resources/building_type_helper.rb rename to measures/gbxml_import_advanced/resources/building_type_helper.rb diff --git a/measures/advanced_import_gbxml/resources/os_lib_adv_import.rb b/measures/gbxml_import_advanced/resources/os_lib_adv_import.rb similarity index 100% rename from measures/advanced_import_gbxml/resources/os_lib_adv_import.rb rename to measures/gbxml_import_advanced/resources/os_lib_adv_import.rb diff --git a/measures/advanced_import_gbxml/resources/os_lib_lighting_and_equipment.rb b/measures/gbxml_import_advanced/resources/os_lib_lighting_and_equipment.rb similarity index 100% rename from measures/advanced_import_gbxml/resources/os_lib_lighting_and_equipment.rb rename to measures/gbxml_import_advanced/resources/os_lib_lighting_and_equipment.rb diff --git a/measures/advanced_import_gbxml/resources/os_lib_schedules.rb b/measures/gbxml_import_advanced/resources/os_lib_schedules.rb similarity index 100% rename from measures/advanced_import_gbxml/resources/os_lib_schedules.rb rename to measures/gbxml_import_advanced/resources/os_lib_schedules.rb diff --git a/measures/advanced_import_gbxml/tests/200_SpacesOneZE.xml b/measures/gbxml_import_advanced/tests/200_SpacesOneZE.xml similarity index 100% rename from measures/advanced_import_gbxml/tests/200_SpacesOneZE.xml rename to measures/gbxml_import_advanced/tests/200_SpacesOneZE.xml diff --git a/measures/advanced_import_gbxml/tests/25_SpacesOneZE.xml b/measures/gbxml_import_advanced/tests/25_SpacesOneZE.xml similarity index 100% rename from measures/advanced_import_gbxml/tests/25_SpacesOneZE.xml rename to measures/gbxml_import_advanced/tests/25_SpacesOneZE.xml diff --git a/measures/advanced_import_gbxml/tests/AirSystemAllVariations.xml b/measures/gbxml_import_advanced/tests/AirSystemAllVariations.xml similarity index 100% rename from measures/advanced_import_gbxml/tests/AirSystemAllVariations.xml rename to measures/gbxml_import_advanced/tests/AirSystemAllVariations.xml diff --git a/measures/advanced_import_gbxml/tests/Analytical Systems 01.xml b/measures/gbxml_import_advanced/tests/Analytical Systems 01.xml old mode 100755 new mode 100644 similarity index 100% rename from measures/advanced_import_gbxml/tests/Analytical Systems 01.xml rename to measures/gbxml_import_advanced/tests/Analytical Systems 01.xml diff --git a/measures/advanced_import_gbxml/tests/Test Villa Scenario 2_alt_a.xml b/measures/gbxml_import_advanced/tests/Test Villa Scenario 2_alt_a.xml similarity index 100% rename from measures/advanced_import_gbxml/tests/Test Villa Scenario 2_alt_a.xml rename to measures/gbxml_import_advanced/tests/Test Villa Scenario 2_alt_a.xml diff --git a/measures/advanced_import_gbxml/tests/VentilationAndInfiltration.xml b/measures/gbxml_import_advanced/tests/VentilationAndInfiltration.xml similarity index 100% rename from measures/advanced_import_gbxml/tests/VentilationAndInfiltration.xml rename to measures/gbxml_import_advanced/tests/VentilationAndInfiltration.xml diff --git a/measures/advanced_import_gbxml/tests/adhoc_test.rb b/measures/gbxml_import_advanced/tests/adhoc_test.rb similarity index 100% rename from measures/advanced_import_gbxml/tests/adhoc_test.rb rename to measures/gbxml_import_advanced/tests/adhoc_test.rb diff --git a/measures/advanced_import_gbxml/tests/advanced_import_gbxml_test.rb b/measures/gbxml_import_advanced/tests/advanced_import_gbxml_test.rb similarity index 100% rename from measures/advanced_import_gbxml/tests/advanced_import_gbxml_test.rb rename to measures/gbxml_import_advanced/tests/advanced_import_gbxml_test.rb diff --git a/measures/advanced_import_gbxml/tests/gbXMLStandard Test Model 2016.xml b/measures/gbxml_import_advanced/tests/gbXMLStandard Test Model 2016.xml similarity index 100% rename from measures/advanced_import_gbxml/tests/gbXMLStandard Test Model 2016.xml rename to measures/gbxml_import_advanced/tests/gbXMLStandard Test Model 2016.xml diff --git a/measures/advanced_import_gbxml/tests/gbxml - on -peoplehalftime.xml b/measures/gbxml_import_advanced/tests/gbxml - on -peoplehalftime.xml similarity index 100% rename from measures/advanced_import_gbxml/tests/gbxml - on -peoplehalftime.xml rename to measures/gbxml_import_advanced/tests/gbxml - on -peoplehalftime.xml From 4778e91daf816df3ac6b50a730d855353dd0b1b2 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 11:23:57 -0600 Subject: [PATCH 24/41] mv gbxml_hvac_import => gbxml_import_hvac --- measures/{gbxml_hvac_import => gbxml_import_hvac}/README.md | 0 measures/{gbxml_hvac_import => gbxml_import_hvac}/README.md.erb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/gbxml_hvac_import.rb | 0 measures/{gbxml_hvac_import => gbxml_import_hvac}/measure.rb | 0 measures/{gbxml_hvac_import => gbxml_import_hvac}/measure.xml | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/acb.rb | 0 .../resources/air_system.rb | 0 .../resources/baseboard_convective.rb | 0 .../resources/baseboard_radiant.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/cav_box.rb | 0 .../resources/chilled_water_loop.rb | 0 .../resources/condenser_loop.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/curves.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/fpfc.rb | 0 .../resources/gbxml_parser.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/helpers.rb | 0 .../resources/hot_water_loop.rb | 0 .../resources/hvac_object.rb | 0 .../resources/model_manager.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/pcb.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/pfpb.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/ptac.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/pthp.rb | 0 .../resources/radiant_panel.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/sfpb.rb | 0 .../resources/unit_heater.rb | 0 .../resources/unit_ventilator.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/vav_box.rb | 0 .../resources/vrf_condenser.rb | 0 .../resources/vrf_fan_coil_unit.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/wshp.rb | 0 .../{gbxml_hvac_import => gbxml_import_hvac}/resources/zone.rb | 0 .../resources/zone_hvac_equipment.rb | 0 33 files changed, 0 insertions(+), 0 deletions(-) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/README.md (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/README.md.erb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/gbxml_hvac_import.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/measure.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/measure.xml (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/acb.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/air_system.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/baseboard_convective.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/baseboard_radiant.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/cav_box.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/chilled_water_loop.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/condenser_loop.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/curves.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/fpfc.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/gbxml_parser.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/helpers.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/hot_water_loop.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/hvac_object.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/model_manager.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/pcb.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/pfpb.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/ptac.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/pthp.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/radiant_panel.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/sfpb.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/unit_heater.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/unit_ventilator.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/vav_box.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/vrf_condenser.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/vrf_fan_coil_unit.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/wshp.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/zone.rb (100%) rename measures/{gbxml_hvac_import => gbxml_import_hvac}/resources/zone_hvac_equipment.rb (100%) diff --git a/measures/gbxml_hvac_import/README.md b/measures/gbxml_import_hvac/README.md similarity index 100% rename from measures/gbxml_hvac_import/README.md rename to measures/gbxml_import_hvac/README.md diff --git a/measures/gbxml_hvac_import/README.md.erb b/measures/gbxml_import_hvac/README.md.erb similarity index 100% rename from measures/gbxml_hvac_import/README.md.erb rename to measures/gbxml_import_hvac/README.md.erb diff --git a/measures/gbxml_hvac_import/gbxml_hvac_import.rb b/measures/gbxml_import_hvac/gbxml_hvac_import.rb similarity index 100% rename from measures/gbxml_hvac_import/gbxml_hvac_import.rb rename to measures/gbxml_import_hvac/gbxml_hvac_import.rb diff --git a/measures/gbxml_hvac_import/measure.rb b/measures/gbxml_import_hvac/measure.rb similarity index 100% rename from measures/gbxml_hvac_import/measure.rb rename to measures/gbxml_import_hvac/measure.rb diff --git a/measures/gbxml_hvac_import/measure.xml b/measures/gbxml_import_hvac/measure.xml similarity index 100% rename from measures/gbxml_hvac_import/measure.xml rename to measures/gbxml_import_hvac/measure.xml diff --git a/measures/gbxml_hvac_import/resources/acb.rb b/measures/gbxml_import_hvac/resources/acb.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/acb.rb rename to measures/gbxml_import_hvac/resources/acb.rb diff --git a/measures/gbxml_hvac_import/resources/air_system.rb b/measures/gbxml_import_hvac/resources/air_system.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/air_system.rb rename to measures/gbxml_import_hvac/resources/air_system.rb diff --git a/measures/gbxml_hvac_import/resources/baseboard_convective.rb b/measures/gbxml_import_hvac/resources/baseboard_convective.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/baseboard_convective.rb rename to measures/gbxml_import_hvac/resources/baseboard_convective.rb diff --git a/measures/gbxml_hvac_import/resources/baseboard_radiant.rb b/measures/gbxml_import_hvac/resources/baseboard_radiant.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/baseboard_radiant.rb rename to measures/gbxml_import_hvac/resources/baseboard_radiant.rb diff --git a/measures/gbxml_hvac_import/resources/cav_box.rb b/measures/gbxml_import_hvac/resources/cav_box.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/cav_box.rb rename to measures/gbxml_import_hvac/resources/cav_box.rb diff --git a/measures/gbxml_hvac_import/resources/chilled_water_loop.rb b/measures/gbxml_import_hvac/resources/chilled_water_loop.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/chilled_water_loop.rb rename to measures/gbxml_import_hvac/resources/chilled_water_loop.rb diff --git a/measures/gbxml_hvac_import/resources/condenser_loop.rb b/measures/gbxml_import_hvac/resources/condenser_loop.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/condenser_loop.rb rename to measures/gbxml_import_hvac/resources/condenser_loop.rb diff --git a/measures/gbxml_hvac_import/resources/curves.rb b/measures/gbxml_import_hvac/resources/curves.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/curves.rb rename to measures/gbxml_import_hvac/resources/curves.rb diff --git a/measures/gbxml_hvac_import/resources/fpfc.rb b/measures/gbxml_import_hvac/resources/fpfc.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/fpfc.rb rename to measures/gbxml_import_hvac/resources/fpfc.rb diff --git a/measures/gbxml_hvac_import/resources/gbxml_parser.rb b/measures/gbxml_import_hvac/resources/gbxml_parser.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/gbxml_parser.rb rename to measures/gbxml_import_hvac/resources/gbxml_parser.rb diff --git a/measures/gbxml_hvac_import/resources/helpers.rb b/measures/gbxml_import_hvac/resources/helpers.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/helpers.rb rename to measures/gbxml_import_hvac/resources/helpers.rb diff --git a/measures/gbxml_hvac_import/resources/hot_water_loop.rb b/measures/gbxml_import_hvac/resources/hot_water_loop.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/hot_water_loop.rb rename to measures/gbxml_import_hvac/resources/hot_water_loop.rb diff --git a/measures/gbxml_hvac_import/resources/hvac_object.rb b/measures/gbxml_import_hvac/resources/hvac_object.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/hvac_object.rb rename to measures/gbxml_import_hvac/resources/hvac_object.rb diff --git a/measures/gbxml_hvac_import/resources/model_manager.rb b/measures/gbxml_import_hvac/resources/model_manager.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/model_manager.rb rename to measures/gbxml_import_hvac/resources/model_manager.rb diff --git a/measures/gbxml_hvac_import/resources/pcb.rb b/measures/gbxml_import_hvac/resources/pcb.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/pcb.rb rename to measures/gbxml_import_hvac/resources/pcb.rb diff --git a/measures/gbxml_hvac_import/resources/pfpb.rb b/measures/gbxml_import_hvac/resources/pfpb.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/pfpb.rb rename to measures/gbxml_import_hvac/resources/pfpb.rb diff --git a/measures/gbxml_hvac_import/resources/ptac.rb b/measures/gbxml_import_hvac/resources/ptac.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/ptac.rb rename to measures/gbxml_import_hvac/resources/ptac.rb diff --git a/measures/gbxml_hvac_import/resources/pthp.rb b/measures/gbxml_import_hvac/resources/pthp.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/pthp.rb rename to measures/gbxml_import_hvac/resources/pthp.rb diff --git a/measures/gbxml_hvac_import/resources/radiant_panel.rb b/measures/gbxml_import_hvac/resources/radiant_panel.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/radiant_panel.rb rename to measures/gbxml_import_hvac/resources/radiant_panel.rb diff --git a/measures/gbxml_hvac_import/resources/sfpb.rb b/measures/gbxml_import_hvac/resources/sfpb.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/sfpb.rb rename to measures/gbxml_import_hvac/resources/sfpb.rb diff --git a/measures/gbxml_hvac_import/resources/unit_heater.rb b/measures/gbxml_import_hvac/resources/unit_heater.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/unit_heater.rb rename to measures/gbxml_import_hvac/resources/unit_heater.rb diff --git a/measures/gbxml_hvac_import/resources/unit_ventilator.rb b/measures/gbxml_import_hvac/resources/unit_ventilator.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/unit_ventilator.rb rename to measures/gbxml_import_hvac/resources/unit_ventilator.rb diff --git a/measures/gbxml_hvac_import/resources/vav_box.rb b/measures/gbxml_import_hvac/resources/vav_box.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/vav_box.rb rename to measures/gbxml_import_hvac/resources/vav_box.rb diff --git a/measures/gbxml_hvac_import/resources/vrf_condenser.rb b/measures/gbxml_import_hvac/resources/vrf_condenser.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/vrf_condenser.rb rename to measures/gbxml_import_hvac/resources/vrf_condenser.rb diff --git a/measures/gbxml_hvac_import/resources/vrf_fan_coil_unit.rb b/measures/gbxml_import_hvac/resources/vrf_fan_coil_unit.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/vrf_fan_coil_unit.rb rename to measures/gbxml_import_hvac/resources/vrf_fan_coil_unit.rb diff --git a/measures/gbxml_hvac_import/resources/wshp.rb b/measures/gbxml_import_hvac/resources/wshp.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/wshp.rb rename to measures/gbxml_import_hvac/resources/wshp.rb diff --git a/measures/gbxml_hvac_import/resources/zone.rb b/measures/gbxml_import_hvac/resources/zone.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/zone.rb rename to measures/gbxml_import_hvac/resources/zone.rb diff --git a/measures/gbxml_hvac_import/resources/zone_hvac_equipment.rb b/measures/gbxml_import_hvac/resources/zone_hvac_equipment.rb similarity index 100% rename from measures/gbxml_hvac_import/resources/zone_hvac_equipment.rb rename to measures/gbxml_import_hvac/resources/zone_hvac_equipment.rb From ffe5c3c6deab0662612a66c5f1c14b20a097b855 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 11:30:33 -0600 Subject: [PATCH 25/41] update workflows --- workflows/Annual Building Energy Simulation.osw | 6 +++--- workflows/HVAC Systems Loads and Sizing.osw | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/workflows/Annual Building Energy Simulation.osw b/workflows/Annual Building Energy Simulation.osw index ef8097d..350fc82 100644 --- a/workflows/Annual Building Energy Simulation.osw +++ b/workflows/Annual Building Energy Simulation.osw @@ -19,21 +19,21 @@ } }, { - "measure_dir_name": "import_gbxml", + "measure_dir_name": "gbxml_import", "name": "ImportGbxml", "arguments": { "gbxml_file_name": "analysis.xml" } }, { - "measure_dir_name": "advanced_import_gbxml", + "measure_dir_name": "gbxml_import_advanced", "name": "Advanced Import Gbxml", "arguments": { "gbxml_file_name": "analysis.xml" } }, { - "measure_dir_name": "gbxml_hvac_import", + "measure_dir_name": "gbxml_import_import", "name": "GBXML HVAC Import", "arguments": { "gbxml_file_name": "analysis.xml" diff --git a/workflows/HVAC Systems Loads and Sizing.osw b/workflows/HVAC Systems Loads and Sizing.osw index d624705..63eda3e 100644 --- a/workflows/HVAC Systems Loads and Sizing.osw +++ b/workflows/HVAC Systems Loads and Sizing.osw @@ -19,21 +19,21 @@ } }, { - "measure_dir_name": "import_gbxml", + "measure_dir_name": "gbxml_import", "name": "ImportGbxml", "arguments": { "gbxml_file_name": "analysis.xml" } }, { - "measure_dir_name": "advanced_import_gbxml", + "measure_dir_name": "gbxml_import_advanced", "name": "Advanced Import Gbxml", "arguments": { "gbxml_file_name": "analysis.xml" } }, { - "measure_dir_name": "gbxml_hvac_import", + "measure_dir_name": "gbxml_import_hvac", "name": "GBXML HVAC Import", "arguments": { "gbxml_file_name": "analysis.xml" From 67ff4acafa1b0f41a9b36154b7c3fde988c189c3 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 11:37:04 -0600 Subject: [PATCH 26/41] measure -u gbxml_import --- measures/gbxml_import/measure.rb | 6 ++-- measures/gbxml_import/measure.xml | 52 +++++++++++++++++++++---------- 2 files changed, 38 insertions(+), 20 deletions(-) diff --git a/measures/gbxml_import/measure.rb b/measures/gbxml_import/measure.rb index 0a68e27..11c55a2 100644 --- a/measures/gbxml_import/measure.rb +++ b/measures/gbxml_import/measure.rb @@ -2,11 +2,11 @@ # http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/ # start the measure -class ImportGbxml < OpenStudio::Measure::ModelMeasure +class GbxmlImport < OpenStudio::Measure::ModelMeasure # human readable name def name - return "ImportGbxml" + return "GbxmlImport" end # human readable description @@ -184,4 +184,4 @@ def run(model, runner, user_arguments) end # register the measure to be used by the application -ImportGbxml.new.registerWithApplication +GbxmlImport.new.registerWithApplication diff --git a/measures/gbxml_import/measure.xml b/measures/gbxml_import/measure.xml index 5739317..eecbb05 100644 --- a/measures/gbxml_import/measure.xml +++ b/measures/gbxml_import/measure.xml @@ -1,13 +1,13 @@ - 3.0 - import_gbxml + 3.1 + gbxml_import a335136f-bad3-451d-a585-9ea31249e38b - ad35b7c9-cf23-404d-9fcc-96bd8f87c5f6 - 20220420T154900Z + 23af1cee-e13b-4270-aece-5309bef964e9 + 2024-06-28T17:35:45Z DA3B952E - ImportGbxml - ImportGbxml + GbxmlImport + GbxmlImport Import a gbXML file Import a gbXML file @@ -19,6 +19,24 @@ true false + + rename_objects + Rename Building and Thermal Zone objects with gbXML Names? + Boolean + false + false + true + + + true + true + + + false + false + + + @@ -69,10 +87,15 @@ - import_gbxml_test.rb + + OpenStudio + 2.4.0 + 2.4.0 + + measure.rb rb - test - 3F13F2CF + script + 67A74842 gbXMLStandard Test Model 2016.xml @@ -81,15 +104,10 @@ D39FE3DA - - OpenStudio - 2.4.0 - 2.4.0 - - measure.rb + import_gbxml_test.rb rb - script - CCBBDF6D + test + 3F13F2CF From a860f997f5579136201796478e15f9c1ee15e960 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 11:46:45 -0600 Subject: [PATCH 27/41] measure -u gbxml_import --- measures/gbxml_import/measure.rb | 2 +- measures/gbxml_import/measure.xml | 16 ++++++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/measures/gbxml_import/measure.rb b/measures/gbxml_import/measure.rb index 11c55a2..c4d74c8 100644 --- a/measures/gbxml_import/measure.rb +++ b/measures/gbxml_import/measure.rb @@ -6,7 +6,7 @@ class GbxmlImport < OpenStudio::Measure::ModelMeasure # human readable name def name - return "GbxmlImport" + return "Gbxml Import" end # human readable description diff --git a/measures/gbxml_import/measure.xml b/measures/gbxml_import/measure.xml index eecbb05..52f870a 100644 --- a/measures/gbxml_import/measure.xml +++ b/measures/gbxml_import/measure.xml @@ -3,8 +3,8 @@ 3.1 gbxml_import a335136f-bad3-451d-a585-9ea31249e38b - 23af1cee-e13b-4270-aece-5309bef964e9 - 2024-06-28T17:35:45Z + 5752fd87-ac2a-4563-980a-1f6109864a0f + 2024-06-28T17:41:21Z DA3B952E GbxmlImport GbxmlImport @@ -86,6 +86,18 @@ + + README.md + md + readme + 6B4A52CA + + + README.md.erb + erb + readmeerb + 703C9964 + OpenStudio From b6e6e7c258cbdbdb48e2145f5e1287f475d4c245 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 11:47:10 -0600 Subject: [PATCH 28/41] add README to gbxml_import --- measures/gbxml_import/README.md | 40 +++++++++++++++++++++++++++ measures/gbxml_import/README.md.erb | 42 +++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 measures/gbxml_import/README.md create mode 100644 measures/gbxml_import/README.md.erb diff --git a/measures/gbxml_import/README.md b/measures/gbxml_import/README.md new file mode 100644 index 0000000..3b278a4 --- /dev/null +++ b/measures/gbxml_import/README.md @@ -0,0 +1,40 @@ + + +###### (Automatically generated documentation) + +# GbxmlImport + +## Description +Import a gbXML file + +## Modeler Description +Import a gbXML file + +## Measure Type +ModelMeasure + +## Taxonomy + + +## Arguments + + +### gbXML filename +Filename or full path to gbXML file. +**Name:** gbxml_file_name, +**Type:** String, +**Units:** , +**Required:** true, +**Model Dependent:** false + +### Rename Building and Thermal Zone objects with gbXML Names? + +**Name:** rename_objects, +**Type:** Boolean, +**Units:** , +**Required:** false, +**Model Dependent:** false + + + + diff --git a/measures/gbxml_import/README.md.erb b/measures/gbxml_import/README.md.erb new file mode 100644 index 0000000..4deb9ae --- /dev/null +++ b/measures/gbxml_import/README.md.erb @@ -0,0 +1,42 @@ +<%#= README.md.erb is used to auto-generate README.md. %> +<%#= To manually maintain README.md throw away README.md.erb and manually edit README.md %> +###### (Automatically generated documentation) + +# <%= name %> + +## Description +<%= description %> + +## Modeler Description +<%= modelerDescription %> + +## Measure Type +<%= measureType %> + +## Taxonomy +<%= taxonomy %> + +## Arguments + +<% arguments.each do |argument| %> +### <%= argument[:display_name] %> +<%= argument[:description] %> +**Name:** <%= argument[:name] %>, +**Type:** <%= argument[:type] %>, +**Units:** <%= argument[:units] %>, +**Required:** <%= argument[:required] %>, +**Model Dependent:** <%= argument[:model_dependent] %> +<% end %> + +<% if arguments.size == 0 %> +<%= "This measure does not have any user arguments" %> +<% end %> + +<% if outputs.size > 0 %> +## Outputs +<% output_names = [] %> +<% outputs.each do |output| %> +<% output_names << output[:display_name] %> +<% end %> +<%= output_names.join(", ") %> +<% end %> \ No newline at end of file From 23941fc6b08cd3e9150f3ab9367c621f006f13ef Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 11:48:01 -0600 Subject: [PATCH 29/41] measure -u gbxml_import_advanced --- measures/gbxml_import_advanced/README.md | 14 +-- measures/gbxml_import_advanced/measure.rb | 6 +- measures/gbxml_import_advanced/measure.xml | 119 ++++++++++----------- 3 files changed, 64 insertions(+), 75 deletions(-) diff --git a/measures/gbxml_import_advanced/README.md b/measures/gbxml_import_advanced/README.md index 8066aa1..17458d5 100644 --- a/measures/gbxml_import_advanced/README.md +++ b/measures/gbxml_import_advanced/README.md @@ -2,13 +2,13 @@ ###### (Automatically generated documentation) -# Advanced Import Gbxml +# ## Description -This measure will bring in additional gbXML data beyond what comes in with the basic OpenStudio gbXML import. + ## Modeler Description -This measure expects GbXMLReverseTranslator to already have been run on the model. This measure parses the XML and translates additional gbXML objects to OSM. + ## Measure Type ModelMeasure @@ -19,14 +19,8 @@ ModelMeasure ## Arguments -### gbXML filename -Filename or full path to gbXML file. -**Name:** gbxml_file_name, -**Type:** String, -**Units:** , -**Required:** true, -**Model Dependent:** false +This measure does not have any user arguments diff --git a/measures/gbxml_import_advanced/measure.rb b/measures/gbxml_import_advanced/measure.rb index d53d97c..a5e2c40 100644 --- a/measures/gbxml_import_advanced/measure.rb +++ b/measures/gbxml_import_advanced/measure.rb @@ -10,11 +10,11 @@ Dir[File.dirname(__FILE__) + '/resources/*.rb'].each { |file| require file } # start the measure -class AdvancedImportGbxml < OpenStudio::Measure::ModelMeasure +class GbxmlImportAdvanced < OpenStudio::Measure::ModelMeasure # human readable name def name # Measure name should be the title case of the class name. - return 'Advanced Import Gbxml' + return 'Gbxml Import Advanced' end # human readable description @@ -421,4 +421,4 @@ def run(model, runner, user_arguments) end # register the measure to be used by the application -AdvancedImportGbxml.new.registerWithApplication \ No newline at end of file +GbxmlImportAdvanced.new.registerWithApplication \ No newline at end of file diff --git a/measures/gbxml_import_advanced/measure.xml b/measures/gbxml_import_advanced/measure.xml index ace2d80..d74443e 100644 --- a/measures/gbxml_import_advanced/measure.xml +++ b/measures/gbxml_import_advanced/measure.xml @@ -1,10 +1,11 @@ - 3.0 + 3.1 + Failed to infer measure name from 'C:/Users/MSTEEN/Documents/GitHub/NREL/gbxml-to-openstudio/measures/gbxml_import_advanced/measure.rb' advanced_import_gbxml f82940f7-8046-4fd1-9dbb-df6411e86de2 - 5bd42b97-9eac-42b7-b84d-015ddcb0d0ae - 20220420T154858Z + 34245d90-7622-429e-880a-c632ecf98cdd + 2024-06-28T17:39:01Z D8922A73 AdvancedImportGbxml Advanced Import Gbxml @@ -49,10 +50,10 @@ - LICENSE.md + README.md md - license - CD7F5672 + readme + 0B68E96D README.md.erb @@ -61,22 +62,27 @@ 703C9964 - gbXMLStandard Test Model 2016.xml - xml - test - D39FE3DA + + OpenStudio + 2.6.0 + 2.6.0 + + measure.rb + rb + script + 070BF203 - README.md - md - readme - 60A34A33 + building_type_helper.rb + rb + resource + A8B4E116 - Analytical Systems 01.xml - xml - test - CE91D4F3 + os_lib_adv_import.rb + rb + resource + D2A0FD8D os_lib_lighting_and_equipment.rb @@ -85,63 +91,46 @@ E63C7739 - Test Villa Scenario 2_alt_a.xml - xml - test - 89516D7B - - - .gitkeep - gitkeep - doc - 00000000 + os_lib_schedules.rb + rb + resource + C79BB5BA - VentilationAndInfiltration.xml + 200_SpacesOneZE.xml xml test - A8185257 - - - os_lib_schedules.rb - rb - resource - BB445760 + C4359438 - advanced_import_gbxml_test.rb - rb + 25_SpacesOneZE.xml + xml test - F468277A + 44A2B39C - os_lib_adv_import.rb - rb - resource - 24E56A45 + AirSystemAllVariations.xml + xml + test + F50404FF - - OpenStudio - 2.6.0 - 2.6.0 - - measure.rb - rb - script - DD0E31F0 + Analytical Systems 01.xml + xml + test + CE91D4F3 - 200_SpacesOneZE.xml + Test Villa Scenario 2_alt_a.xml xml test - C4359438 + 89516D7B - 25_SpacesOneZE.xml + VentilationAndInfiltration.xml xml test - 44A2B39C + A8185257 adhoc_test.rb @@ -150,16 +139,22 @@ 33699363 - AirSystemAllVariations.xml + advanced_import_gbxml_test.rb + rb + test + BC66C7B5 + + + gbXMLStandard Test Model 2016.xml xml test - F50404FF + D39FE3DA - building_type_helper.rb - rb - resource - A8B4E116 + gbxml - on -peoplehalftime.xml + xml + test + 7AB4E205 From f391b9017b7ee9f783e9e0f1dc5c1f2d24616b75 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 11:54:30 -0600 Subject: [PATCH 30/41] measure -u gbxml_import_hvac --- measures/gbxml_import_hvac/README.md | 2 +- measures/gbxml_import_hvac/measure.rb | 6 +- measures/gbxml_import_hvac/measure.xml | 94 ++++++++++++-------------- 3 files changed, 48 insertions(+), 54 deletions(-) diff --git a/measures/gbxml_import_hvac/README.md b/measures/gbxml_import_hvac/README.md index 6d29d9c..919bd62 100644 --- a/measures/gbxml_import_hvac/README.md +++ b/measures/gbxml_import_hvac/README.md @@ -2,7 +2,7 @@ ###### (Automatically generated documentation) -# GBXML HVAC Import +# Gbxml Import Hvac ## Description This measure will bring in additional gbXML data beyond what comes in with the basic OpenStudio gbXML import. diff --git a/measures/gbxml_import_hvac/measure.rb b/measures/gbxml_import_hvac/measure.rb index 7831ebc..66405fb 100644 --- a/measures/gbxml_import_hvac/measure.rb +++ b/measures/gbxml_import_hvac/measure.rb @@ -1,11 +1,11 @@ require_relative 'gbxml_hvac_import' # start the measure -class GBXMLHVACImport < OpenStudio::Measure::ModelMeasure +class GbxmlImportHvac < OpenStudio::Measure::ModelMeasure # human readable name def name # Measure name should be the title case of the class name. - return 'GBXML HVAC Import' + return 'Gbxml Import Hvac' end # human readable description @@ -77,4 +77,4 @@ def run(model, runner, user_arguments) end # register the measure to be used by the application -GBXMLHVACImport.new.registerWithApplication +GbxmlImportHvac.new.registerWithApplication diff --git a/measures/gbxml_import_hvac/measure.xml b/measures/gbxml_import_hvac/measure.xml index 856e673..77f2867 100644 --- a/measures/gbxml_import_hvac/measure.xml +++ b/measures/gbxml_import_hvac/measure.xml @@ -1,13 +1,13 @@ - 3.0 - gbxmlhvac_import + 3.1 + gbxml_import_hvac f82940f7-8046-4fd1-9dbb-df6411e86de6 - 08110e47-8590-4bb1-97d2-14b4d6e7fa81 - 20220420T154859Z + bc5cfda7-ac7f-4dc8-a41d-652bc54dc5df + 2024-06-28T17:52:43Z D8922A73 - GBXMLHVACImport - GBXML HVAC Import + GbxmlImportHvac + Gbxml Import Hvac This measure will bring in additional gbXML data beyond what comes in with the basic OpenStudio gbXML import. This measure expects GbXMLReverseTranslator to already have been run on the model. This measure parses the XML and translates additional gbXML objects to OSM. @@ -49,10 +49,10 @@ - LICENSE.md + README.md md - license - CD7F5672 + readme + 4F98DE88 README.md.erb @@ -60,36 +60,6 @@ readmeerb 703C9964 - - .gitkeep - gitkeep - doc - 00000000 - - - README.md - md - readme - ACE620EC - - - baseboard_convective.rb - rb - resource - 1579ABA2 - - - baseboard_radiant.rb - rb - resource - A089C7F9 - - - gbxml_parser.rb - rb - resource - C6D36F88 - OpenStudio @@ -99,7 +69,7 @@ measure.rb rb script - 8D023D4F + 4577C3E6 acb.rb @@ -111,7 +81,19 @@ air_system.rb rb resource - 4346EE73 + F3849F7C + + + baseboard_convective.rb + rb + resource + 1579ABA2 + + + baseboard_radiant.rb + rb + resource + A089C7F9 cav_box.rb @@ -129,19 +111,31 @@ condenser_loop.rb rb resource - 0FC19EC5 + 67920E98 + + + curves.rb + rb + resource + AF42E765 fpfc.rb rb resource - 8ECD94E8 + F17ED3E5 + + + gbxml_parser.rb + rb + resource + C6D36F88 helpers.rb rb resource - 4AC6AFF6 + 13A8CCFF hot_water_loop.rb @@ -177,13 +171,13 @@ ptac.rb rb resource - F5562E75 + AAF57EA1 pthp.rb rb resource - 7BF69F03 + A2F61C9D radiant_panel.rb @@ -207,7 +201,7 @@ unit_ventilator.rb rb resource - F8DFB76C + 90A97E01 vav_box.rb @@ -219,19 +213,19 @@ vrf_condenser.rb rb resource - 690A32F4 + 57F80A09 vrf_fan_coil_unit.rb rb resource - 6138AED0 + 41027204 wshp.rb rb resource - 3CB2975C + D1E97460 zone.rb From 66dd968dac2e207fa330f5c56e88f37955150cfa Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 11:57:32 -0600 Subject: [PATCH 31/41] mv *_test.rb files --- .../tests/{import_gbxml_test.rb => gbxml_import_test.rb} | 0 ...dvanced_import_gbxml_test.rb => gbxml_import_advanced_test.rb} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename measures/gbxml_import/tests/{import_gbxml_test.rb => gbxml_import_test.rb} (100%) rename measures/gbxml_import_advanced/tests/{advanced_import_gbxml_test.rb => gbxml_import_advanced_test.rb} (100%) diff --git a/measures/gbxml_import/tests/import_gbxml_test.rb b/measures/gbxml_import/tests/gbxml_import_test.rb similarity index 100% rename from measures/gbxml_import/tests/import_gbxml_test.rb rename to measures/gbxml_import/tests/gbxml_import_test.rb diff --git a/measures/gbxml_import_advanced/tests/advanced_import_gbxml_test.rb b/measures/gbxml_import_advanced/tests/gbxml_import_advanced_test.rb similarity index 100% rename from measures/gbxml_import_advanced/tests/advanced_import_gbxml_test.rb rename to measures/gbxml_import_advanced/tests/gbxml_import_advanced_test.rb From 2bc22d4e90313d8872f425ac66bdda960a885b01 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 11:59:00 -0600 Subject: [PATCH 32/41] update *_test.rb class names --- measures/gbxml_import/tests/gbxml_import_test.rb | 4 ++-- .../tests/gbxml_import_advanced_test.rb | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/measures/gbxml_import/tests/gbxml_import_test.rb b/measures/gbxml_import/tests/gbxml_import_test.rb index bf8d230..a43dc61 100644 --- a/measures/gbxml_import/tests/gbxml_import_test.rb +++ b/measures/gbxml_import/tests/gbxml_import_test.rb @@ -4,7 +4,7 @@ require_relative '../measure.rb' require 'fileutils' -class ImportGbxml_Test < MiniTest::Unit::TestCase +class GbxmlImport_Test < MiniTest::Unit::TestCase # def setup # end @@ -15,7 +15,7 @@ class ImportGbxml_Test < MiniTest::Unit::TestCase def test_import # create a test model model = OpenStudio::Model::Model.new - + # create an instance of the measure measure = ImportGbxml.new diff --git a/measures/gbxml_import_advanced/tests/gbxml_import_advanced_test.rb b/measures/gbxml_import_advanced/tests/gbxml_import_advanced_test.rb index 366fcda..dd2c74e 100644 --- a/measures/gbxml_import_advanced/tests/gbxml_import_advanced_test.rb +++ b/measures/gbxml_import_advanced/tests/gbxml_import_advanced_test.rb @@ -8,7 +8,7 @@ require_relative '../resources/os_lib_adv_import' require 'fileutils' -class AdvancedImportGbxml_Test < Minitest::Test +class GbxmlImportAdvanced_Test < Minitest::Test def test_generic_gbxml @@ -345,7 +345,7 @@ def test_annual_schedule # If the argument has a default that you want to use, you don't need it in the hash args_hash = {} args_hash['gbxml_file_name'] = path.to_s - + # populate argument with specified hash value if specified arguments.each do |arg| temp_arg_var = arg.clone @@ -375,7 +375,7 @@ def test_annual_schedule puts sch.defaultDaySchedule puts sch.summerDesignDaySchedule puts sch.winterDesignDaySchedule - sch.scheduleRules.each { |rule| puts rule} + sch.scheduleRules.each { |rule| puts rule} end def data_fields_equal?(obj1, obj2) From dcaff96353497852b47a4fd8585bcd0867c1ed5c Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 12:02:46 -0600 Subject: [PATCH 33/41] mv gbxml_hvac_import.rb => gbxml_import_hvac.rb --- .../{gbxml_hvac_import.rb => gbxml_import_hvac.rb} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename measures/gbxml_import_hvac/{gbxml_hvac_import.rb => gbxml_import_hvac.rb} (100%) diff --git a/measures/gbxml_import_hvac/gbxml_hvac_import.rb b/measures/gbxml_import_hvac/gbxml_import_hvac.rb similarity index 100% rename from measures/gbxml_import_hvac/gbxml_hvac_import.rb rename to measures/gbxml_import_hvac/gbxml_import_hvac.rb From 59ec89b42d402702cd46403c41fb4a2fcec6c9d7 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 12:04:55 -0600 Subject: [PATCH 34/41] update require_relative --- measures/gbxml_import_hvac/measure.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/measures/gbxml_import_hvac/measure.rb b/measures/gbxml_import_hvac/measure.rb index 66405fb..d410e3d 100644 --- a/measures/gbxml_import_hvac/measure.rb +++ b/measures/gbxml_import_hvac/measure.rb @@ -1,4 +1,4 @@ -require_relative 'gbxml_hvac_import' +require_relative 'gbxml_import_hvac' # start the measure class GbxmlImportHvac < OpenStudio::Measure::ModelMeasure From 25c0cd89aa8be45aa3d9a1831c809b92b3dca4af Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 12:06:11 -0600 Subject: [PATCH 35/41] update RegressionTesting.osw --- workflows/RegressionTesting.osw | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workflows/RegressionTesting.osw b/workflows/RegressionTesting.osw index 9412e0e..b7124c2 100644 --- a/workflows/RegressionTesting.osw +++ b/workflows/RegressionTesting.osw @@ -19,14 +19,14 @@ } }, { - "measure_dir_name": "import_gbxml", + "measure_dir_name": "gbxml_import", "name": "ImportGbxml", "arguments": { "gbxml_file_name": "GBXML_INPUT.xml" } }, { - "measure_dir_name": "advanced_import_gbxml", + "measure_dir_name": "gbxml_import_advanced", "name": "Advanced Import Gbxml", "arguments": { "__SKIP__": false, @@ -34,7 +34,7 @@ } }, { - "measure_dir_name": "gbxml_hvac_import", + "measure_dir_name": "gbxml_import_hvac", "name": "GBXML HVAC Import", "arguments": { "__SKIP__": false, From 17c7a26e37871a35cc87767285ddf9988276ba3a Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 12:53:04 -0600 Subject: [PATCH 36/41] fix gbxml_import_advanced xml --- measures/gbxml_import_advanced/measure.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/measures/gbxml_import_advanced/measure.xml b/measures/gbxml_import_advanced/measure.xml index d74443e..95d95b6 100644 --- a/measures/gbxml_import_advanced/measure.xml +++ b/measures/gbxml_import_advanced/measure.xml @@ -4,10 +4,10 @@ Failed to infer measure name from 'C:/Users/MSTEEN/Documents/GitHub/NREL/gbxml-to-openstudio/measures/gbxml_import_advanced/measure.rb' advanced_import_gbxml f82940f7-8046-4fd1-9dbb-df6411e86de2 - 34245d90-7622-429e-880a-c632ecf98cdd - 2024-06-28T17:39:01Z + 1be8e48b-d169-4adf-b693-6d76587d3851 + 2024-06-28T18:28:55Z D8922A73 - AdvancedImportGbxml + GbxmlImportAdvanced Advanced Import Gbxml This measure will bring in additional gbXML data beyond what comes in with the basic OpenStudio gbXML import. This measure expects GbXMLReverseTranslator to already have been run on the model. This measure parses the XML and translates additional gbXML objects to OSM. @@ -138,12 +138,6 @@ test 33699363 - - advanced_import_gbxml_test.rb - rb - test - BC66C7B5 - gbXMLStandard Test Model 2016.xml xml @@ -156,5 +150,11 @@ test 7AB4E205 + + gbxml_import_advanced_test.rb + rb + test + B7EE8DF4 + From 1abe06ff6e46e7c19f39adce221f15b54e50a99a Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 13:13:06 -0600 Subject: [PATCH 37/41] mv AIP files --- .../OpenStudio CLI For Revit 2020.aip | 0 .../OpenStudio CLI For Revit 2021.aip | 0 .../OpenStudio CLI For Revit 2022.aip | 0 .../OpenStudio CLI For Revit 2023.aip | 0 .../OpenStudio CLI For Revit 2024.aip | 0 .../OpenStudio CLI For Revit 2025.aip | 0 .../OpenStudio CLI For Revit 2026.aip | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename OpenStudio CLI For Revit 2020.aip => aip/OpenStudio CLI For Revit 2020.aip (100%) rename OpenStudio CLI For Revit 2021.aip => aip/OpenStudio CLI For Revit 2021.aip (100%) rename OpenStudio CLI For Revit 2022.aip => aip/OpenStudio CLI For Revit 2022.aip (100%) rename OpenStudio CLI For Revit 2023.aip => aip/OpenStudio CLI For Revit 2023.aip (100%) rename OpenStudio CLI For Revit 2024.aip => aip/OpenStudio CLI For Revit 2024.aip (100%) rename OpenStudio CLI For Revit 2025.aip => aip/OpenStudio CLI For Revit 2025.aip (100%) rename OpenStudio CLI For Revit 2026.aip => aip/OpenStudio CLI For Revit 2026.aip (100%) diff --git a/OpenStudio CLI For Revit 2020.aip b/aip/OpenStudio CLI For Revit 2020.aip similarity index 100% rename from OpenStudio CLI For Revit 2020.aip rename to aip/OpenStudio CLI For Revit 2020.aip diff --git a/OpenStudio CLI For Revit 2021.aip b/aip/OpenStudio CLI For Revit 2021.aip similarity index 100% rename from OpenStudio CLI For Revit 2021.aip rename to aip/OpenStudio CLI For Revit 2021.aip diff --git a/OpenStudio CLI For Revit 2022.aip b/aip/OpenStudio CLI For Revit 2022.aip similarity index 100% rename from OpenStudio CLI For Revit 2022.aip rename to aip/OpenStudio CLI For Revit 2022.aip diff --git a/OpenStudio CLI For Revit 2023.aip b/aip/OpenStudio CLI For Revit 2023.aip similarity index 100% rename from OpenStudio CLI For Revit 2023.aip rename to aip/OpenStudio CLI For Revit 2023.aip diff --git a/OpenStudio CLI For Revit 2024.aip b/aip/OpenStudio CLI For Revit 2024.aip similarity index 100% rename from OpenStudio CLI For Revit 2024.aip rename to aip/OpenStudio CLI For Revit 2024.aip diff --git a/OpenStudio CLI For Revit 2025.aip b/aip/OpenStudio CLI For Revit 2025.aip similarity index 100% rename from OpenStudio CLI For Revit 2025.aip rename to aip/OpenStudio CLI For Revit 2025.aip diff --git a/OpenStudio CLI For Revit 2026.aip b/aip/OpenStudio CLI For Revit 2026.aip similarity index 100% rename from OpenStudio CLI For Revit 2026.aip rename to aip/OpenStudio CLI For Revit 2026.aip From d517206ce9732da87da394cee101a276ed85e4a4 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 14:50:36 -0600 Subject: [PATCH 38/41] mv os.ico to aip/ --- os.ico => aip/os.ico | Bin 1 file changed, 0 insertions(+), 0 deletions(-) rename os.ico => aip/os.ico (100%) diff --git a/os.ico b/aip/os.ico similarity index 100% rename from os.ico rename to aip/os.ico From 41eb94505dff751e430a6f11705af9c06e16cfe1 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 16:15:13 -0600 Subject: [PATCH 39/41] v1.2.0 AIP files --- aip/OpenStudio CLI For Revit 2022.aip | 1503 ++++++++++--------------- aip/OpenStudio CLI For Revit 2023.aip | 1499 ++++++++++-------------- aip/OpenStudio CLI For Revit 2024.aip | 1499 ++++++++++-------------- aip/OpenStudio CLI For Revit 2025.aip | 1499 ++++++++++-------------- aip/OpenStudio CLI For Revit 2026.aip | 1503 ++++++++++--------------- 5 files changed, 2824 insertions(+), 4679 deletions(-) diff --git a/aip/OpenStudio CLI For Revit 2022.aip b/aip/OpenStudio CLI For Revit 2022.aip index f6a4ffd..e2cbf17 100644 --- a/aip/OpenStudio CLI For Revit 2022.aip +++ b/aip/OpenStudio CLI For Revit 2022.aip @@ -1,5 +1,5 @@ - + @@ -9,10 +9,10 @@ - + - + @@ -29,933 +29,594 @@ - - - - - - - - - - - + + + + - - - - + - - - - - - - - + + - - - - - - - - - - + - - - - - - - - - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1027,6 +688,7 @@ + @@ -1036,7 +698,6 @@ - @@ -1094,62 +755,30 @@ + - - - - - - - - - - - - - + + + + + + + + - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/aip/OpenStudio CLI For Revit 2023.aip b/aip/OpenStudio CLI For Revit 2023.aip index 754fd16..600b69b 100644 --- a/aip/OpenStudio CLI For Revit 2023.aip +++ b/aip/OpenStudio CLI For Revit 2023.aip @@ -9,10 +9,10 @@ - + - + @@ -29,933 +29,594 @@ - - - - - - - - - - - + + + + - - - - + - - - - - - - - + + - - - - - - - - - - + - - - - - - - - - - - - - + + + + + - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1027,6 +688,7 @@ + @@ -1036,7 +698,6 @@ - @@ -1094,62 +755,30 @@ + - - - - - - - - - - - - - + + + + + + + + - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/aip/OpenStudio CLI For Revit 2024.aip b/aip/OpenStudio CLI For Revit 2024.aip index a3d68d6..27e5221 100644 --- a/aip/OpenStudio CLI For Revit 2024.aip +++ b/aip/OpenStudio CLI For Revit 2024.aip @@ -9,10 +9,10 @@ - + - + @@ -29,933 +29,594 @@ - - - - - - - - - - - + + + + - - - - + - - - - - - - - + + - - - - - - - - - - + - - - - - - - - - - - - - + + + + + - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1027,10 +688,10 @@ + - @@ -1094,62 +755,30 @@ + - - - - - - - - - - - - - + + + + + + + + - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/aip/OpenStudio CLI For Revit 2025.aip b/aip/OpenStudio CLI For Revit 2025.aip index 4e2ad77..644871c 100644 --- a/aip/OpenStudio CLI For Revit 2025.aip +++ b/aip/OpenStudio CLI For Revit 2025.aip @@ -9,10 +9,10 @@ - + - + @@ -29,933 +29,594 @@ - - - - - - - - - - - + + + + - - - - + - - - - - - - - + + - - - - - - - - - - + - - - - - - - - - - - - - + + + + + - - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1027,10 +688,10 @@ + - @@ -1094,62 +755,30 @@ + - - - - - - - - - - - - - + + + + + + + + - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/aip/OpenStudio CLI For Revit 2026.aip b/aip/OpenStudio CLI For Revit 2026.aip index 583b28a..2ab5760 100644 --- a/aip/OpenStudio CLI For Revit 2026.aip +++ b/aip/OpenStudio CLI For Revit 2026.aip @@ -1,5 +1,5 @@ - + @@ -9,10 +9,10 @@ - + - + @@ -29,933 +29,594 @@ - - - - - - - - - - - + + + + - - - - + - - - - - - - - + + - - - - - - - - - - + - - - - - - - - - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1027,6 +688,7 @@ + @@ -1036,7 +698,6 @@ - @@ -1094,62 +755,30 @@ + - - - - - - - - - - - - - + + + + + + + + - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - From 3e7452a5e10a13549fbe90bc99649c853c24bc4c Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 16:27:22 -0600 Subject: [PATCH 40/41] update CHANGELOG --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7b40d7..a8c9273 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [1.2.0] - 2024-06-28 +- OpenStudio v3.8.0 +- EnergyPlus v24.1.0 + +## [1.1.9] - 2024-05-14 +- OpenStudio v3.6.0 +- EnergyPlus v23.1.0 +- Measure fixes + - Jira-REVIT-218565 + ## [1.1.8] - 2023-11-13 - OpenStudio v3.6.0 - EnergyPlus v23.1.0 From f10aa7a4ba84b20550921c6b378ad4702c8af6d9 Mon Sep 17 00:00:00 2001 From: Matt Steen Date: Fri, 28 Jun 2024 16:27:50 -0600 Subject: [PATCH 41/41] update Rakefile --- Rakefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Rakefile b/Rakefile index 03bed8c..5d4b55c 100644 --- a/Rakefile +++ b/Rakefile @@ -11,18 +11,17 @@ if ENV['BUNDLE_GEMFILE'] end # constants +OS_DIR = 'C:\openstudio-3.8.0\bin' +EP_DIR = 'C:\EnergyPlusV24-1-0-revit' ROOT_DIR = File.join(File.dirname(__FILE__)) PRESIGN_DIR = 'build' -OS_DIR = 'C:\openstudio-3.6.0\bin' -EP_DIR = 'C:\EnergyPlusV23-1-0-revit' -PYTHON = false - POSTSIGN_DIR = "#{PRESIGN_DIR}.signed/#{PRESIGN_DIR}" EP_FILES_UNSIGNED = [ 'Energy+.idd', 'Energy+.schema.epJSON', 'energyplusapi.lib' ] +PYTHON = false OSW_FILES = [ 'Annual Building Energy Simulation.osw', 'HVAC Systems Loads and Sizing.osw'